2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/schemas/app/PurchaseInvoice.json
18alantom 28158e5add incr: update invoice schema with sections
- hide name from transactional schemas
2023-04-12 14:35:38 +05:30

30 lines
631 B
JSON

{
"name": "PurchaseInvoice",
"label": "Purchase Invoice",
"extends": "Invoice",
"naming": "numberSeries",
"showTitle": true,
"fields": [
{
"fieldname": "numberSeries",
"label": "Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
"create": true,
"required": true,
"default": "PINV-",
"section": "Default"
},
{
"fieldname": "items",
"label": "Items",
"fieldtype": "Table",
"target": "PurchaseInvoiceItem",
"required": true,
"edit": true,
"section": "Items"
}
],
"keywordFields": ["name", "party"]
}