main #7

Merged
admin merged 620 commits from main into dev 2026-03-29 13:03:25 +00:00
Showing only changes of commit b2fb1e9c4c - Show all commits

View File

@@ -87,8 +87,8 @@ class InvoiceLine(metaclass=PoolMeta):
if move_line.second_currency: if move_line.second_currency:
move_line.amount_second_currency = amount move_line.amount_second_currency = amount
else: else:
move_line.debit = Decimal(0) move_line.debit = amount_converted
move_line.credit = amount_converted move_line.credit = Decimal(0)
move_line.account = self.product.account_stock_out_used move_line.account = self.product.account_stock_out_used
if move_line.second_currency: if move_line.second_currency:
move_line.amount_second_currency = -amount move_line.amount_second_currency = -amount