mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Improved partner matching and added some logging for the testing phase. Added menu item Connectors->Opencart-Products to find and fix mapping easily. Allow deleting `product.template` even with bindings so that you could re-make the binding.
15 lines
545 B
XML
15 lines
545 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<record id="product_template_only_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">product.template.product.form.inherit</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='barcode']" position="after">
|
|
<field name="opencart_sku"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo> |