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

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

181 lines
3.9 KiB
JSON
Raw Normal View History

2022-09-27 09:37:11 +00:00
{
"name": "Invoice",
"label": "Invoice",
"isAbstract": true,
"isSingle": false,
"isChild": false,
"isSubmittable": true,
"fields": [
{
"label": "Invoice No",
"fieldname": "name",
"fieldtype": "Data",
"required": true,
"readOnly": true,
"hidden": true
2022-09-27 09:37:11 +00:00
},
{
"abstract": true,
"fieldname": "numberSeries",
"section": "Default"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "party",
"label": "Party",
"fieldtype": "Link",
"target": "Party",
"create": true,
"required": true,
"section": "Default"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "account",
"label": "Account",
"fieldtype": "Link",
"target": "Account",
"create": true,
"required": true
},
{
"fieldname": "date",
"label": "Date",
"fieldtype": "Date",
"required": true,
"section": "Default"
2022-09-27 09:37:11 +00:00
},
{
"abstract": true,
"fieldname": "items",
"section": "Items"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "netTotal",
"label": "Net Total",
"fieldtype": "Currency",
"readOnly": true,
"section": "Items"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "taxes",
"label": "Taxes",
"fieldtype": "Table",
"target": "TaxSummary",
"readOnly": true,
"section": "Tax and Totals"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "baseGrandTotal",
2022-10-03 08:18:02 +00:00
"label": "Base Grand Total",
2022-09-27 09:37:11 +00:00
"fieldtype": "Currency",
"readOnly": true,
"section": "Tax and Totals"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "grandTotal",
"label": "Grand Total",
2022-09-27 09:37:11 +00:00
"fieldtype": "Currency",
"readOnly": true,
"section": "Tax and Totals"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "setDiscountAmount",
"label": "Set Discount Amount",
"fieldtype": "Check",
"default": false,
"hidden": true
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "discountAmount",
"label": "Discount Amount",
"fieldtype": "Currency",
"readOnly": false,
"hidden": true
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "discountPercent",
"label": "Discount Percent",
"fieldtype": "Float",
"readOnly": false,
"hidden": true
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "entryCurrency",
"label": "Entry Currency",
"fieldtype": "Select",
"options": [
{
"value": "Party",
"label": "Party"
},
{
"value": "Company",
"label": "Company"
}
],
"default": "Party",
"hidden": true
},
{
"fieldname": "currency",
"label": "Customer Currency",
"fieldtype": "Link",
"target": "Currency",
"readOnly": true,
"tab": "Settings"
},
{
"fieldname": "exchangeRate",
"label": "Exchange Rate",
"fieldtype": "Float",
"default": 1,
"readOnly": true,
"tab": "Settings"
},
{
"fieldname": "discountAfterTax",
"label": "Apply Discount After Tax",
"fieldtype": "Check",
"default": false,
"readOnly": false,
"tab": "Settings"
},
{
"fieldname": "makeAutoPayment",
"label": "Make Payment On Submit",
"fieldtype": "Check",
"default": false,
"readOnly": false,
"tab": "Settings"
},
{
"fieldname": "outstandingAmount",
"label": "Outstanding Amount",
"fieldtype": "Currency",
"readOnly": true,
"section": "Outstanding"
},
{
"fieldname": "stockNotTransferred",
"label": "Stock Not Transferred",
"fieldtype": "Float",
"readOnly": true,
"section": "Outstanding"
2022-09-27 09:37:11 +00:00
},
{
"fieldname": "terms",
"label": "Notes",
"placeholder": "Add invoice terms",
"fieldtype": "Text",
"section": "References"
},
{
"fieldname": "attachment",
"placeholder": "Add attachment",
"label": "Attachment",
"fieldtype": "Attachment",
"section": "References"
2022-09-27 09:37:11 +00:00
}
],
"keywordFields": ["name", "party"]
}