mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-04 14:08:29 +00:00
test: partial payment for pos invoice
(cherry picked from commit 8772628912)
This commit is contained in:
@@ -76,6 +76,41 @@ class TestAccountsReceivable(AccountsTestMixin, FrappeTestCase):
|
|||||||
|
|
||||||
return credit_note
|
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):
|
def test_accounts_receivable(self):
|
||||||
filters = {
|
filters = {
|
||||||
"company": self.company,
|
"company": self.company,
|
||||||
|
|||||||
Reference in New Issue
Block a user