Теперь сделки на странице планирования
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s

This commit is contained in:
2026-03-31 08:31:54 +03:00
parent c9ff66a36b
commit c2778d9ec8
8 changed files with 453 additions and 82 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 6.0.3 on 2026-03-31 05:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shiftflow', '0008_alter_item_date'),
]
operations = [
migrations.AddField(
model_name='deal',
name='status',
field=models.CharField(choices=[('lead', 'Зашла'), ('work', 'В работе'), ('done', 'Завершена')], default='work', max_length=10, verbose_name='Статус'),
),
]