mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 00:55:02 +00:00
refactor: date on which vouchers was reported
(cherry picked from commit 402ffc6d27)
This commit is contained in:
@@ -7,7 +7,8 @@
|
||||
"field_order": [
|
||||
"voucher_type",
|
||||
"voucher_no",
|
||||
"debit_credit_mismatch"
|
||||
"debit_credit_mismatch",
|
||||
"checked_on"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
@@ -25,11 +26,16 @@
|
||||
"fieldname": "debit_credit_mismatch",
|
||||
"fieldtype": "Check",
|
||||
"label": "Debit-Credit mismatch"
|
||||
},
|
||||
{
|
||||
"fieldname": "checked_on",
|
||||
"fieldtype": "Datetime",
|
||||
"label": "Checked On"
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-03-26 17:53:04.985881",
|
||||
"modified": "2024-03-26 17:54:47.662290",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Accounts",
|
||||
"name": "Ledger Health",
|
||||
|
||||
@@ -14,6 +14,7 @@ class LedgerHealth(Document):
|
||||
if TYPE_CHECKING:
|
||||
from frappe.types import DF
|
||||
|
||||
checked_on: DF.Datetime | None
|
||||
debit_credit_mismatch: DF.Check
|
||||
name: DF.Int | None
|
||||
voucher_no: DF.Data | None
|
||||
|
||||
Reference in New Issue
Block a user