1
0
forked from erp-dev/erp

feat: settlement lineup

This commit is contained in:
2026-03-09 22:40:02 +08:00
parent 86f5dab32b
commit 663276288e
24 changed files with 1730 additions and 33 deletions

View File

@@ -0,0 +1,21 @@
# Generated by Django 5.2.8 on 2026-03-05 06:25
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('basic_info', '0025_customer_uniq_customer_merchant_name'),
('printing', '0032_alter_printingorder_outgoing_date'),
('stateflow', '0023_remove_statelogparameterrecord_stfl_paramrec_params_gin'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AddIndex(
model_name='plateorder',
index=models.Index(fields=['merchant', 'plate_date'], name='idx_plateord_merch_pltdt'),
),
]