mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
fix: change voucher_type and voucher_no field type to data
This commit is contained in:
@@ -13,17 +13,15 @@
|
|||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"fieldname": "voucher_type",
|
"fieldname": "voucher_type",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Data",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "Voucher Type",
|
"label": "Voucher Type"
|
||||||
"options": "DocType"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "voucher_name",
|
"fieldname": "voucher_name",
|
||||||
"fieldtype": "Dynamic Link",
|
"fieldtype": "Data",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "Voucher Name",
|
"label": "Voucher Name"
|
||||||
"options": "voucher_type"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "taxable_amount",
|
"fieldname": "taxable_amount",
|
||||||
@@ -36,7 +34,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"istable": 1,
|
"istable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2024-03-27 13:10:52.307012",
|
"modified": "2025-02-05 16:39:14.863698",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Tax Withheld Vouchers",
|
"name": "Tax Withheld Vouchers",
|
||||||
|
|||||||
@@ -18,8 +18,8 @@ class TaxWithheldVouchers(Document):
|
|||||||
parentfield: DF.Data
|
parentfield: DF.Data
|
||||||
parenttype: DF.Data
|
parenttype: DF.Data
|
||||||
taxable_amount: DF.Currency
|
taxable_amount: DF.Currency
|
||||||
voucher_name: DF.DynamicLink | None
|
voucher_name: DF.Data | None
|
||||||
voucher_type: DF.Link | None
|
voucher_type: DF.Data | None
|
||||||
# end: auto-generated types
|
# end: auto-generated types
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user