Add module second_ean13

This commit is contained in:
Alexis de Lattre
2016-01-13 11:50:51 +01:00
parent f745388f37
commit 540d7cf82c
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2016 Akretion (http://www.akretion.com/)
@author Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py
-->
<openerp>
<data>
<record id="product_normal_form_view" model="ir.ui.view">
<field name="name">usability.product.template.form</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view" />
<field name="arch" type="xml">
<field name="ean13" position="after">
<field name="second_ean13"/>
</field>
</field>
</record>
</data>
</openerp>