InvenTree/InvenTree/company/fixtures/price_breaks.yaml
Oliver Walters 4dff18e4a6 Remove common_currency model entirely
- A lot of views / pages / etc needed to be updated too
- Now uses django-money fields entirely
- Create a manual rate exchange backend (needs more work!)
2020-11-11 00:21:06 +11:00

54 lines
811 B
YAML

# Price breaks for supplier parts
# Price breaks for ACME0001
- model: company.supplierpricebreak
pk: 1
fields:
part: 1
quantity: 1
price: 10
- model: company.supplierpricebreak
pk: 2
fields:
part: 1
quantity: 5
price: 7.50
- model: company.supplierpricebreak
pk: 3
fields:
part: 1
quantity: 25
price: 3.50
# Price breaks for ACME0002
- model: company.supplierpricebreak
pk: 4
fields:
part: 2
quantity: 5
price: 7.00
- model: company.supplierpricebreak
pk: 5
fields:
part: 2
quantity: 50
price: 1.25
# Price breaks for ZERGLPHS
- model: company.supplierpricebreak
pk: 6
fields:
part: 4
quantity: 25
price: 8
- model: company.supplierpricebreak
pk: 7
fields:
part: 4
quantity: 100
price: 1.25