forked from erp-dev/erp
feat: shipment patch
This commit is contained in:
26
shipment/migrations/0011_alter_shipment_status_choices.py
Normal file
26
shipment/migrations/0011_alter_shipment_status_choices.py
Normal file
@@ -0,0 +1,26 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("shipment", "0010_salesitem_merchant_shipment_area_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="shipment",
|
||||
name="status",
|
||||
field=models.IntegerField(
|
||||
choices=[
|
||||
(1, "草稿(未发布)"),
|
||||
(2, "已发布"),
|
||||
(3, "已取消"),
|
||||
(4, "已驳回"),
|
||||
(5, "已审核"),
|
||||
],
|
||||
default=1,
|
||||
verbose_name="状态",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user