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

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

93 lines
2.0 KiB
JSON
Raw Normal View History

2022-03-23 07:31:15 +00:00
{
"name": "SetupWizard",
"label": "Setup Wizard",
"isSingle": true,
"isChild": false,
"isSubmittable": false,
"fields": [
{
2022-04-25 06:33:31 +00:00
"fieldname": "logo",
2022-03-23 07:31:15 +00:00
"label": "Company Logo",
"fieldtype": "AttachImage"
},
{
"fieldname": "country",
"label": "Country",
"fieldtype": "AutoComplete",
"placeholder": "Select Country",
"required": true
},
{
"fieldname": "fullname",
"label": "Your Name",
"fieldtype": "Data",
"placeholder": "John Doe",
"required": true
},
{
"fieldname": "email",
"label": "Email",
"fieldtype": "Data",
"placeholder": "john@doe.com",
2022-03-23 08:37:00 +00:00
"required": true
2022-03-23 07:31:15 +00:00
},
{
"fieldname": "companyName",
"label": "Company Name",
"placeholder": "Company Name",
"fieldtype": "Data",
"required": true
},
{
"fieldname": "bankName",
"label": "Bank Name",
"fieldtype": "Data",
"placeholder": "Prime Bank",
"required": true
},
{
"fieldname": "fiscalYearStart",
"label": "Fiscal Year Start Date",
"placeholder": "Fiscal Year Start Date",
"fieldtype": "Date",
"required": true
},
{
"fieldname": "fiscalYearEnd",
"label": "Fiscal Year End Date",
"placeholder": "Fiscal Year End Date",
"fieldtype": "Date",
"required": true
},
{
"fieldname": "currency",
"label": "Currency",
"fieldtype": "Data",
"placeholder": "Currency",
"required": true
},
2022-04-25 08:57:05 +00:00
{
"fieldname": "chartOfAccounts",
"label": "Chart of Accounts",
"fieldtype": "AutoComplete",
"placeholder": "Select CoA",
"required": true
},
2022-03-23 07:31:15 +00:00
{
"fieldname": "completed",
"label": "Completed",
"fieldtype": "Check",
"readOnly": true
}
],
"quickEditFields": [
"fullname",
"bankName",
"country",
"currency",
"chartOfAccounts",
"fiscalYearStart",
"fiscalYearEnd"
]
}