mirror of
https://github.com/frappe/books.git
synced 2025-01-22 14:48:25 +00:00
fix: add missing create option
This commit is contained in:
parent
4fbcd9da5f
commit
1b15eb67e4
@ -143,5 +143,11 @@
|
||||
"readOnly": true
|
||||
}
|
||||
],
|
||||
"quickEditFields": ["name", "rootType", "parentAccount", "accountType", "isGroup", "balance"]
|
||||
"quickEditFields": [
|
||||
"rootType",
|
||||
"parentAccount",
|
||||
"accountType",
|
||||
"isGroup",
|
||||
"balance"
|
||||
]
|
||||
}
|
||||
|
@ -30,5 +30,5 @@
|
||||
"fieldtype": "Data"
|
||||
}
|
||||
],
|
||||
"quickEditFields": ["name", "symbol"]
|
||||
"quickEditFields": ["symbol"]
|
||||
}
|
||||
|
@ -100,6 +100,7 @@
|
||||
"fieldtype": "Link",
|
||||
"target": "Account",
|
||||
"placeholder": "Income",
|
||||
"create": true,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
@ -108,6 +109,7 @@
|
||||
"fieldtype": "Link",
|
||||
"target": "Account",
|
||||
"placeholder": "Expense",
|
||||
"create": true,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
@ -115,6 +117,7 @@
|
||||
"label": "Tax",
|
||||
"fieldtype": "Link",
|
||||
"target": "Tax",
|
||||
"create": true,
|
||||
"placeholder": "Tax"
|
||||
},
|
||||
{
|
||||
|
@ -97,6 +97,7 @@
|
||||
"label": "Number Series",
|
||||
"fieldtype": "Link",
|
||||
"target": "NumberSeries",
|
||||
"create": true,
|
||||
"required": true,
|
||||
"default": "JV-"
|
||||
}
|
||||
|
@ -41,7 +41,8 @@
|
||||
"fieldname": "defaultAccount",
|
||||
"label": "Default Account",
|
||||
"fieldtype": "Link",
|
||||
"target": "Account"
|
||||
"target": "Account",
|
||||
"create": true
|
||||
},
|
||||
{
|
||||
"fieldname": "outstandingAmount",
|
||||
@ -53,7 +54,8 @@
|
||||
"label": "Currency",
|
||||
"fieldtype": "Link",
|
||||
"target": "Currency",
|
||||
"placeholder": "INR"
|
||||
"placeholder": "INR",
|
||||
"create": true
|
||||
},
|
||||
{
|
||||
"fieldname": "email",
|
||||
|
@ -17,6 +17,7 @@
|
||||
"label": "Party",
|
||||
"fieldtype": "Link",
|
||||
"target": "Party",
|
||||
"create": true,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
@ -30,6 +31,7 @@
|
||||
"label": "From Account",
|
||||
"fieldtype": "Link",
|
||||
"target": "Account",
|
||||
"create": true,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
@ -55,6 +57,7 @@
|
||||
"placeholder": "To Account",
|
||||
"fieldtype": "Link",
|
||||
"target": "Account",
|
||||
"create": true,
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
@ -62,6 +65,7 @@
|
||||
"label": "Number Series",
|
||||
"fieldtype": "Link",
|
||||
"target": "NumberSeries",
|
||||
"create": true,
|
||||
"required": true,
|
||||
"default": "PAY-"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user