1
0
forked from erp-dev/erp

feat: added wecom notify when printing_job production was completed(new status) and shipment was created

This commit is contained in:
2026-04-09 17:35:14 +08:00
parent 76ea445880
commit 646dbe7f18
27 changed files with 1122 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("printing", "0036_printing_external_fields"),
]
operations = [
migrations.AddField(
model_name="printingjob",
name="is_production_completed",
field=models.BooleanField(
default=False,
help_text="独立于流程计算状态的生产完成标记",
verbose_name="是否完成生产",
),
),
]