mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
29 lines
589 B
JSON
29 lines
589 B
JSON
{
|
|
"name": "JournalEntryAccount",
|
|
"label": "Journal Entry Account",
|
|
"isChild": true,
|
|
"fields": [
|
|
{
|
|
"fieldname": "account",
|
|
"label": "Account",
|
|
"placeholder": "Account",
|
|
"fieldtype": "Link",
|
|
"target": "Account",
|
|
"required": true,
|
|
"groupBy": "rootType"
|
|
},
|
|
{
|
|
"fieldname": "debit",
|
|
"label": "Debit",
|
|
"fieldtype": "Currency"
|
|
},
|
|
{
|
|
"fieldname": "credit",
|
|
"label": "Credit",
|
|
"fieldtype": "Currency"
|
|
}
|
|
],
|
|
"tableFields": ["account", "debit", "credit"],
|
|
"keywordFields": ["account"]
|
|
}
|