forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_invoice_view.xml
40 lines (35 loc) · 1.21 KB
/
account_invoice_view.xml
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
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!--
Stock Picking Invoice Link module for Odoo
Copyright (C) 2013-2014 Akretion (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py
-->
<record id="invoice_form" model="ir.ui.view">
<field name="name">related.pickings.account.invoice.form</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="Pickings" name="pickings">
<field name="picking_ids"/>
</page>
</notebook>
</field>
</record>
<record id="invoice_supplier_form" model="ir.ui.view">
<field name="name">related.pickings.account.invoice.supplier.form</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_supplier_form"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="Pickings" name="pickings">
<field name="picking_ids"/>
</page>
</notebook>
</field>
</record>
</data>
</openerp>