~zaber/openobject-addons/stable_5.0-extra-addons

« back to all changes in this revision

Viewing changes to product_tax_include/view/company.xml

  • Committer: Sebastien LANGE
  • Date: 2009-12-05 14:46:45 UTC
  • Revision ID: sebastien.lange@syleam.fr-20091205144645-nbobn4vybt531fyp
[ADD] product_tax_include : module for view price with taxes includes or excluded, depend configuration of company configuration

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
        #    product_tax_include module for OpenERP, Add new field for tax include in product
 
7
        #    Copyright (C) 2009 SYLEAM Info Services ([http://www.Syleam.fr/]) Sebastien LANGE
 
8
        #
 
9
        #    This file is a part of product_tax_include
 
10
        #
 
11
        #    product_tax_include is free software: you can redistribute it and/or modify
 
12
        #    it under the terms of the GNU General Public License as published by
 
13
        #    the Free Software Foundation, either version 3 of the License, or
 
14
        #    (at your option) any later version.
 
15
        #
 
16
        #    product_tax_include is distributed in the hope that it will be useful,
 
17
        #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
        #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
        #    GNU General Public License for more details.
 
20
        #
 
21
        #    You should have received a copy of the GNU General Public License
 
22
        #    along with this program.  If not, see [http://www.gnu.org/licenses/].
 
23
        #
 
24
        ##############################################################################
 
25
 
 
26
        <record id="product_company" model="ir.ui.view">
 
27
            <field name="name">res.company.product.config</field>
 
28
            <field name="model">res.company</field>
 
29
            <field name="type">form</field>
 
30
            <field name="inherit_id" ref="base.view_company_form"/>
 
31
            <field name="arch" type="xml">
 
32
                <page string="Configuration" position="inside">
 
33
                    <separator string="Product" colspan="4"/>
 
34
                    <field name="product_prices_tax_include"/>
 
35
                    <newline/>
 
36
                </page>
 
37
            </field>
 
38
        </record>
 
39
 
 
40
    </data>
 
41
</openerp>