-
-
Notifications
You must be signed in to change notification settings - Fork 418
[18.0][MIG] crm_phonecall_planner: Migration to 18.0 #641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 18.0
Are you sure you want to change the base?
[18.0][MIG] crm_phonecall_planner: Migration to 18.0 #641
Conversation
* [ADD][crm_phonecall_planner] Phonecall autoscheduler A simple to use wizard that generates phonecall plannings under given criteria. * fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! fixup! fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! fixup! fixup! fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler * fixup! fixup! fixup! fixup! fixup! fixup! [ADD][crm_phonecall_planner] Phonecall autoscheduler Reword weird paragraph
- Include context keys for avoiding mail operations overhead.
14bf4a3
to
008c92a
Compare
/ocabot migration crm_phonecall_planner |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested and working fine, just a few minor changes.
@@ -0,0 +1,54 @@ | |||
Now, to actually generate the phone call planning: | |||
|
|||
1. Go to *Sales \> Phone Calls \> Planner*. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the readme
1. Go to *Sales \> Phone Calls \> Planner*. | |
1. Go to *CRM \> Phone Calls \> Planner*. |
"attendance_ids": [ | ||
( | ||
0, | ||
0, | ||
{ | ||
"name": "Monday morning", | ||
"dayofweek": "0", | ||
"hour_from": 9, | ||
"hour_to": 12, | ||
}, | ||
), | ||
( | ||
0, | ||
0, | ||
{ | ||
"name": "Monday evening", | ||
"dayofweek": "0", | ||
"hour_from": 15, | ||
"hour_to": 20, | ||
}, | ||
), | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you use the Command class? It’s more readable.
"attendance_ids": [ | |
( | |
0, | |
0, | |
{ | |
"name": "Monday morning", | |
"dayofweek": "0", | |
"hour_from": 9, | |
"hour_to": 12, | |
}, | |
), | |
( | |
0, | |
0, | |
{ | |
"name": "Monday evening", | |
"dayofweek": "0", | |
"hour_from": 15, | |
"hour_to": 20, | |
}, | |
), | |
], | |
"attendance_ids": [ | |
Command.create( | |
{ | |
"name": "Monday morning", | |
"dayofweek": "0", | |
"hour_from": 9, | |
"hour_to": 12, | |
}, | |
), | |
Command.create( | |
{ | |
"name": "Monday evening", | |
"dayofweek": "0", | |
"hour_from": 15, | |
"hour_to": 20, | |
}, | |
), | |
], |
_inherit = [ | ||
"utm.mixin", | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_inherit = [ | |
"utm.mixin", | |
] | |
_inherit = "utm.mixin" |
@Tecnativa TT54150
@carlos-lopez-tecnativa @pilarvargas-tecnativa can you check pls?