- fusion_claims: separated field service logic, updated controllers/views - fusion_tasks: updated task views and map integration - fusion_authorizer_portal: added page 11 signing, schedule booking, migrations - fusion_shipping: new standalone shipping module (Canada Post, FedEx, DHL, Purolator) - fusion_ltc_management: new standalone LTC management module
18 lines
655 B
XML
18 lines
655 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Add LTC Repair fields to Sale Order form -->
|
|
<record id="view_order_form_ltc" model="ir.ui.view">
|
|
<field name="name">sale.order.form.ltc</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='partner_id']" position="after">
|
|
<field name="x_fc_ltc_repair_id" invisible="not x_fc_is_ltc_repair_sale"/>
|
|
<field name="x_fc_is_ltc_repair_sale" invisible="1"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|