refactor: flag for general and payment ledger mismatch

This commit is contained in:
ruthra kumar
2024-03-26 20:00:48 +05:30
parent 402ffc6d27
commit d620b9eae8
2 changed files with 10 additions and 2 deletions

View File

@@ -7,8 +7,9 @@
"field_order": [
"voucher_type",
"voucher_no",
"checked_on",
"debit_credit_mismatch",
"checked_on"
"general_and_payment_ledger_mismatch"
],
"fields": [
{
@@ -31,11 +32,17 @@
"fieldname": "checked_on",
"fieldtype": "Datetime",
"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,
"links": [],
"modified": "2024-03-26 17:54:47.662290",
"modified": "2024-03-26 19:59:41.180161",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Ledger Health",

View File

@@ -16,6 +16,7 @@ class LedgerHealth(Document):
checked_on: DF.Datetime | None
debit_credit_mismatch: DF.Check
general_and_payment_ledger_mismatch: DF.Check
name: DF.Int | None
voucher_no: DF.Data | None
voucher_type: DF.Data | None