mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
47 lines
740 B
YAML
47 lines
740 B
YAML
# Create some sample stock items
|
|
|
|
# 4,000 screws in the dining room
|
|
- model: stock.stockitem
|
|
fields:
|
|
part: 1
|
|
location: 3
|
|
batch: 'B123'
|
|
quantity: 4000
|
|
|
|
# 5,000 screws in the bathroom
|
|
- model: stock.stockitem
|
|
fields:
|
|
part: 1
|
|
location: 2
|
|
quantity: 5000
|
|
|
|
# 1234 2K2 resistors in 'Drawer_1'
|
|
- model: stock.stockitem
|
|
pk: 1234
|
|
fields:
|
|
part: 3
|
|
location: 5
|
|
quantity: 1234
|
|
|
|
# Some widgets in drawer 3
|
|
- model: stock.stockitem
|
|
pk: 100
|
|
fields:
|
|
part: 25
|
|
location: 7
|
|
quantity: 10
|
|
delete_on_deplete: False
|
|
|
|
- model: stock.stockitem
|
|
pk: 101
|
|
fields:
|
|
part: 25
|
|
location: 7
|
|
quantity: 5
|
|
|
|
- model: stock.stockitem
|
|
pk: 102
|
|
fields:
|
|
part: 25
|
|
location: 7
|
|
quantity: 3 |