콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3133 화면

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)?

아바타
취소
관련 게시물 답글 화면 활동
1
12월 24
6005
3
8월 24
6867
4
7월 24
41157
5
4월 23
98841
3
11월 22
4298