Skip to Content
Menu
This question has been flagged
2577 Views

Hi everyone,

I had inherit the function compute_amount in the account_invoice depending to another field in the partner profil everything is right but when I validate the invoice the residual field doesn't take into consideration the new change.

How to solve it any help please???

this is my new finction def compute_amount

@api.one

@api.depends('invoice_line.price_subtotal', 'tax_line.amount','timbre','partner_id')

def _compute_amount(self):

if self.type == 'out_invoice':

if self.partner_id.rs == True:

print'rs',self.partner_id.rs

self.amount_untaxed = sum(line.price_subtotal for line in self.invoice_line)

self.amount_tax = sum(line.amount for line in self.tax_line)

self.amount_rs = (self.amount_untaxed + self.amount_tax) * 0.01

self.amount_total = self.amount_untaxed + self.amount_tax + self.amount_rs + self.timbre

else :

self.amount_untaxed = sum(line.price_subtotal for line in self.invoice_line)

self.amount_tax = sum(line.amount for line in self.tax_line)

self.amount_total = self.amount_untaxed + self.amount_tax + self.timbre

else :

self.amount_untaxed = sum(line.price_subtotal for line in self.invoice_line)

self.amount_tax = sum(line.amount for line in self.tax_line)

self.amount_total = self.amount_untaxed + self.amount_tax

Avatar
Discard