in so_custom.py :
class SaleOrder(models.Model):
_inherit = 'sale.order'
workorder_ids = fields.One2many(comodel_name='mrp.workorder', inverse_name='sale_id', string="Workorder List")
manufacture_order_ids = fields.One2many(comodel_name='mrp.production', inverse_name='sale_id', string="Manufacture Order List")
is_customer_approve_online = fields.Boolean(related='workorder_ids.checklist_is_customer_approve_online')
how to adding for 'is_customer_approve_online' field, with the condition 'checklist_is_customer_approve_online' is true and workorder_ids.name != "Proofing" (I want excepting the workorder_list for the 'name' is "Proofing)