refactor: flag for general and payment ledger mismatch

(cherry picked from commit d620b9eae8)
This commit is contained in:
ruthra kumar
2024-03-26 20:00:48 +05:30
committed by Mergify
parent b8bcae9252
commit 6bf997ee96
2 changed files with 10 additions and 2 deletions

View File

@@ -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",

View File

@@ -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