2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Improve the 'creation date' for order

- Automatically set on first save
This commit is contained in:
Oliver Walters
2019-06-17 19:44:36 +10:00
parent 477ac68aa0
commit 78bfc0b6a8
2 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.2 on 2019-06-17 09:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('order', '0011_auto_20190615_1928'),
]
operations = [
migrations.AlterField(
model_name='purchaseorder',
name='creation_date',
field=models.DateField(blank=True, null=True),
),
]