1
0
forked from erp-dev/erp
Files
erpnew/business/migrations/0030_external_statement_add_sf_zk_amount.py
2026-05-19 23:41:34 +08:00

25 lines
905 B
Python

# Generated by Django 5.2.8 on 2026-05-18 11:33
from decimal import Decimal
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('business', '0029_externalcustomerstatementorder'),
]
operations = [
migrations.AddField(
model_name='externalcustomerstatementorder',
name='sf_amount',
field=models.DecimalField(decimal_places=2, default=Decimal('0'), help_text='销售单上的现场收款(SfJinE)合计,仅 sale 类型有值', max_digits=15, verbose_name='现场收款金额'),
),
migrations.AddField(
model_name='externalcustomerstatementorder',
name='zk_amount',
field=models.DecimalField(decimal_places=2, default=Decimal('0'), help_text='该单据的折扣(ZkJinE)合计', max_digits=15, verbose_name='折扣金额'),
),
]