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

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

30 lines
631 B
JSON
Raw Normal View History

2022-03-23 07:31:15 +00:00
{
"name": "PurchaseInvoice",
2022-03-23 08:37:00 +00:00
"label": "Purchase Invoice",
2022-09-27 09:37:11 +00:00
"extends": "Invoice",
"naming": "numberSeries",
2022-03-23 07:31:15 +00:00
"showTitle": true,
"fields": [
{
"fieldname": "numberSeries",
"label": "Number Series",
"fieldtype": "Link",
"target": "NumberSeries",
2022-05-18 16:55:24 +00:00
"create": true,
2022-03-23 07:31:15 +00:00
"required": true,
"default": "PINV-",
"section": "Default"
},
{
"fieldname": "items",
"label": "Items",
"fieldtype": "Table",
"target": "PurchaseInvoiceItem",
"required": true,
"edit": true,
"section": "Items"
2022-03-23 07:31:15 +00:00
}
],
"keywordFields": ["name", "party"]
}