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
|
<?xml version="1.0"?>
<openerp>
<data>
<!--
=======================================================
SEGMENTATION VIEWS
=======================================================
-->
<record id="view_dm_campaign_proposition_segments_auto" model="ir.ui.view">
<field name="name">dm_campaign_proposition_segments_auto</field>
<field name="model">dm.campaign.proposition.segment</field>
<field name="inherit_id" ref="dm_extract.view_dm_campaign_proposition_segments_mode_inherit"/>
<field name="type">form</field>
<field name="arch" type="xml">
<field name="use_census" position="after">
<group colspan="4" col="4">
<group colspan="2" col="2">
<separator string="Automatic Extraction"/>
<field name="auto_extract"/>
</group>
<newline/>
<group attrs="{'readonly':[('auto_extract','!=',True)]}" >
<field name="extract_date_start" on_change="onchange_extract_date_start(extract_date_start, extract_delay, extract_unit_delay)"/>
<field name="extract_date_end"/>
<field name="extract_date_previous"/>
<field name="extract_date_next" on_change="onchange_extract_date_start(extract_date_start, extract_delay, extract_unit_delay)"/>
<field name="extract_delay"/>
<field name="extract_unit_delay"/>
</group>
</group>
</field>
</field>
</record>
</data>
</openerp>
|