2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-19 18:05:54 +00:00
Files
.github
InvenTree
InvenTree
barcodes
build
common
company
img_source
label
locale
order
fixtures
migrations
0001_initial.py
0002_auto_20190604_2224.py
0003_auto_20190604_2226.py
0004_purchaseorder_status.py
0005_purchaseorderlineitem_part.py
0006_auto_20190605_2056.py
0007_auto_20190605_2138.py
0008_auto_20190605_2140.py
0009_auto_20190606_2133.py
0010_purchaseorderlineitem_notes.py
0011_auto_20190615_1928.py
0012_auto_20190617_1943.py
0013_auto_20191118_2323.py
0014_auto_20191118_2328.py
0015_auto_20200201_2346.py
0016_purchaseorderattachment.py
0017_auto_20200331_1000.py
0018_auto_20200406_0151.py
0019_purchaseorder_supplier_reference.py
0020_auto_20200420_0940.py
0021_auto_20200420_1010.py
0022_salesorderlineitem_part.py
0023_auto_20200420_2309.py
0024_salesorderallocation.py
0025_auto_20200422_0222.py
0026_auto_20200422_0224.py
0027_auto_20200422_0236.py
0028_auto_20200423_0956.py
0029_auto_20200423_1042.py
0030_auto_20200426_0551.py
0031_auto_20200426_0612.py
0032_auto_20200427_0044.py
0033_auto_20200512_1033.py
0034_auto_20200512_1054.py
0035_auto_20200513_0016.py
0036_auto_20200831_0912.py
0037_auto_20201110_0911.py
0038_auto_20201112_1737.py
0039_auto_20201112_2203.py
0040_salesorder_target_date.py
0041_auto_20210114_1728.py
0042_auto_20210310_1619.py
0043_auto_20210330_0013.py
0044_auto_20210404_2016.py
0045_auto_20210504_1946.py
__init__.py
templates
__init__.py
admin.py
api.py
apps.py
forms.py
models.py
serializers.py
test_api.py
test_sales_order.py
test_views.py
tests.py
urls.py
views.py
part
plugins
report
script
stock
templates
users
config_template.yaml
gunicorn.conf.py
manage.py
ci
deploy
docker
images
.coveragerc
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE
README.md
crowdin.yml
requirements.txt
setup.cfg
tasks.py
InvenTree/InvenTree/order/migrations/0029_auto_20200423_1042.py
Oliver Walters e384f9e94c Order date adjustment
Sales order now has a "shipment date"
2020-04-23 20:42:59 +10:00

31 lines
892 B
Python

# Generated by Django 3.0.5 on 2020-04-23 10:42
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('order', '0028_auto_20200423_0956'),
]
operations = [
migrations.RenameField(
model_name='salesorder',
old_name='complete_date',
new_name='shipment_date',
),
migrations.RemoveField(
model_name='salesorder',
name='issue_date',
),
migrations.AddField(
model_name='salesorder',
name='shipped_by',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL),
),
]