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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="etl_component_logger_bloc_form" model="ir.ui.view">
<field name="name">etl.component.loggerbloc.form</field>
<field name="model">etl.component</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Component">
<group col="6" colspan="4">
<field name="name" select="1" />
<field name="type_id" select="1" />
<field name="job_id" select="1" />
<field name="connector_id" select="1"/>
<field name="transformer_id"/>
</group>
<notebook colspan="4">
<page string="Transitions Detail">
<field name="trans_in_ids" nolabel="1" colspan="4" widget="one2many_list">
<tree string="Incomming Transitions">
<field name="name"/>
<field name="type"/>
<field name="source_component_id"/>
<field name="channel_source"/>
<field name="channel_destination"/>
<field name="state" />
</tree>
<form string="Incomming Transitions">
<field name="name"/>
<field name="type"/>
<separator string="Transition property" colspan="4" />
<newline />
<field name="source_component_id"/>
<field name="destination_component_id"/>
<field name="channel_source"/>
<field name="channel_destination"/>
<separator string="Status" colspan="4" />
<newline />
<field name="state"/>
<group col="2" colspan="2">
<button name="action_close_transition"
string="Close Transition" type="object" states="open" />
<button name="action_open_transition"
string="Open Transition" type="object" states="close" />
</group>
</form>
</field>
<field name="trans_out_ids" nolabel="1" colspan="4" widget="one2many_list">
<tree string="Outgoing Transitions">
<field name="name"/>
<field name="type"/>
<field name="destination_component_id"/>
<field name="channel_source"/>
<field name="channel_destination"/>
<field name="state" />
</tree>
<form string="Outgoing Transitions">
<field name="name"/>
<field name="type"/>
<separator string="Transition property" colspan="4" />
<newline />
<field name="source_component_id"/>
<field name="destination_component_id"/>
<field name="channel_source"/>
<field name="channel_destination"/>
<separator string="Status" colspan="4" />
<newline />
<field name="state"/>
<group col="2" colspan="2">
<button name="action_close_transition"
string="Close Transition" type="object" states="open" />
<button name="action_open_transition"
string="Open Transition" type="object" states="close" />
</group>
</form>
</field>
</page>
<page string="Other Information">
<field name="row_limit"/>
<field name ="encoding"/>
</page>
</notebook>
</form>
</field>
</record>
<record id="action_etl_component_logger_bloc_tree"
model="ir.actions.act_window">
<field name="name">Logger Bloc Component</field>
<field name="res_model">etl.component</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="domain">[('type_id.name','=','transform.logger_bloc')]</field>
<field name="context">{'type_id':'transform.logger_bloc'}</field>
</record>
<record id="action_etl_component_logger_bloc_from"
model="ir.actions.act_window">
<field name="res_model">etl.component</field>
<field name="view_type">form</field>
<field name="view_mode">form,tree</field>
<field name="domain">[('type_id.name','=','transform.logger_bloc')]</field>
<field name="context">{'type_id':'transform.logger_bloc'}</field>
<field name="view_id" ref="etl_component_logger_bloc_form" />
</record>
<record id="action_etl_component_logger_bloc_view1"
model="ir.actions.act_window.view">
<field eval="1" name="sequence" />
<field name="view_mode">tree</field>
<field name="view_id" ref="etl_interface.etl_component_tree" />
<field name="act_window_id" ref="action_etl_component_logger_bloc_tree" />
</record>
<record id="action_etl_component_logger_bloc_view2" model="ir.actions.act_window.view">
<field eval="2" name="sequence" />
<field name="view_mode">form</field>
<field name="view_id" ref="etl_component_logger_bloc_form" />
<field name="act_window_id" ref="action_etl_component_logger_bloc_tree" />
</record>
<menuitem name="Logger Bloc" parent="etl_interface.menu_etl_jd_c_pec_form"
action="action_etl_component_logger_bloc_tree"
id="menu_etl_jd_c_pec__logger_bloc_tree" />
</data>
</openerp>
|