2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/JournalEntryAccount.json

27 lines
556 B
JSON
Raw Normal View History

2022-03-23 07:31:15 +00:00
{
"name": "JournalEntryAccount",
2022-03-23 08:37:00 +00:00
"label": "Journal Entry Account",
2022-03-23 07:31:15 +00:00
"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"
}
],
2022-03-23 08:37:00 +00:00
"tableFields": ["account", "debit", "credit"]
2022-03-23 07:31:15 +00:00
}