fix: 修改订单状态显示
This commit is contained in:
parent
3fd0347837
commit
47895ac109
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 3.2.12 on 2023-10-20 01:17
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('sam', '0005_auto_20231019_1812'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='order',
|
||||||
|
name='state',
|
||||||
|
field=models.PositiveSmallIntegerField(choices=[(10, '创建中'), (20, '已提交'), (30, '进行中'), (40, '已交付')], default=10, help_text="((10, '创建中'), (20, '已提交'), (30, '进行中'), (40, '已交付'))", verbose_name='订单状态'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue