forked from OCA/sale-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sale_view.xml
26 lines (22 loc) · 828 Bytes
/
sale_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
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2013-TODAY Akretion <http://www.akretion.com>.
The licence is in the file __openerp__.py
-->
<openerp>
<data>
<!-- INHERITED VIEW FOR THE OBJECT : sale_shop -->
<record id="sale_shop_view_form" model="ir.ui.view">
<field name="name">sale_multi_journal.sale_shop.view_form</field>
<field name="model">sale.shop</field>
<field name="inherit_id" ref="sale.view_shop_form" />
<field eval="16" name="priority"/>
<field name="type">form</field>
<field name="arch" type="xml">
<field name="pricelist_id" position="after">
<field name="journal_id" />
</field>
</field>
</record>
</data>
</openerp>