2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/AccountingSettings.json
18alantom eb2b6f4727 fix: replace path after a doc has been inserted
- reword "Features Flags" to "Features"
- reword "Save to database"
- fix "New Entry" display
- fix address sectioning
2023-04-24 20:32:12 -07:00

113 lines
2.4 KiB
JSON

{
"name": "AccountingSettings",
"label": "Accounting Settings",
"isSingle": true,
"isChild": false,
"isSubmittable": false,
"fields": [
{
"label": "Full Name",
"fieldname": "fullname",
"fieldtype": "Data",
"required": true,
"section": "Default"
},
{
"label": "Company Name",
"fieldname": "companyName",
"fieldtype": "Data",
"readOnly": true,
"required": true,
"section": "Default"
},
{
"label": "Bank Name",
"fieldname": "bankName",
"fieldtype": "Data",
"readOnly": true,
"required": true,
"section": "Default"
},
{
"label": "Country",
"fieldname": "country",
"fieldtype": "AutoComplete",
"placeholder": "Select Country",
"readOnly": true,
"required": true,
"section": "Default"
},
{
"fieldname": "email",
"label": "Email",
"fieldtype": "Data",
"required": true,
"section": "Default"
},
{
"label": "Write Off Account",
"fieldname": "writeOffAccount",
"fieldtype": "Link",
"target": "Account",
"section": "Accounts"
},
{
"label": "Round Off Account",
"fieldname": "roundOffAccount",
"fieldtype": "Link",
"target": "Account",
"section": "Accounts"
},
{
"label": "Discount Account",
"fieldname": "discountAccount",
"fieldtype": "Link",
"target": "Account",
"section": "Accounts"
},
{
"fieldname": "enableDiscounting",
"label": "Enable Discount Accounting",
"fieldtype": "Check",
"default": false,
"section": "Features"
},
{
"fieldname": "enableInventory",
"label": "Enable Inventory",
"fieldtype": "Check",
"default": false,
"section": "Features"
},
{
"fieldname": "fiscalYearStart",
"label": "Fiscal Year Start Date",
"fieldtype": "Date",
"required": true,
"section": "Fiscal Year"
},
{
"fieldname": "fiscalYearEnd",
"label": "Fiscal Year End Date",
"fieldtype": "Date",
"required": true,
"section": "Fiscal Year"
},
{
"fieldname": "setupComplete",
"label": "Setup Complete",
"fieldtype": "Check",
"default": false,
"hidden": true
}
],
"quickEditFields": [
"fullname",
"email",
"companyName",
"country",
"fiscalYearStart",
"fiscalYearEnd"
]
}