add - whole system of inventory entry in organization quotas stat
This commit is contained in:
20
apps/warehouse/migrations/0043_inventoryentry_quota.py
Normal file
20
apps/warehouse/migrations/0043_inventoryentry_quota.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# Generated by Django 5.0 on 2025-11-19 10:14
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0096_organizationquotastats_inventory_received'),
|
||||
('warehouse', '0042_inventoryentryallocation'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='inventoryentry',
|
||||
name='quota',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='inventory_entry', to='product.quota'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user