mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
feat: invoice returns schema
This commit is contained in:
parent
387688cebb
commit
3199121432
@ -86,6 +86,13 @@
|
|||||||
"default": false,
|
"default": false,
|
||||||
"section": "Features"
|
"section": "Features"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "enableInvoiceReturns",
|
||||||
|
"label": "Enable Invoice Returns",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"default": false,
|
||||||
|
"section": "Features"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "enableFormCustomization",
|
"fieldname": "enableFormCustomization",
|
||||||
"label": "Enable Form Customization",
|
"label": "Enable Form Customization",
|
||||||
|
@ -181,10 +181,21 @@
|
|||||||
"fieldtype": "Attachment",
|
"fieldtype": "Attachment",
|
||||||
"section": "References"
|
"section": "References"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "isReturned",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"hidden": true,
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"abstract": true,
|
"abstract": true,
|
||||||
"fieldname": "backReference",
|
"fieldname": "backReference",
|
||||||
"section": "References"
|
"section": "References"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"abstract": true,
|
||||||
|
"fieldname": "returnAgainst",
|
||||||
|
"section": "References"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keywordFields": ["name", "party"]
|
"keywordFields": ["name", "party"]
|
||||||
|
@ -54,6 +54,13 @@
|
|||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"readOnly": true,
|
"readOnly": true,
|
||||||
"section": "Outstanding"
|
"section": "Outstanding"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "returnAgainst",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"target": "PurchaseInvoice",
|
||||||
|
"label": "Return Against",
|
||||||
|
"section": "References"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keywordFields": ["name", "party"]
|
"keywordFields": ["name", "party"]
|
||||||
|
@ -54,6 +54,13 @@
|
|||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"readOnly": true,
|
"readOnly": true,
|
||||||
"section": "Outstanding"
|
"section": "Outstanding"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "returnAgainst",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"target": "SalesInvoice",
|
||||||
|
"label": "Return Against",
|
||||||
|
"section": "References"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keywordFields": ["name", "party"]
|
"keywordFields": ["name", "party"]
|
||||||
|
Loading…
Reference in New Issue
Block a user