Skip to Content
Menu
This question has been flagged
1 Reply
3474 Views

I need To append a custom quantity to the demand in the reciept while confiriming the purchase order

Avatar
Discard
Best Answer

class purchase_custom(models.Model):

    _inherit = 'purhcase.order'

    def button_confirm(self):

        res = super(purchase_custom, self).button_confirm()

        // write your custom code here  

       return res 

Avatar
Discard
Related Posts Replies Views Activity
3
Dec 24
2365
1
Jul 24
707
1
Jun 24
775
2
Jun 24
898
1
Mar 24
538