File: stock.xml

package info (click to toggle)
tryton-modules-production 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 792 kB
  • sloc: python: 1,209; xml: 802; makefile: 6; sh: 3
file content (37 lines) | stat: -rw-r--r-- 1,361 bytes parent folder | download | duplicates (4)
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
<?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>

        <record model="ir.ui.view" id="location_view_form">
            <field name="model">stock.location</field>
            <field name="inherit" ref="stock.location_view_form"/>
            <field name="name">location_form</field>
        </record>

        <record model="ir.model.access" id="access_move_group_production">
            <field name="model" search="[('model', '=', 'stock.move')]"/>
            <field name="group" ref="group_production"/>
            <field name="perm_read" eval="True"/>
            <field name="perm_write" eval="True"/>
            <field name="perm_create" eval="True"/>
            <field name="perm_delete" eval="True"/>
        </record>

    </data>
    <data noupdate="1">

        <!-- Default locations -->
        <record model="stock.location" id="location_production">
            <field name="name">Production</field>
            <field name="code">PROD</field>
            <field name="type">production</field>
        </record>

        <record model="stock.location" id="stock.location_warehouse">
            <field name="production_location" ref="location_production"/>
        </record>

    </data>
</tryton>