1
0
forked from erp-dev/erp

feat: all the business models supported human_id now but it wont change statements api. Added new field 'order_quantity' into sales_order model (integer, allow null).

This commit is contained in:
2026-01-30 19:31:02 +08:00
parent cebaf85f6f
commit b7178f72b2
9 changed files with 127 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.7 on 2026-01-30 10:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('business', '0019_alter_salesorderitem_quantity_of_rolls'),
]
operations = [
migrations.AddField(
model_name='salesorder',
name='order_quantity',
field=models.IntegerField(blank=True, null=True, verbose_name='下单数量'),
),
]