1
0
forked from erp-dev/erp
Files
erpnew/business/migrations/0032_order_balance_before_snapshot.py
2026-06-22 22:27:28 +08:00

32 lines
1.2 KiB
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('business', '0031_red_flush_fields'),
]
operations = [
migrations.AddField(
model_name='purchaseorder',
name='balance_before_snapshot',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=15, null=True, verbose_name='创建前供应商余额快照'),
),
migrations.AddField(
model_name='salesorder',
name='balance_before_snapshot',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=15, null=True, verbose_name='创建前客户余额快照'),
),
migrations.AddField(
model_name='purchasereturnorder',
name='balance_before_snapshot',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=15, null=True, verbose_name='创建前供应商余额快照'),
),
migrations.AddField(
model_name='salesreturnorder',
name='balance_before_snapshot',
field=models.DecimalField(blank=True, decimal_places=2, max_digits=15, null=True, verbose_name='创建前客户余额快照'),
),
]