Server IP : 127.0.0.2 / Your IP : 3.133.83.123 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/crm/tests/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from .common import TestCrmCases from odoo import fields from datetime import date class TestCrmActivity(TestCrmCases): def setUp(self): super(TestCrmActivity, self).setUp() # Set up activities Activity = self.env['crm.activity'] self.activity3 = Activity.create({ 'name': 'Celebrate the sale', 'days': 3, 'description': 'ACT 3 : Beers for everyone because I am a good salesman !', 'internal': True, 'res_model': 'crm.lead', }) self.activity2 = Activity.create({ 'name': 'Call for Demo', 'days': 6, 'description': 'ACT 2 : I want to show you my ERP !', 'internal': True, 'res_model': 'crm.lead', 'recommended_activity_ids': [(6, 0, [self.activity3.id])], }) self.activity1 = Activity.create({ 'name': 'Initial Contact', 'days': 5, 'description': 'ACT 1 : Presentation, barbecue, ... ', 'internal': True, 'res_model': 'crm.lead', 'recommended_activity_ids': [(6, 0, [self.activity2.id])], }) # I create an opportunity, as salesman self.partner_client = self.env.ref("base.res_partner_1") Lead = self.env['crm.lead'].sudo(self.crm_salesman.id) self.lead = Lead.create({ 'type': 'opportunity', 'name': 'Test Opportunity Activity Log', 'partner_id': self.partner_client.id, 'team_id': self.env.ref("sales_team.team_sales_department").id, 'user_id': self.crm_salesman.id, }) def test_crm_activity_recipients(self): """ This test case check : - no internal subtype followed by client - activity subtype are not default ones - only activity followers are recipients when this kind of activity is logged """ # Activity I'm going to log activity = self.activity2 # Add explicitly a the client as follower self.lead.message_subscribe([self.partner_client.id]) # Check the client is not follower of any internal subtype is_internal_subtype_for_client = self.lead.message_follower_ids.filtered(lambda fol: fol.partner_id.id == self.partner_client.id).mapped('subtype_ids.internal') self.assertFalse(any(is_internal_subtype_for_client), 'Partner client is following an internal subtype') # Add sale manager as follower of default subtypes self.lead.message_subscribe([self.crm_salemanager.partner_id.id]) # Make the sale manager follower of the activity subtype manager_follower = self.env['mail.followers'].sudo().search([('res_model', '=', 'crm.lead'), ('res_id', '=', self.lead.id), ('partner_id', '=', self.crm_salemanager.partner_id.id)]) manager_follower.write({ 'subtype_ids': [(4, activity.subtype_id.id)] }) # Instanciate wizard, trigger onchange lead and set the next activity ActivityLogWizard = self.env['crm.activity.log'].sudo(self.crm_salesman.id) wizard = ActivityLogWizard.create({ 'note': 'Content of the activity to log', 'lead_id': self.lead.id, }) wizard.onchange_lead_id() wizard.write({ 'next_activity_id': activity.id, }) wizard.action_log() # Check message recipients activity_message = self.lead.message_ids[0] self.assertEqual(activity_message.needaction_partner_ids, self.crm_salemanager.partner_id, 'Only the crm manager should be notified by the activity') self.assertEqual(self.lead.next_activity_id.id, False, 'When logging activity, the next activity planned is erased') def test_crm_activity_next_action(self): """ This test case set the next activity on a lead, log another, and schedule a third. """ # Add the next activity (like we set it from a form view) self.lead.write({ 'next_activity_id': self.activity1.id }) self.lead._onchange_next_activity_id() # Check the next activity is correct self.assertEqual(self.lead.title_action, self.activity1.description, 'Activity title should be the same on the lead and on the chosen activity') # Instanciate the wizard to schedule the next activity wizard = self.env['crm.activity.log'].sudo(self.crm_salesman.id).create({ 'note': 'Content of the activity to log', 'lead_id': self.lead.id, }) wizard.onchange_lead_id() wizard.write({ 'next_activity_id': self.activity2.id, }) wizard.action_log() # Check the next activity on the lead has been removed self.assertFalse(self.lead.next_activity_id.id, 'No next activity should be set on lead, since we jsut log another activity') # Instanciate the wizard to schedule the next activity self.env['crm.activity.log'].sudo(self.crm_salesman.id).create({ 'next_activity_id': self.activity3.id, 'note': 'Content of the activity to log', 'lead_id': self.lead.id, }) wizard.onchange_lead_id() wizard.write({ 'next_activity_id': self.activity3.id, }) wizard.onchange_next_activity_id() wizard.action_schedule() # Check the activity is well scheldule on lead delta_days = (fields.Date.from_string(self.lead.date_action) - date.today()).days self.assertEqual(self.activity3.days, delta_days, 'The action date should be in the number of days set up on the activity 3') self.assertEqual(self.lead.title_action, self.activity3.description, 'Activity title should be the same on the lead and on the activity 3')