forked from erp-dev/erp
feat: celery_beat
This commit is contained in:
18
stock/migrations/0008_alter_stockchangerecord_source_type.py
Normal file
18
stock/migrations/0008_alter_stockchangerecord_source_type.py
Normal 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='变动来源'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user