add pos sale type to quota

This commit is contained in:
2025-09-24 12:24:16 +03:30
parent b771e55bd9
commit 69daf8d5ef
3 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-09-24 08:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('product', '0076_incentiveplanrancher'),
]
operations = [
migrations.AddField(
model_name='quota',
name='pos_sale_type',
field=models.CharField(choices=[('weight', 'WEIGHT'), ('count', 'COUNT'), ('all', 'ALL')], default='all', max_length=25),
),
]