wherehouse: change inventory list serializer

This commit is contained in:
behruz-dev
2025-11-10 15:54:30 +05:00
parent 94d14d548e
commit e96475c81d
6 changed files with 54 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.4 on 2025-11-10 15:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('wherehouse', '0020_alter_inventory_price_alter_inventory_unit_price'),
]
operations = [
migrations.AddField(
model_name='inventory',
name='received_currency',
field=models.CharField(blank=True, max_length=3, null=True),
),
]