2
0
mirror of https://github.com/frappe/books.git synced 2024-11-09 23:30:56 +00:00

Delete item.js

This commit is contained in:
Rushabh Mehta 2018-02-19 12:38:33 +05:30 committed by GitHub
parent 3567eb1776
commit 8c15a6829c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,45 +0,0 @@
module.exports = {
"name": "Item",
"doctype": "DocType",
"isSingle": 0,
"keywordFields": [
"name",
"description"
],
"fields": [
{
"fieldname": "name",
"label": "Item Name",
"fieldtype": "Data",
"required": 1
},
{
"fieldname": "description",
"label": "Description",
"fieldtype": "Text"
},
{
"fieldname": "unit",
"label": "Unit",
"fieldtype": "Select",
"options": [
"No",
"Kg",
"Gram",
"Hour",
"Day"
]
},
{
"fieldname": "tax",
"label": "Tax",
"fieldtype": "Link",
"target": "Tax"
},
{
"fieldname": "rate",
"label": "Rate",
"fieldtype": "Currency"
}
]
}