Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(309)

Delta Between Two Patch Sets: bom.xml

Issue 4306055: New production module (Closed)
Left Patch Set: Update to tip and add workflow Created 13 years ago
Right Patch Set: To be sure Created 12 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « bom.py ('k') | configuration.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <!-- This file is part of Tryton. The COPYRIGHT file at the top level of 2 <!-- This file is part of Tryton. The COPYRIGHT file at the top level of
3 this repository contains the full copyright notices and license terms. --> 3 this repository contains the full copyright notices and license terms. -->
4 <tryton> 4 <tryton>
5 <data> 5 <data>
6 <record model="ir.ui.view" id="bom_view_list"> 6 <record model="ir.ui.view" id="bom_view_list">
7 <field name="model">production.bom</field> 7 <field name="model">production.bom</field>
8 <field name="type">tree</field> 8 <field name="type">tree</field>
9 <field name="arch" type="xml"> 9 <field name="arch" type="xml">
10 <![CDATA[ 10 <![CDATA[
11 <tree string="BOM's"> 11 <tree string="BOMs">
12 <field name="name"/> 12 <field name="name"/>
13 <field name="active"/> 13 <field name="active"/>
14 </tree> 14 </tree>
15 ]]> 15 ]]>
16 </field> 16 </field>
17 </record> 17 </record>
18 18
19 <record model="ir.ui.view" id="bom_view_form"> 19 <record model="ir.ui.view" id="bom_view_form">
20 <field name="model">production.bom</field> 20 <field name="model">production.bom</field>
21 <field name="type">form</field> 21 <field name="type">form</field>
22 <field name="arch" type="xml"> 22 <field name="arch" type="xml">
23 <![CDATA[ 23 <![CDATA[
24 <form string="BOM"> 24 <form string="BOM">
25 <label name="name"/> 25 <label name="name"/>
26 <field name="name"/> 26 <field name="name"/>
27 <label name="active"/> 27 <label name="active"/>
28 <field name="active"/> 28 <field name="active"/>
29 <notebook> 29 <notebook>
30 <page string="Lines" id="lines" col="2"> 30 <page string="Lines" id="lines" col="2">
31 <field name="inputs"/> 31 <field name="inputs"/>
32 <field name="outputs"/> 32 <field name="outputs"/>
33 </page> 33 </page>
34 </notebook> 34 </notebook>
35 </form> 35 </form>
36 ]]> 36 ]]>
37 </field> 37 </field>
38 </record> 38 </record>
39 39
40 <record model="ir.action.act_window" id="act_bom_list"> 40 <record model="ir.action.act_window" id="act_bom_list">
41 <field name="name">BOM's</field> 41 <field name="name">BOMs</field>
42 <field name="res_model">production.bom</field> 42 <field name="res_model">production.bom</field>
43 </record> 43 </record>
44 <record model="ir.action.act_window.view" id="act_bom_list_view1"> 44 <record model="ir.action.act_window.view" id="act_bom_list_view1">
45 <field name="sequence" eval="10"/> 45 <field name="sequence" eval="10"/>
46 <field name="view" ref="bom_view_list"/> 46 <field name="view" ref="bom_view_list"/>
47 <field name="act_window" ref="act_bom_list"/> 47 <field name="act_window" ref="act_bom_list"/>
48 </record> 48 </record>
49 <record model="ir.action.act_window.view" id="act_bom_list_view2"> 49 <record model="ir.action.act_window.view" id="act_bom_list_view2">
50 <field name="sequence" eval="20"/> 50 <field name="sequence" eval="20"/>
51 <field name="view" ref="bom_view_form"/> 51 <field name="view" ref="bom_view_form"/>
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 </record> 231 </record>
232 <record model="ir.action.keyword" 232 <record model="ir.action.keyword"
233 id="act_bom_tree_open_keyword1"> 233 id="act_bom_tree_open_keyword1">
234 <field name="keyword">form_relate</field> 234 <field name="keyword">form_relate</field>
235 <field name="model">product.product,-1</field> 235 <field name="model">product.product,-1</field>
236 <field name="action" ref="wizard_bom_tree_open"/> 236 <field name="action" ref="wizard_bom_tree_open"/>
237 </record> 237 </record>
238 238
239 </data> 239 </data>
240 </tryton> 240 </tryton>
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b