feat: 增加箱中破不合格字段
This commit is contained in:
parent
5c0c016872
commit
0de0489272
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.12 on 2024-03-05 02:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wpm', '0039_mlog_equipments'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='mlog',
|
||||
name='count_n_xzp',
|
||||
field=models.PositiveIntegerField(default=0, verbose_name='箱中破'),
|
||||
),
|
||||
]
|
|
@ -141,6 +141,7 @@ class Mlog(CommonADModel):
|
|||
count_n_tydd = models.PositiveIntegerField('椭圆度大', default=0)
|
||||
count_n_sw = models.PositiveIntegerField('水雾', default=0)
|
||||
count_n_bhpcd = models.PositiveIntegerField('壁厚偏差大', default=0)
|
||||
count_n_xzp = models.PositiveIntegerField('箱中破', default=0)
|
||||
count_n_qt = models.PositiveIntegerField('其他', default=0)
|
||||
|
||||
handle_date = models.DateField('操作日期')
|
||||
|
|
Loading…
Reference in New Issue