~syleam/syleam-modules/6.1

« back to all changes in this revision

Viewing changes to sale_minimal_price/view/res_company.xml

  • Committer: Sebastien LANGE
  • Date: 2012-11-13 21:16:25 UTC
  • Revision ID: git-v1:3f638c30fde5da87f353643c160ff304e56eba34
[IMP] Add Syleam modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<openerp>
 
3
    <data>
 
4
        ##############################################################################
 
5
        #
 
6
        #    sale_minimal_price module for OpenERP, Module to block validation of the sale order
 
7
        #    Copyright (C) 2011 SYLEAM ([http://www.syleam.fr/])
 
8
        #              Christophe CHAUVET [christophe.chauvet@syleam.fr]
 
9
        #
 
10
        #    This file is a part of sale_minimal_price
 
11
        #
 
12
        #    sale_minimal_price is free software: you can redistribute it and/or modify
 
13
        #    it under the terms of the GNU Affero General Public License as published by
 
14
        #    the Free Software Foundation, either version 3 of the License, or
 
15
        #    (at your option) any later version.
 
16
        #
 
17
        #    sale_minimal_price is distributed in the hope that it will be useful,
 
18
        #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
        #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
        #    GNU Affero General Public License for more details.
 
21
        #
 
22
        #    You should have received a copy of the GNU Affero General Public License
 
23
        #    along with this program.  If not, see [http://www.gnu.org/licenses/].
 
24
        #
 
25
        ##############################################################################
 
26
 
 
27
        <record id="view_res_company_form_sale_munimum_price_form" model="ir.ui.view">
 
28
            <field name="name">res.company.form - sale_minimal_price</field>
 
29
            <field name="model">res.company</field>
 
30
            <field name="type">form</field>
 
31
            <field name="priority" eval="26"/>
 
32
            <field name="inherit_id" ref="base.view_company_form"/>
 
33
            <field name="arch" type="xml">
 
34
 
 
35
                <xpath expr="//page[@string='Configuration']" position="inside">
 
36
                    <separator string="Minimum price rules" colspan="4"/>
 
37
                    <field name="minimum_pricelist_id" />
 
38
                    <field name="unblock_group_id"/>
 
39
                </xpath>
 
40
 
 
41
            </field>
 
42
        </record>
 
43
 
 
44
    </data>
 
45
</openerp>