From f9a0bf822e2e54c3e8f01cdecc42cd38c3dbfcc8 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 2 Apr 2022 09:49:32 +1100 Subject: [PATCH] Add more fixture data - Stock items for part 100 (Bob) --- InvenTree/part/fixtures/bom.yaml | 8 +++ InvenTree/part/fixtures/part.yaml | 12 ++++ InvenTree/stock/fixtures/stock.yaml | 101 ++++++++++++++++++++++++++++ 3 files changed, 121 insertions(+) diff --git a/InvenTree/part/fixtures/bom.yaml b/InvenTree/part/fixtures/bom.yaml index e879b8381f..facb7e76ae 100644 --- a/InvenTree/part/fixtures/bom.yaml +++ b/InvenTree/part/fixtures/bom.yaml @@ -38,3 +38,11 @@ part: 1 sub_part: 5 quantity: 3 + +# Make "Assembly" from "Bob" +- model: part.bomitem + pk: 6 + fields: + part: 101 + sub_part: 100 + quantity: 10 diff --git a/InvenTree/part/fixtures/part.yaml b/InvenTree/part/fixtures/part.yaml index 77e808fd7f..d0a2d949b1 100644 --- a/InvenTree/part/fixtures/part.yaml +++ b/InvenTree/part/fixtures/part.yaml @@ -108,6 +108,18 @@ lft: 0 rght: 0 +- model: part.part + pk: 101 + fields: + name: 'Assembly' + description: 'A high level assembly' + salable: true + active: True + tree_id: 0 + level: 0 + lft: 0 + rght: 0 + # A 'template' part - model: part.part pk: 10000 diff --git a/InvenTree/stock/fixtures/stock.yaml b/InvenTree/stock/fixtures/stock.yaml index 0f44828d8e..2fd5b7eb92 100644 --- a/InvenTree/stock/fixtures/stock.yaml +++ b/InvenTree/stock/fixtures/stock.yaml @@ -251,3 +251,104 @@ rght: 0 expiry_date: "1990-10-10" status: 70 + +# Multiple stock items for "Bob" (PK 100) +- model: stock.stockitem + pk: 1000 + fields: + part: 100 + location: 1 + quantity: 10 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1001 + fields: + part: 100 + location: 1 + quantity: 11 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1002 + fields: + part: 100 + location: 1 + quantity: 12 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1003 + fields: + part: 100 + location: 1 + quantity: 13 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1004 + fields: + part: 100 + location: 1 + quantity: 14 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1005 + fields: + part: 100 + location: 1 + quantity: 15 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1006 + fields: + part: 100 + location: 1 + quantity: 16 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1007 + fields: + part: 100 + location: 7 + quantity: 17 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + +- model: stock.stockitem + pk: 1008 + fields: + part: 100 + location: 7 + quantity: 18 + level: 0 + tree_id: 0 + lft: 0 + rght: 0 + \ No newline at end of file