mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
13 lines
547 B
XML
13 lines
547 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="excep_wrong_label_type" model="exception.rule">
|
|
<field name="name">Wrong Label Type</field>
|
|
<field name="description">Please, ensure thet the correct Label Type is confirmed.</field>
|
|
<field name="sequence">50</field>
|
|
<field name="model">mrp.production</field>
|
|
<field name="code">if production.label_type == 'ORG' and any(production.po_lot_id.order_line.mapped(lambda l: l.organic_status == 'NON-ORG')): failed=True</field>
|
|
</record>
|
|
|
|
</odoo>
|