forked from erp-dev/erp
feat: mission replied calling task
This commit is contained in:
18
shipment/migrations/0022_shipment_rejected_sales_item_ids.py
Normal file
18
shipment/migrations/0022_shipment_rejected_sales_item_ids.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.8 on 2026-04-17 00:00
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('shipment', '0021_geo_coordinates'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='shipment',
|
||||
name='rejected_sales_item_ids',
|
||||
field=models.JSONField(blank=True, default=list, help_text='仅用于审计,记录出货单驳回前所绑定的销售品ID列表', verbose_name='驳回前销售品ID快照'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user