feat(claims): case-close audit accepts bundled pages flag
The signed-pages verification step on case close now treats the bundled flag as 'pages present', matching the ready-for-submission gate and the audit trail. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -78,7 +78,7 @@ class CaseCloseVerificationWizard(models.TransientModel):
|
||||
def _compute_document_status(self):
|
||||
for wizard in self:
|
||||
order = wizard.sale_order_id
|
||||
wizard.has_signed_pages = bool(order.x_fc_signed_pages_11_12)
|
||||
wizard.has_signed_pages = order.x_fc_has_signed_pages_11_12
|
||||
wizard.has_final_application = bool(order.x_fc_final_submitted_application)
|
||||
wizard.has_proof_of_delivery = bool(order.x_fc_proof_of_delivery)
|
||||
wizard.has_vendor_bills = len(order.x_fc_vendor_bill_ids) > 0
|
||||
|
||||
Reference in New Issue
Block a user