mirror of
https://github.com/frappe/books.git
synced 2025-02-10 07:59:03 +00:00
39 lines
744 B
JSON
39 lines
744 B
JSON
{
|
|
"name": "StockQueue",
|
|
"label": "Stock Queue",
|
|
"isSingle": false,
|
|
"isChild": false,
|
|
"naming": "autoincrement",
|
|
"fields": [
|
|
{
|
|
"fieldname": "item",
|
|
"label": "Item",
|
|
"fieldtype": "Link",
|
|
"target": "Item",
|
|
"required": true,
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "location",
|
|
"label": "Location",
|
|
"fieldtype": "Link",
|
|
"target": "Location",
|
|
"required": true,
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "queue",
|
|
"label": "Queue",
|
|
"fieldtype": "Data",
|
|
"required": true,
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "stockValue",
|
|
"label": "Stock Value",
|
|
"fieldtype": "Currency",
|
|
"readOnly": true
|
|
}
|
|
]
|
|
}
|