Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
3098 Näkymät

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
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
1
jouluk. 24
5951
3
elok. 24
6825
4
heinäk. 24
41094
5
huhtik. 23
98760
3
marrask. 22
4240