This question has been flagged
1 Reply
8111 Views

Once Sale Order Confirmed Button Clicked. action_wait, action_confirm method are called.

action_wait mehtod is called from the Sale Order workflow signal order_confirm

action_confirm method is called from the Stock Order workflow signal button_confirm

In My doubt is in Sale Order confirm button clicked. How the Stock workflow action_confirm method called? where the code written to calling the Stock action_confirm?

Thanks

Avatar
Discard
Best Answer

Hello,

If you check the "def _create_pickings_and_procurements(self, cr, uid, order, order_lines, picking_id=False, context=None):" method in the sale module. You will find this line:

wf_service.trg_validate(uid, 'stock.picking', picking_id, 'button_confirm', cr)

I think this is what you are looking for?

kind regards

Avatar
Discard
Author

yes, I have another doubt once sale order confirm button clicked how action_ship_create method is called. In sale order workflow draft to router [sale confirm] state signal called to action_wait method only. where its called action_ship_create method in workflow?

If you navigate to the workflows in the interface. You will find the sale.order.basic workflow. The method that you are searching for is visible in 'ship'