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:
@@ -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="是否完成生产",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user