forked from erp-dev/erp
27 lines
675 B
Python
27 lines
675 B
Python
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="状态",
|
|
),
|
|
),
|
|
]
|