[REM]: crm: 1)Removed test_crm_phonecall_case2.yml

2) Updated __opeperp__.py

bzr revid: ron@tinyerp.com-20111014090623-jf5atbxze6e9w8iv
This commit is contained in:
ron@tinyerp.com 2011-10-14 14:36:23 +05:30
parent 86e0aa5cc2
commit daeeef945d
2 changed files with 0 additions and 27 deletions

View File

@ -129,7 +129,6 @@ Creates a dashboard for CRM that includes:
'test/test_crm_recurrent_meeting.yml',
'test/test_crm_stage_changes.yml',
'test/test_crm_recurrent_meeting_case2.yml',
'test/test_crm_phonecall_case2.yml',
'test/test_crm_segmentation.yml',
],
'installable': True,

View File

@ -1,26 +0,0 @@
- |
I start by creating a new phonecall.
-
!record {model: crm.phonecall, id: crm_phonecall_dummycall}:
date: !eval time.strftime('%Y-%m-%d 08:00:00')
name: Dummy call
duration: 0.0
section_id: crm.section_sales_department
partner_id: base.res_partner_agrolait
state: open
-
I change Contact Detail of the Partner.
-
!python {model: crm.phonecall}: |
self.onchange_partner_address_id(cr, uid,[ref("crm_phonecall_dummycall")], ref("base.res_partner_address_8invoice"))
-
I setting Phone call to Held (Done).
-
!python {model: crm.phonecall}: |
self.case_close(cr, uid, [ref("crm_phonecall_dummycall")])
-
I check that the hone call is in 'Held' state.
-
!assert {model: crm.phonecall, id: crm_phonecall_dummycall, string: Phone call Helded}:
- state == "done"