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

11
shipment/signals.py Normal file
View File

@@ -0,0 +1,11 @@
"""
Shipment domain signals.
"""
from django.dispatch import Signal
# Fired when a Shipment is created via business service.
# Payload:
# - instance: Shipment
# - created_by: Django User (may be None)
shipment_created = Signal()