2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/schemas/app/inventory/InventorySettings.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
1.6 KiB
JSON
Raw Normal View History

2022-11-18 08:44:29 +00:00
{
"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",
2023-03-01 07:54:49 +00:00
"required": true,
"section": "Default"
2022-11-18 08:44:29 +00:00
},
2022-11-21 07:15:57 +00:00
{
"fieldname": "defaultLocation",
"label": "Default Location",
"fieldtype": "Link",
"target": "Location",
2023-03-01 07:54:49 +00:00
"create": true,
"section": "Default"
2022-11-21 07:15:57 +00:00
},
2022-11-18 08:44:29 +00:00
{
"fieldname": "stockInHand",
"label": "Stock In Hand Acc.",
"fieldtype": "Link",
2023-03-01 07:54:49 +00:00
"target": "Account",
"section": "Accounts"
2022-11-18 08:44:29 +00:00
},
{
"fieldname": "stockReceivedButNotBilled",
"label": "Stock Received But Not Billed Acc.",
"fieldtype": "Link",
2023-03-01 07:54:49 +00:00
"target": "Account",
"section": "Accounts"
},
{
"fieldname": "costOfGoodsSold",
2022-12-01 08:31:23 +00:00
"label": "Cost Of Goods Sold Acc.",
"fieldtype": "Link",
2023-03-01 07:54:49 +00:00
"target": "Account",
"section": "Accounts"
2023-01-16 05:31:12 +00:00
},
{
"fieldname": "enableBarcodes",
"label": "Enable Barcodes",
2023-03-01 07:54:49 +00:00
"fieldtype": "Check",
"section": "Feature Flags"
},
{
"fieldname": "enableBatches",
"label": "Enable Batches",
2023-03-01 07:54:49 +00:00
"fieldtype": "Check",
"section": "Feature Flags"
},
{
"fieldname": "enableUomConversions",
"label": "Enable UOM Conversion",
2023-03-01 07:54:49 +00:00
"fieldtype": "Check",
"section": "Feature Flags"
2022-11-18 08:44:29 +00:00
}
]
}