Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3451 Представления

When the user presses "confirm sale", stock pickings and moves are automatically created, I would like to change them according to some criteria I have.

Currently, I am overriding the action_button_confirm, calling the super method, and then I delete the auto-generated stock pickings and moves, and recreate my own according to some special rules. I believe there must be a better way to do it. Here is my code:

    def action_button_confirm(self, cr, uid, ids, context=None):

        result = super(jamalon_delivery_distribution, self).action_button_confirm(cr, uid, ids, context=context)

        self._distribute(cr,uid,ids,context=context) # Here I delete the auto-generated moves and re-create them


How can I get my custom stock pickings and moves generated, without having to delete those automatically created?


 

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
февр. 16
5463
1
мар. 17
6276
4
сент. 16
4196
2
авг. 22
3544
1
сент. 16
6779