fix: 修改订单状态显示

This commit is contained in:
caoqianming 2023-10-20 09:25:15 +08:00
parent 3fd0347837
commit 47895ac109
1 changed files with 18 additions and 0 deletions

View File

@ -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='订单状态'),
),
]