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

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

113 lines
2.2 KiB
JSON
Raw Normal View History

{
"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": "transferUnit",
"label": "Transfer Unit",
"fieldtype": "Link",
"target": "UOM",
"default": "Unit",
"placeholder": "Unit"
},
{
"fieldname": "transferQuantity",
"label": "Qty. in Transfer Unit",
"fieldtype": "Float",
"default": 1,
"required": true
},
{
"fieldname": "unit",
"label": "Stock Unit",
"fieldtype": "Link",
"target": "UOM",
"default": "Unit",
"placeholder": "Unit",
"readOnly": true
},
2023-01-13 13:16:52 +00:00
{
2023-02-28 06:01:04 +00:00
"fieldname": "batch",
"label": "Batch",
2023-01-18 12:03:51 +00:00
"fieldtype": "Link",
2023-02-28 06:01:04 +00:00
"target": "Batch"
2023-01-13 13:16:52 +00:00
},
2023-04-25 07:05:10 +00:00
{
2023-05-04 10:45:12 +00:00
"fieldname": "serialNumber",
"label": "Serial Number",
2023-04-25 07:05:10 +00:00
"fieldtype": "Text"
},
{
"fieldname": "quantity",
"label": "Quantity",
"fieldtype": "Float",
"required": true,
"default": 1
},
{
"fieldname": "unitConversionFactor",
"label": "Conversion Factor",
"fieldtype": "Float",
"required": true,
"default": 1
},
{
"fieldname": "rate",
"label": "Rate",
"fieldtype": "Currency",
"required": true
},
{
"fieldname": "amount",
"label": "Amount",
"fieldtype": "Currency",
"readOnly": true
},
{
"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",
"transferQuantity",
"transferUnit",
2023-02-28 06:01:04 +00:00
"batch",
2023-05-04 10:45:12 +00:00
"serialNumber",
"quantity",
"unit",
"unitConversionFactor",
"description",
"hsnCode",
"location",
"rate",
"amount"
]
}