mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 20:15:44 +00:00
Add "supplier_reference" field to PurchaseOrder
- This is the code that the Supplier uses for the particuarl sales order
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.10 on 2020-04-15 03:31
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('order', '0018_auto_20200406_0151'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='purchaseorder',
|
||||
name='supplier_reference',
|
||||
field=models.CharField(blank=True, help_text='Supplier order reference', max_length=64),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user