mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
{
|
|
"name": "StockLedgerEntry",
|
|
"label": "Stock Ledger Entry",
|
|
"isSingle": false,
|
|
"isChild": false,
|
|
"naming": "autoincrement",
|
|
"fields": [
|
|
{
|
|
"fieldname": "date",
|
|
"label": "Date",
|
|
"fieldtype": "Datetime",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "item",
|
|
"label": "Item",
|
|
"fieldtype": "Link",
|
|
"target": "Item",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "rate",
|
|
"label": "Rate",
|
|
"fieldtype": "Currency",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "quantity",
|
|
"label": "Quantity",
|
|
"fieldtype": "Float",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "location",
|
|
"label": "Location",
|
|
"fieldtype": "Link",
|
|
"target": "Location",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "referenceName",
|
|
"label": "Ref. Name",
|
|
"fieldtype": "DynamicLink",
|
|
"references": "referenceType",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "referenceType",
|
|
"label": "Ref. Type",
|
|
"fieldtype": "Data",
|
|
"readOnly": true
|
|
},
|
|
{
|
|
"fieldname": "batch",
|
|
"label": "Batch",
|
|
"fieldtype": "Link",
|
|
"target": "Batch",
|
|
"readOnly": true
|
|
}
|
|
]
|
|
}
|