mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 19:59:12 +00:00
refactor: store reconciliation date in reference
Helps with reposting
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
"payment_term_outstanding",
|
"payment_term_outstanding",
|
||||||
"account_type",
|
"account_type",
|
||||||
"payment_type",
|
"payment_type",
|
||||||
|
"reconcile_effect_on",
|
||||||
"column_break_4",
|
"column_break_4",
|
||||||
"total_amount",
|
"total_amount",
|
||||||
"outstanding_amount",
|
"outstanding_amount",
|
||||||
@@ -144,12 +145,18 @@
|
|||||||
"is_virtual": 1,
|
"is_virtual": 1,
|
||||||
"label": "Payment Request Outstanding",
|
"label": "Payment Request Outstanding",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "reconcile_effect_on",
|
||||||
|
"fieldtype": "Date",
|
||||||
|
"label": "Reconcile Effect On",
|
||||||
|
"read_only": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"istable": 1,
|
"istable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-09-16 18:11:50.019343",
|
"modified": "2025-01-13 15:56:18.895082",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Payment Entry Reference",
|
"name": "Payment Entry Reference",
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ class PaymentEntryReference(Document):
|
|||||||
payment_term: DF.Link | None
|
payment_term: DF.Link | None
|
||||||
payment_term_outstanding: DF.Float
|
payment_term_outstanding: DF.Float
|
||||||
payment_type: DF.Data | None
|
payment_type: DF.Data | None
|
||||||
|
reconcile_effect_on: DF.Date | None
|
||||||
reference_doctype: DF.Link
|
reference_doctype: DF.Link
|
||||||
reference_name: DF.DynamicLink
|
reference_name: DF.DynamicLink
|
||||||
total_amount: DF.Float
|
total_amount: DF.Float
|
||||||
|
|||||||
Reference in New Issue
Block a user