2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/schemas/app/AccountingSettings.json
2022-11-30 11:24:05 +05:30

100 lines
2.1 KiB
JSON

{
"name": "AccountingSettings",
"label": "Accounting Settings",
"isSingle": true,
"isChild": false,
"isSubmittable": false,
"fields": [
{
"label": "Company Name",
"fieldname": "companyName",
"fieldtype": "Data",
"readOnly": true,
"required": true
},
{
"label": "Write Off Account",
"fieldname": "writeOffAccount",
"fieldtype": "Link",
"target": "Account"
},
{
"label": "Round Off Account",
"fieldname": "roundOffAccount",
"fieldtype": "Link",
"target": "Account"
},
{
"fieldname": "country",
"label": "Country",
"fieldtype": "AutoComplete",
"placeholder": "Select Country",
"readOnly": true,
"required": true
},
{
"fieldname": "fullname",
"label": "Full Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "email",
"label": "Email",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "bankName",
"label": "Bank Name",
"fieldtype": "Data",
"readOnly": true,
"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": "enableDiscounting",
"label": "Enable Discount Accounting",
"fieldtype": "Check",
"default": false
},
{
"fieldname": "discountAccount",
"label": "Discount Account",
"fieldtype": "Link",
"target": "Account"
},
{
"fieldname": "enableInventory",
"label": "Enable Inventory",
"fieldtype": "Check",
"default": false
},
{
"fieldname": "setupComplete",
"label": "Setup Complete",
"fieldtype": "Check",
"default": false
}
],
"quickEditFields": [
"fullname",
"email",
"companyName",
"country",
"fiscalYearStart",
"fiscalYearEnd"
]
}