39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# Generated by Django 3.2.12 on 2024-07-04 02:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mtm', '0032_auto_20240702_1409'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='material',
|
|
name='count_wm',
|
|
field=models.DecimalField(decimal_places=3, default=0, max_digits=14, verbose_name='车间库存'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='material',
|
|
name='count',
|
|
field=models.DecimalField(decimal_places=3, default=0, max_digits=14, verbose_name='总库存'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='material',
|
|
name='count_mb',
|
|
field=models.DecimalField(decimal_places=3, default=0, max_digits=14, verbose_name='仓库库存'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='material',
|
|
name='count_safe',
|
|
field=models.DecimalField(blank=True, decimal_places=3, max_digits=14, null=True, verbose_name='安全库存数'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='material',
|
|
name='week_esitimate_consume',
|
|
field=models.DecimalField(blank=True, decimal_places=3, max_digits=14, null=True, verbose_name='周消耗预估'),
|
|
),
|
|
]
|