File: sale.xml

package info (click to toggle)
tryton-modules-product-kit 7.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 580 kB
  • sloc: python: 1,467; xml: 124; makefile: 11; sh: 3
file content (26 lines) | stat: -rw-r--r-- 996 bytes parent folder | download | duplicates (3)
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"?>
<!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
    <data depends="sale">

        <record model="ir.ui.view" id="sale_line_view_form">
            <field name="model">sale.line</field>
            <field name="inherit" ref="sale.sale_line_view_form"/>
            <field name="name">sale_line_form</field>
        </record>

        <record model="ir.ui.view" id="sale_line_component_view_list">
            <field name="model">sale.line.component</field>
            <field name="type">tree</field>
            <field name="name">sale_line_component_list</field>
        </record>

        <record model="ir.ui.view" id="sale_line_component_view_form">
            <field name="model">sale.line.component</field>
            <field name="type">form</field>
            <field name="name">sale_line_component_form</field>
        </record>

    </data>
</tryton>