changes
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
{
|
||||
'name': 'Fusion Plating — Certificates',
|
||||
'version': '19.0.7.7.0',
|
||||
'version': '19.0.7.8.0',
|
||||
'category': 'Manufacturing/Plating',
|
||||
'summary': 'Certificate registry for CoC, thickness reports, and quality documents.',
|
||||
'description': """
|
||||
|
||||
@@ -594,8 +594,41 @@ class FpCertificate(models.Model):
|
||||
_logger.warning(
|
||||
'Cert %s: PDF render failed: %s', rec.name, e,
|
||||
)
|
||||
# Back-fill the CoC attachment onto the linked delivery
|
||||
# if one exists already. Job._fp_create_delivery handles
|
||||
# the create-time case (cert issued before delivery
|
||||
# spawned); this handles the inverse (delivery spawned
|
||||
# first, cert issued later). Best-effort.
|
||||
try:
|
||||
rec._fp_sync_coc_to_delivery()
|
||||
except Exception as e:
|
||||
_logger.warning(
|
||||
'Cert %s: CoC->delivery sync failed: %s',
|
||||
rec.name, e,
|
||||
)
|
||||
rec.message_post(body=_('Certificate issued.'))
|
||||
|
||||
def _fp_sync_coc_to_delivery(self):
|
||||
"""Push this CoC's attachment onto its job's delivery so the
|
||||
shipping crew sees the CoC ready to print without hunting for
|
||||
the cert. Only acts on `coc` certs with an attachment_id;
|
||||
delivery field must exist and be empty (don't overwrite an
|
||||
operator's manual choice).
|
||||
"""
|
||||
self.ensure_one()
|
||||
if self.certificate_type != 'coc' or not self.attachment_id:
|
||||
return
|
||||
job = self.x_fc_job_id if 'x_fc_job_id' in self._fields else False
|
||||
if not job or not job.delivery_id:
|
||||
return
|
||||
delivery = job.delivery_id.sudo()
|
||||
if 'coc_attachment_id' not in delivery._fields:
|
||||
return
|
||||
if delivery.coc_attachment_id:
|
||||
# Operator already picked one; don't overwrite.
|
||||
return
|
||||
delivery.coc_attachment_id = self.attachment_id.id
|
||||
|
||||
def _fp_render_and_attach_pdf(self):
|
||||
"""Render the CoC PDF via the bound report action, OPTIONALLY
|
||||
merge the Fischerscope thickness report PDF (uploaded by the
|
||||
|
||||
Reference in New Issue
Block a user