Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
3089 Prikazi

Hi,

I recently developed a module to change the behavior of _compute_amount method of account.invoice class and the view of account.invoice.form. Everything works fine (the model and the view). But I have a problem now, because when I confirm the invoice the amount due is not the same as the total.

Here's what I changed in the _compute_amount method:

self.amount_untaxed = sum(line.price_subtotal for line in self.invoice_line_ids)
self.amount_fodec = self.amount_untaxed * self.fodec_id.amount / 100
amount_untaxed_with_fodec = self.amount_untaxed + self.amount_fodec
self.amount_tva = amount_untaxed_with_fodec * self.tva_id.amount / 100
self.amount_tax = self.amount_fodec + self.amount_tva + self.timbre_fiscal
self.amount_total = self.amount_untaxed + self.amount_tax

 As you can see I added more taxes. _compute_amount is fine but what can I do to correct the amount due, because it just uses the default taxing mechanism (not the one I developed in my new method)?

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
dec. 24
5934
3
avg. 24
6818
4
jul. 24
41084
5
apr. 23
98715
3
nov. 22
4232