mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 00:14:50 +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": [
|
"field_order": [
|
||||||
"voucher_type",
|
"voucher_type",
|
||||||
"voucher_no",
|
"voucher_no",
|
||||||
"debit_credit_mismatch"
|
"debit_credit_mismatch",
|
||||||
|
"checked_on"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -25,11 +26,16 @@
|
|||||||
"fieldname": "debit_credit_mismatch",
|
"fieldname": "debit_credit_mismatch",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Debit-Credit mismatch"
|
"label": "Debit-Credit mismatch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "checked_on",
|
||||||
|
"fieldtype": "Datetime",
|
||||||
|
"label": "Checked On"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-03-26 17:53:04.985881",
|
"modified": "2024-03-26 17:54:47.662290",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Ledger Health",
|
"name": "Ledger Health",
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ class LedgerHealth(Document):
|
|||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from frappe.types import DF
|
from frappe.types import DF
|
||||||
|
|
||||||
|
checked_on: DF.Datetime | None
|
||||||
debit_credit_mismatch: DF.Check
|
debit_credit_mismatch: DF.Check
|
||||||
name: DF.Int | None
|
name: DF.Int | None
|
||||||
voucher_no: DF.Data | None
|
voucher_no: DF.Data | None
|
||||||
|
|||||||
Reference in New Issue
Block a user