blob: e7435a1449b3747e15642ac05be3db23977bb182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!-- Inherit Form View to Modify it -->
<record id="product_efaktur" model="ir.ui.view">
<field name="name">product.template_efaktur</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="E-Faktur">
<group>
<group>
<field name="is_efaktur_exported"/>
</group>
<group>
<field name="date_efaktur_exported"/>
</group>
</group>
</page>
</notebook>
</field>
</record>
</data>
</odoo>
|