feat: mlog增加退火后碎字段
This commit is contained in:
parent
c8bcbc62c3
commit
5078a516d2
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.12 on 2024-04-02 07:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wpm', '0041_wmaterial_count_eweight'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='mlog',
|
||||
name='count_n_thhs',
|
||||
field=models.PositiveIntegerField(default=0, verbose_name='退火后碎'),
|
||||
),
|
||||
]
|
|
@ -143,6 +143,7 @@ class Mlog(CommonADModel):
|
|||
count_n_sw = models.PositiveIntegerField('水雾', default=0)
|
||||
count_n_bhpcd = models.PositiveIntegerField('壁厚偏差大', default=0)
|
||||
count_n_xzp = models.PositiveIntegerField('箱中破', default=0)
|
||||
count_n_thhs = models.PositiveIntegerField('退火后碎', default=0)
|
||||
count_n_qt = models.PositiveIntegerField('其他', default=0)
|
||||
|
||||
handle_date = models.DateField('操作日期')
|
||||
|
|
Loading…
Reference in New Issue