1
0
forked from erp-dev/erp

feat: stock module

This commit is contained in:
2025-11-04 18:04:27 +08:00
parent 9fde654e2f
commit d88bf367f8
27 changed files with 2238 additions and 561 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.7 on 2025-11-04 09:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stock', '0029_alter_inventory_quantity_and_more'),
]
operations = [
migrations.AlterField(
model_name='stocksnapshot',
name='delta',
field=models.DecimalField(decimal_places=2, max_digits=10, verbose_name='库存变动数量'),
),
]