mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-21 19:25:16 +00:00
fix(bank transaction): change reference number to small text
(cherry picked from commit 90f399d0fc)
# Conflicts:
# erpnext/accounts/doctype/bank_transaction/bank_transaction.json
This commit is contained in:
committed by
ruthra kumar
parent
f6842041c9
commit
5a0bf7a5e1
@@ -116,7 +116,7 @@
|
|||||||
{
|
{
|
||||||
"allow_on_submit": 1,
|
"allow_on_submit": 1,
|
||||||
"fieldname": "reference_number",
|
"fieldname": "reference_number",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Small Text",
|
||||||
"label": "Reference Number"
|
"label": "Reference Number"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -238,7 +238,7 @@
|
|||||||
"grid_page_length": 50,
|
"grid_page_length": 50,
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2025-06-18 17:24:57.044666",
|
"modified": "2025-09-26 17:06:29.207673",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Bank Transaction",
|
"name": "Bank Transaction",
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class BankTransaction(Document):
|
|||||||
party: DF.DynamicLink | None
|
party: DF.DynamicLink | None
|
||||||
party_type: DF.Link | None
|
party_type: DF.Link | None
|
||||||
payment_entries: DF.Table[BankTransactionPayments]
|
payment_entries: DF.Table[BankTransactionPayments]
|
||||||
reference_number: DF.Data | None
|
reference_number: DF.SmallText | None
|
||||||
status: DF.Literal["", "Pending", "Settled", "Unreconciled", "Reconciled", "Cancelled"]
|
status: DF.Literal["", "Pending", "Settled", "Unreconciled", "Reconciled", "Cancelled"]
|
||||||
transaction_id: DF.Data | None
|
transaction_id: DF.Data | None
|
||||||
transaction_type: DF.Data | None
|
transaction_type: DF.Data | None
|
||||||
|
|||||||
Reference in New Issue
Block a user