1
0
forked from erp-dev/erp

feat: support pre_sales_order convert to sales_order api

This commit is contained in:
2026-02-02 15:58:29 +08:00
parent 2572c5aab4
commit fb93582b06
13 changed files with 379 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('business', '0025_allocationrecord'),
]
operations = [
migrations.AddField(
model_name='salesorder',
name='from_pre_sales_order_id',
field=models.BigIntegerField(blank=True, null=True, verbose_name='来源预销售单ID'),
),
]