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.

102 lines
2.2 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",
"section": "Default"
2022-03-23 07:31:15 +00:00
},
{
"fieldname": "companyName",
"label": "Company Name",
"placeholder": "Company Name",
"fieldtype": "Data",
"required": true,
"section": "Default"
2022-03-23 07:31:15 +00:00
},
{
"fieldname": "fullname",
"label": "Full Name",
2022-03-23 07:31:15 +00:00
"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": "country",
"label": "Country",
"fieldtype": "AutoComplete",
"placeholder": "Select Country",
"section": "Locale",
"required": true
},
{
"fieldname": "currency",
"label": "Currency",
2023-04-10 00:42:23 +00:00
"fieldtype": "AutoComplete",
"placeholder": "Currency",
"section": "Locale",
2022-03-23 07:31:15 +00:00
"required": true
},
{
"fieldname": "bankName",
"label": "Bank Name",
"fieldtype": "Data",
"placeholder": "Prime Bank",
"section": "Accounting",
"required": true
},
{
"fieldname": "chartOfAccounts",
"label": "Chart of Accounts",
"fieldtype": "AutoComplete",
"placeholder": "Select CoA",
"section": "Accounting",
2022-03-23 07:31:15 +00:00
"required": true
},
{
"fieldname": "fiscalYearStart",
"label": "Fiscal Year Start Date",
"placeholder": "Fiscal Year Start Date",
"fieldtype": "Date",
"section": "Accounting",
2022-03-23 07:31:15 +00:00
"required": true
},
{
"fieldname": "fiscalYearEnd",
"label": "Fiscal Year End Date",
"placeholder": "Fiscal Year End Date",
"fieldtype": "Date",
"section": "Accounting",
2022-04-25 08:57:05 +00:00
"required": true
},
2022-03-23 07:31:15 +00:00
{
"fieldname": "completed",
"label": "Completed",
"fieldtype": "Check",
"hidden": true,
2022-03-23 07:31:15 +00:00
"readOnly": true
}
],
"quickEditFields": [
"fullname",
"bankName",
"country",
"currency",
"chartOfAccounts",
"fiscalYearStart",
"fiscalYearEnd"
]
}