mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
72 lines
1.4 KiB
JSON
72 lines
1.4 KiB
JSON
|
{
|
||
|
"name": "StockTransferItem",
|
||
|
"label": "Stock Transfer Item",
|
||
|
"isAbstract": true,
|
||
|
"isChild": true,
|
||
|
"fields": [
|
||
|
{
|
||
|
"fieldname": "item",
|
||
|
"label": "Item",
|
||
|
"fieldtype": "Link",
|
||
|
"target": "Item",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "location",
|
||
|
"fieldtype": "Link",
|
||
|
"target": "Location",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "quantity",
|
||
|
"label": "Quantity",
|
||
|
"fieldtype": "Float",
|
||
|
"required": true,
|
||
|
"default": 1
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "rate",
|
||
|
"label": "Rate",
|
||
|
"fieldtype": "Currency",
|
||
|
"required": true
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "amount",
|
||
|
"label": "Amount",
|
||
|
"fieldtype": "Currency",
|
||
|
"readOnly": true
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "unit",
|
||
|
"label": "Unit Type",
|
||
|
"fieldtype": "Link",
|
||
|
"target": "UOM",
|
||
|
"default": "Unit",
|
||
|
"placeholder": "Unit Type"
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "description",
|
||
|
"label": "Description",
|
||
|
"placeholder": "Item Description",
|
||
|
"fieldtype": "Text"
|
||
|
},
|
||
|
{
|
||
|
"fieldname": "hsnCode",
|
||
|
"label": "HSN/SAC",
|
||
|
"fieldtype": "Int",
|
||
|
"placeholder": "HSN/SAC Code"
|
||
|
}
|
||
|
],
|
||
|
"tableFields": ["item", "location", "quantity", "rate", "amount"],
|
||
|
"quickEditFields": [
|
||
|
"item",
|
||
|
"unit",
|
||
|
"description",
|
||
|
"hsnCode",
|
||
|
"location",
|
||
|
"quantity",
|
||
|
"rate",
|
||
|
"amount"
|
||
|
]
|
||
|
}
|