[REM] crm, crm_helpdesk, crm_claim, crm_fundraising: Removed Unwanted spaces

bzr revid: ron@tinyerp.com-20111103052803-eamc7z5xb8kf5usj
This commit is contained in:
ron@tinyerp.com 2011-11-03 10:58:03 +05:30
parent 8b9050932d
commit 7b9390159a
5 changed files with 2 additions and 13 deletions

View File

@ -8,7 +8,6 @@
request_file = open(addons.get_module_resource('crm','test', 'customer_request.eml'),'rb')
request_message = request_file.read()
self.message_process(cr, uid, 'crm.lead', request_message)
-
After getting the mail, I check details of new lead of that customer.
-
@ -55,5 +54,3 @@
data = self.browse(cr, uid, partner_id, context=context)[0]
assert data.user_id.id == ref("base.user_root"), "User not assign properly"
assert data.name == "Bad time", "User not assign properly"

View File

@ -5,7 +5,6 @@
context.update({'active_model': 'res.partner', 'active_ids': [ref("base.res_partner_9")]})
res_id = self.create(cr, uid, {'name': "enquête pour l'achat de services"}, context=context)
self.make_opportunity(cr, uid, [res_id], context=context)
-
I make another opportunity from phonecall for same customer.
-
@ -38,8 +37,8 @@
-
I schedule Meeting on this phonecall.
-
!python {model: crm.phonecall}: |
self.action_make_meeting(cr, uid, [ref("crm.crm_case_phone06")])
!python {model: crm.phonecall}: |
self.action_make_meeting(cr, uid, [ref("crm.crm_case_phone06")])
-
I setting Phone call to Held (Done).
-
@ -50,4 +49,3 @@
-
!assert {model: crm.phonecall, id: crm.crm_case_phone06, string: Phone call Helded}:
- state == "done"

View File

@ -8,7 +8,6 @@
request_file = open(addons.get_module_resource('crm_claim','test', 'customer_claim.eml'),'rb')
request_message = request_file.read()
self.message_process(cr, uid, 'crm.claim', request_message)
-
After getting the mail, I check details of new claim of that customer.
-
@ -18,7 +17,6 @@
assert claim_ids and len(claim_ids), "Claim is not created after getting request"
claim = self.browse(cr, uid, claim_ids[0], context=context)
assert claim.name == tools.ustr("demande derèglement de votre produit."), "Subject does not match"
-
I open customer claim.
-

View File

@ -8,7 +8,6 @@
request_file = open(addons.get_module_resource('crm_fundraising','test', 'customer_fundraising.eml'),'rb')
request_message = request_file.read()
self.message_process(cr, uid, 'crm.fundraising', request_message)
-
After getting the mail, I check details of new fundraising of that customer.
-
@ -18,5 +17,3 @@
assert fund_ids and len(fund_ids), "Fund is not created after getting request"
fund = self.browse(cr, uid, fund_ids[0], context=context)
assert fund.name == tools.ustr("Demande de controbute dans votre fonds."), "Subject does not match"

View File

@ -8,7 +8,6 @@
request_file = open(addons.get_module_resource('crm_helpdesk','test', 'customer_question.eml'),'rb')
request_message = request_file.read()
self.message_process(cr, uid, 'crm.helpdesk', request_message)
-
After getting the mail, I check details of new question of that customer.
-