24 lines
		
	
	
		
			837 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			837 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.9 on 2021-11-29 06:56
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('wpm', '0023_alter_operationmaterial_count'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='operationrecorditem',
 | 
						|
            name='field_type',
 | 
						|
            field=models.CharField(choices=[(1, '生产记录模板'), (2, '检验记录模板')], max_length=50, verbose_name='字段类型'),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='wproduct',
 | 
						|
            name='act_state',
 | 
						|
            field=models.IntegerField(choices=[(6, '待复检'), (10, '生产中'), (20, '待检验'), (30, '已合格'), (40, '库存中'), (50, '不合格'), (60, '待成品检验')], default=0, verbose_name='进行状态'),
 | 
						|
        ),
 | 
						|
    ]
 |