1
0
forked from erp-dev/erp

feat: celery_beat

This commit is contained in:
2025-12-08 18:37:41 +08:00
parent e95e61f3ae
commit fc18f71615
16 changed files with 120 additions and 4856 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.8 on 2025-12-08 10:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stock', '0007_transferorder'),
]
operations = [
migrations.AlterField(
model_name='stockchangerecord',
name='source_type',
field=models.IntegerField(choices=[(1, '采购'), (2, '销退'), (3, '调入'), (4, '盘盈'), (5, '合并'), (6, '销售'), (7, '采购退货'), (8, '调出'), (9, '盘亏'), (10, '拆卷'), (11, '红冲')], verbose_name='变动来源'),
),
]