Skip to Content
Menu
This question has been flagged
1 Reply
4127 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
2
May 25
1588
3
Dec 24
5158
1
Jul 24
2335
1
Jun 24
1659
2
Jun 24
2359