2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Remove 'single_price' field from supplier part

- Instead we will rely entirely on the SupplierPriceBreak model
This commit is contained in:
Oliver Walters
2019-05-18 15:45:32 +10:00
parent 3a0f60930e
commit a2dbdfe794
4 changed files with 44 additions and 15 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 2.2 on 2019-05-18 05:43
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('part', '0025_auto_20190515_0012'),
]
operations = [
migrations.RemoveField(
model_name='supplierpart',
name='single_price',
),
]