mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "InventorySettings",
|
|
"label": "Inventory Settings",
|
|
"isSingle": true,
|
|
"isChild": false,
|
|
"fields": [
|
|
{
|
|
"fieldname": "valuationMethod",
|
|
"label": "Valuation Method",
|
|
"fieldtype": "Select",
|
|
"options": [
|
|
{
|
|
"value": "FIFO",
|
|
"label": "FIFO"
|
|
},
|
|
{
|
|
"value": "MovingAverage",
|
|
"label": "Moving Average"
|
|
}
|
|
],
|
|
"default": "FIFO",
|
|
"required": true
|
|
},
|
|
{
|
|
"fieldname": "defaultLocation",
|
|
"label": "Default Location",
|
|
"fieldtype": "Link",
|
|
"target": "Location",
|
|
"create": true
|
|
},
|
|
{
|
|
"fieldname": "stockInHand",
|
|
"label": "Stock In Hand Acc.",
|
|
"fieldtype": "Link",
|
|
"target": "Account"
|
|
},
|
|
{
|
|
"fieldname": "stockReceivedButNotBilled",
|
|
"label": "Stock Received But Not Billed Acc.",
|
|
"fieldtype": "Link",
|
|
"target": "Account"
|
|
},
|
|
{
|
|
"fieldname": "costOfGoodsSold",
|
|
"label": "Cost Of Goods Sold",
|
|
"fieldtype": "Link",
|
|
"target": "Account"
|
|
}
|
|
]
|
|
}
|