2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-08 04:40:57 +00:00

Updates for purchase order line items

- Display list of line items
- Add a form to create a new line item
This commit is contained in:
Oliver Walters
2019-06-05 20:59:30 +10:00
parent e199ed2281
commit be6b1ae2f8
9 changed files with 274 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2 on 2019-06-05 10:56
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('company', '0005_auto_20190525_2356'),
('order', '0005_purchaseorderlineitem_part'),
]
operations = [
migrations.AlterUniqueTogether(
name='purchaseorderlineitem',
unique_together={('order', 'part')},
),
]