add pos sale type to quota
This commit is contained in:
18
apps/product/migrations/0077_quota_pos_sale_type.py
Normal file
18
apps/product/migrations/0077_quota_pos_sale_type.py
Normal 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user