24 lines
869 B
Python
24 lines
869 B
Python
# Generated by Django 3.2.9 on 2021-12-21 01:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('wpm', '0035_alter_operationrecorditem_field_value'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='wprouctticket',
|
|
name='decision',
|
|
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='最终决定'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='wproduct',
|
|
name='act_state',
|
|
field=models.IntegerField(choices=[(6, '待复检'), (8, '操作准备中'), (10, '操作进行中'), (20, '待检验'), (26, '待夹层检验'), (30, '已合格'), (40, '已入库'), (50, '不合格'), (60, '待成品检验'), (70, '已报废')], default=0, verbose_name='进行状态'),
|
|
),
|
|
]
|