2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 07:08:36 +00:00
books/schemas/app/AccountingSettings.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.7 KiB
JSON
Raw Normal View History

2022-03-23 13:01:15 +05:30
{
"name": "AccountingSettings",
"label": "Accounting Settings",
"isSingle": true,
"isChild": false,
"isSubmittable": false,
"fields": [
{
"label": "Company Name",
"fieldname": "companyName",
"fieldtype": "Data",
"readOnly": true,
2022-03-23 13:01:15 +05:30
"required": true
},
{
"label": "Write Off Account",
"fieldname": "writeOffAccount",
"fieldtype": "Link",
"target": "Account",
"default": "Write Off"
},
{
"label": "Round Off Account",
"fieldname": "roundOffAccount",
"fieldtype": "Link",
"target": "Account",
"default": "Rounded Off"
},
{
"fieldname": "country",
"label": "Country",
"fieldtype": "AutoComplete",
"placeholder": "Select Country",
"readOnly": true,
"required": true
},
{
"fieldname": "fullname",
"label": "Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "email",
"label": "Email",
"fieldtype": "Data",
2022-03-23 14:07:00 +05:30
"required": true
2022-03-23 13:01:15 +05:30
},
{
"fieldname": "bankName",
"label": "Bank Name",
"fieldtype": "Data",
"readOnly": true,
2022-03-23 13:01:15 +05:30
"required": true
},
{
"fieldname": "fiscalYearStart",
"label": "Fiscal Year Start Date",
"fieldtype": "Date",
"required": true
},
{
"fieldname": "fiscalYearEnd",
"label": "Fiscal Year End Date",
"fieldtype": "Date",
"required": true
},
{
"fieldname": "setupComplete",
"label": "Setup Complete",
"fieldtype": "Check",
2022-03-23 14:07:00 +05:30
"default": false
2022-03-23 13:01:15 +05:30
}
],
"quickEditFields": [
"fullname",
"email",
"companyName",
"country",
"fiscalYearStart",
2022-03-23 14:07:00 +05:30
"fiscalYearEnd"
2022-03-23 13:01:15 +05:30
]
2022-03-23 14:07:00 +05:30
}