fix - update page access - v3

This commit is contained in:
2025-12-01 10:25:27 +03:30
parent f1cc524863
commit f66067778c
5 changed files with 144 additions and 37 deletions

View File

@@ -0,0 +1,25 @@
# Generated by Django 5.0 on 2025-12-01 06:53
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('product', '0099_organizationquotastats_free_sale_balance_and_more'),
('warehouse', '0045_inventoryquotasaleitem_quota_stat'),
]
operations = [
migrations.AddField(
model_name='extrasale',
name='quota_stat',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='extra_sales', to='product.organizationquotastats'),
),
migrations.AddField(
model_name='quotapresaleitem',
name='quota_stat',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='pre_sales', to='product.organizationquotastats'),
),
]