2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/schemas/app/Defaults.json
Mildred Ki'Lya c10edc7132 feat: #151 Add quote object and allow create invoice from it
Also allow changing a print template type, necessary to create a custom
print template for this.
2024-01-08 21:56:03 +01:00

200 lines
5.1 KiB
JSON

{
"name": "Defaults",
"label": "Defaults",
"isSingle": true,
"isChild": false,
"fields": [
{
"fieldname": "salesPaymentAccount",
"label": "Sales Payment Account",
"fieldtype": "Link",
"target": "Account",
"create": true,
"section": "Auto Payments"
},
{
"fieldname": "purchasePaymentAccount",
"label": "Purchase Payment Account",
"fieldtype": "Link",
"target": "Account",
"create": true,
"section": "Auto Payments"
},
{
"fieldname": "shipmentLocation",
"label": "Shipment Location",
"fieldtype": "Link",
"target": "Location",
"create": true,
"section": "Auto Stock Transfer"
},
{
"fieldname": "purchaseReceiptLocation",
"label": "Purchase Receipt Location",
"fieldtype": "Link",
"target": "Location",
"create": true,
"section": "Auto Stock Transfer"
},
{
"fieldname": "salesInvoiceNumberSeries",
"label": "Sales Invoice Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "purchaseInvoiceNumberSeries",
"label": "Purchase Invoice Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "journalEntryNumberSeries",
"label": "Journal Entry Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "paymentNumberSeries",
"label": "Payment Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "stockMovementNumberSeries",
"label": "Stock Movement Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "shipmentNumberSeries",
"label": "Shipment Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "purchaseReceiptNumberSeries",
"label": "Purchase Receipt Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "salesQuoteNumberSeries",
"label": "Sales Quote Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"section": "Number Series"
},
{
"fieldname": "salesInvoiceTerms",
"label": "Sales Invoice Terms",
"fieldtype": "Text",
"section": "Terms"
},
{
"fieldname": "purchaseInvoiceTerms",
"label": "Purchase Invoice Terms",
"fieldtype": "Text",
"section": "Terms"
},
{
"fieldname": "shipmentTerms",
"label": "Shipment Terms",
"fieldtype": "Text",
"section": "Terms"
},
{
"fieldname": "purchaseReceiptTerms",
"label": "Purchase Receipt Terms",
"fieldtype": "Text",
"section": "Terms"
},
{
"fieldname": "salesQuotePrintTemplate",
"label": "Sales Quote Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "salesInvoicePrintTemplate",
"label": "Sales Invoice Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "purchaseInvoicePrintTemplate",
"label": "Purchase Invoice Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "journalEntryPrintTemplate",
"label": "Journal Entry Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "paymentPrintTemplate",
"label": "Payment Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "shipmentPrintTemplate",
"label": "Shipment Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "purchaseReceiptPrintTemplate",
"label": "Purchase Receipt Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "stockMovementPrintTemplate",
"label": "Stock Movement Print Template",
"fieldtype": "Link",
"target": "PrintTemplate",
"section": "Print Templates"
},
{
"fieldname": "posCustomer",
"label": "POS Customer",
"fieldtype": "Link",
"target": "Party",
"create": true,
"section": "Point of Sale"
},
{
"fieldname": "posCashDenominations",
"label": "Cash Denominations",
"fieldtype": "Table",
"target": "DefaultCashDenominations",
"section": "Point of Sale"
}
]
}