mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 21:59:13 +00:00
chore: resolve conflicts
This commit is contained in:
committed by
GitHub
parent
eadea0207c
commit
99d1f1d67b
@@ -1037,35 +1037,6 @@ class TestPurchaseOrder(FrappeTestCase):
|
|||||||
|
|
||||||
self.assertTrue(frappe.db.get_value("Subcontracting Order", {"purchase_order": po.name}))
|
self.assertTrue(frappe.db.get_value("Subcontracting Order", {"purchase_order": po.name}))
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
def test_purchase_order_advance_payment_status(self):
|
|
||||||
from erpnext.accounts.doctype.payment_entry.test_payment_entry import get_payment_entry
|
|
||||||
from erpnext.accounts.doctype.payment_request.payment_request import make_payment_request
|
|
||||||
|
|
||||||
po = create_purchase_order()
|
|
||||||
self.assertEqual(
|
|
||||||
frappe.db.get_value(po.doctype, po.name, "advance_payment_status"), "Not Initiated"
|
|
||||||
)
|
|
||||||
|
|
||||||
pr = make_payment_request(dt=po.doctype, dn=po.name, submit_doc=True, return_doc=True)
|
|
||||||
self.assertEqual(frappe.db.get_value(po.doctype, po.name, "advance_payment_status"), "Initiated")
|
|
||||||
|
|
||||||
pe = get_payment_entry(po.doctype, po.name).save().submit()
|
|
||||||
self.assertEqual(
|
|
||||||
frappe.db.get_value(po.doctype, po.name, "advance_payment_status"), "Fully Paid"
|
|
||||||
)
|
|
||||||
|
|
||||||
pe.reload()
|
|
||||||
pe.cancel()
|
|
||||||
self.assertEqual(frappe.db.get_value(po.doctype, po.name, "advance_payment_status"), "Initiated")
|
|
||||||
|
|
||||||
pr.reload()
|
|
||||||
pr.cancel()
|
|
||||||
self.assertEqual(
|
|
||||||
frappe.db.get_value(po.doctype, po.name, "advance_payment_status"), "Not Initiated"
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_po_billed_amount_against_return_entry(self):
|
def test_po_billed_amount_against_return_entry(self):
|
||||||
from erpnext.accounts.doctype.purchase_invoice.purchase_invoice import make_debit_note
|
from erpnext.accounts.doctype.purchase_invoice.purchase_invoice import make_debit_note
|
||||||
|
|
||||||
@@ -1098,7 +1069,6 @@ class TestPurchaseOrder(FrappeTestCase):
|
|||||||
po.reload()
|
po.reload()
|
||||||
self.assertEqual(po.per_billed, 100)
|
self.assertEqual(po.per_billed, 100)
|
||||||
|
|
||||||
>>>>>>> 81dbfe189e (test: po billed amount against debit note)
|
|
||||||
|
|
||||||
def prepare_data_for_internal_transfer():
|
def prepare_data_for_internal_transfer():
|
||||||
from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_internal_supplier
|
from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_internal_supplier
|
||||||
|
|||||||
Reference in New Issue
Block a user