-
Notifications
You must be signed in to change notification settings - Fork 0
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
[18.0][ADD] sale_automatic_workflow_stock_job #5
base: 18.0
Are you sure you want to change the base?
Conversation
@api.depends("delivery_status") | ||
def _compute_all_qty_delivered(self): | ||
for order in self: | ||
order.all_qty_delivered = order.delivery_status == "full" |
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.
this should be in sale_automatic_workflow_stock
instead of this module
@api.onchange("workflow_process_id") | ||
def _onchange_workflow_process_id(self): | ||
if self.workflow_process_id.picking_policy: | ||
self.picking_policy = self.workflow_process_id.picking_policy |
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.
same here, should be in sale_automatic_workflow_stock instead of this module
) | ||
|
||
@api.model | ||
def _handle_pickings(self, sale_workflow): |
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.
has been handled in sale_automatic_workflow_stock
a5ded86
to
4ee17a9
Compare
4ee17a9
to
43f4626
Compare
f079069
to
a5197c9
Compare
a5197c9
to
bc78cc4
Compare
stock
fromsale_automatic_workflow
. I add new modulesale_automatic_workflow_stock_job
which includes the feature related to job of stock.