fix: Auto advance allocation against partial invoices
This commit is contained in:
parent
62ae329be3
commit
181df2fe63
@ -804,15 +804,12 @@ class AccountsController(TransactionBase):
|
|||||||
self.set("advances", [])
|
self.set("advances", [])
|
||||||
advance_allocated = 0
|
advance_allocated = 0
|
||||||
for d in res:
|
for d in res:
|
||||||
if d.against_order:
|
if self.get("party_account_currency") == self.company_currency:
|
||||||
allocated_amount = flt(d.amount)
|
amount = self.get("base_rounded_total") or self.base_grand_total
|
||||||
else:
|
else:
|
||||||
if self.get("party_account_currency") == self.company_currency:
|
amount = self.get("rounded_total") or self.grand_total
|
||||||
amount = self.get("base_rounded_total") or self.base_grand_total
|
|
||||||
else:
|
|
||||||
amount = self.get("rounded_total") or self.grand_total
|
|
||||||
|
|
||||||
allocated_amount = min(amount - advance_allocated, d.amount)
|
allocated_amount = min(amount - advance_allocated, d.amount)
|
||||||
advance_allocated += flt(allocated_amount)
|
advance_allocated += flt(allocated_amount)
|
||||||
|
|
||||||
advance_row = {
|
advance_row = {
|
||||||
|
Loading…
Reference in New Issue
Block a user