Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
3757 Vizualizări

I try to extend the method product_id_change from the model account.invoice.line :
 

class account_invoice_line(models.Model):

_inherit = 'account.invoice.line'

      @api.multi

      def product_id_change(self, product, uom_id, qty=0, name='', type_x='out_invoice',

                                          partner_id=False, fposition_id=False, price_unit=False, currency_id=False,

                                          company_id=None):

            res = super(account_invoice_line, self).product_id_change(self,product, uom_id, qty, name, type_x, partner_id,                                                                                                         fposition_id, price_unit, currency_id, company_id)

            return res.


But i'have this error when i call product_id_change with super : TypeError: product_id_change() takes at most 11 arguments (12 given) .


Have you an idea ?

Imagine profil
Abandonează
Cel mai bun răspuns

Try this:

res = super(account_invoice_line, self).product_id_change(product, uom_id, qty, name, type_x,   partner_id, fposition_id, price_unit, currency_id, company_id)

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
4
sept. 15
5675
2
nov. 18
14690
2
iul. 16
4281
3
feb. 16
4722
2
oct. 15
10408