1
0
forked from erp-dev/erp

feat: red flush

This commit is contained in:
2026-06-12 13:57:21 +08:00
parent 80db7867f4
commit 0bcaa2db44
33 changed files with 2997 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stock', '0009_alter_stockchangedetail_unit_alter_stockfreeze_unit_and_more'),
]
operations = [
migrations.AddField(
model_name='stockchangerecord',
name='red_flush_id',
field=models.UUIDField(blank=True, db_index=True, null=True, verbose_name='红冲批次ID'),
),
]