Skip to content

Commit

Permalink
Merge pull request #38797 from rtdany10/ar-credit-note-fix
Browse files Browse the repository at this point in the history
fix: wrong paid and cn amount on pos invoice
  • Loading branch information
ruthra-kumar authored Dec 19, 2023
2 parents 32a608f + 8772628 commit dd6c192
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,12 @@ def update_voucher_balance(self, ple):
row.invoiced_in_account_currency += amount_in_account_currency
else:
if self.is_invoice(ple):
row.credit_note -= amount
row.credit_note_in_account_currency -= amount_in_account_currency
if row.voucher_no == ple.voucher_no == ple.against_voucher_no:
row.paid -= amount
row.paid_in_account_currency -= amount_in_account_currency
else:
row.credit_note -= amount
row.credit_note_in_account_currency -= amount_in_account_currency
else:
row.paid -= amount
row.paid_in_account_currency -= amount_in_account_currency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,41 @@ def create_credit_note(self, docname):

return credit_note

def test_pos_receivable(self):
filters = {
"company": self.company,
"party_type": "Customer",
"party": [self.customer],
"report_date": add_days(today(), 2),
"based_on_payment_terms": 0,
"range1": 30,
"range2": 60,
"range3": 90,
"range4": 120,
"show_remarks": False,
}

pos_inv = self.create_sales_invoice(no_payment_schedule=True, do_not_submit=True)
pos_inv.posting_date = add_days(today(), 2)
pos_inv.is_pos = 1
pos_inv.append(
"payments",
frappe._dict(
mode_of_payment="Cash",
amount=flt(pos_inv.grand_total / 2),
),
)
pos_inv.disable_rounded_total = 1
pos_inv.save()
pos_inv.submit()

report = execute(filters)
expected_data = [[pos_inv.grand_total, pos_inv.paid_amount, 0]]

row = report[1][-1]
self.assertEqual(expected_data[0], [row.invoiced, row.paid, row.credit_note])
pos_inv.cancel()

def test_accounts_receivable(self):
filters = {
"company": self.company,
Expand Down

0 comments on commit dd6c192

Please sign in to comment.