Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
6724 Widoki

I want to update draft invoices unit price by script but in odoo 13 it always shows error-

Cannot create unbalanced journal entry. Ids: [XXXXX]
which method I need to call to auto update account move line debit and credit as per new unit price in invoice line. I tried with calling onchange and computed methods in script but it seems not working.

Please advice!

Awatar
Odrzuć

Good evening dear. And if you want to calculate the debit, credit, and the rest of the line of imported products from an invoice; to get amount_untaxed. And you can get the entire invoice total

Good Morning. Niyas.
I was seeing this post, with which I solved the lines. I have tried using the events from account.move to update the prices. In other words, calculate the debit, credi, subtotal, total and the total of all lines (untaxed amount). I am importing invoices from an xml file, when trying to calculate the rest of the fields of the lines it does not allow updating them because they are calculated fields and the methods of the classes do not execute any changes

Najlepsza odpowiedź

Hi,

Add this code and see,

self.with_context(check_move_validity=False)._recompute_dynamic_lines\
(recompute_all_taxes=True, recompute_tax_base_amount=True)

Thanks

Awatar
Odrzuć
Autor

Thanks Niyas, Its working !

Thank you very much @Niyas Raphy.

I was searching solution for tax re-computation when we add/remove taxes from backend and it's works fine using above lines.

Najlepsza odpowiedź

Thanks Niyas, Great contribution!

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
3
sty 20
6121
1
lip 25
263
2
lut 23
3911
0
sie 22
68
1
cze 22
2399