added option to expand sub-storage stocks to display all components from sub_storages

this comes in handy for assortment boxes using sub storages for each individual compartment which usually only holds a single stock
This commit is contained in:
2025-01-25 14:50:48 +01:00
parent 550e996ae7
commit 171b6b83f4
4 changed files with 38 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.3 on 2025-01-25 13:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('parts', '0012_storage_verbose_name'),
]
operations = [
migrations.AddField(
model_name='storage',
name='expand_sub_storage_stocks',
field=models.BooleanField(default=False),
),
]