mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 10:11:20 +00:00
refactor: flag for general and payment ledger mismatch
(cherry picked from commit d620b9eae8)
This commit is contained in:
@@ -7,8 +7,9 @@
|
|||||||
"field_order": [
|
"field_order": [
|
||||||
"voucher_type",
|
"voucher_type",
|
||||||
"voucher_no",
|
"voucher_no",
|
||||||
|
"checked_on",
|
||||||
"debit_credit_mismatch",
|
"debit_credit_mismatch",
|
||||||
"checked_on"
|
"general_and_payment_ledger_mismatch"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -31,11 +32,17 @@
|
|||||||
"fieldname": "checked_on",
|
"fieldname": "checked_on",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
"label": "Checked On"
|
"label": "Checked On"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "general_and_payment_ledger_mismatch",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "General and Payment Ledger mismatch"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-03-26 17:54:47.662290",
|
"modified": "2024-03-26 19:59:41.180161",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Ledger Health",
|
"name": "Ledger Health",
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ class LedgerHealth(Document):
|
|||||||
|
|
||||||
checked_on: DF.Datetime | None
|
checked_on: DF.Datetime | None
|
||||||
debit_credit_mismatch: DF.Check
|
debit_credit_mismatch: DF.Check
|
||||||
|
general_and_payment_ledger_mismatch: DF.Check
|
||||||
name: DF.Int | None
|
name: DF.Int | None
|
||||||
voucher_no: DF.Data | None
|
voucher_no: DF.Data | None
|
||||||
voucher_type: DF.Data | None
|
voucher_type: DF.Data | None
|
||||||
|
|||||||
Reference in New Issue
Block a user