~camptocamp/account-financial-tools/add-credit-control-legal-claim-nbi

« back to all changes in this revision

Viewing changes to account_credit_control/wizard/credit_control_marker_view.xml

  • Committer: Guewen Baconnier @ Camptocamp
  • Date: 2012-10-22 11:06:14 UTC
  • Revision ID: guewen.baconnier@camptocamp.com-20121022110614-6dm0mu819ume9gl3
[IMP] renamed module to account_credit_control, wordings, removed scenarios (moved to lp:oerpscenario
(lp:c2c-addons/6.1  rev 89.1.1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<openerp>
 
2
  <data>
 
3
 
 
4
    <record id="credit_line_marker_form" model="ir.ui.view">
 
5
      <field name="name">credit.line.marker.form</field>
 
6
      <field name="model">credit.control.marker</field>
 
7
      <field name="type">form</field>
 
8
      <field name="arch" type="xml">
 
9
        <form> <!-- editable="bottom" -->
 
10
          <separator string="This wizard will mark selected  draft lines to the selected state. Done Lines will be ignored " colspan="4"/>
 
11
          <newline/>
 
12
          <field name="name"/>
 
13
          <field name="mark_all"/>
 
14
          <newline/>
 
15
          <group colspan="4">
 
16
            <button name="mark_lines" string="Mark lines" type="object" icon="gtk-execute"/>
 
17
            <button special="cancel" string="Cancel" icon='gtk-cancel'/>
 
18
          </group>
 
19
        </form>
 
20
      </field>
 
21
    </record>
 
22
 
 
23
    <!-- for menu -->
 
24
    <act_window name="Mark lines"
 
25
                res_model="credit.control.marker"
 
26
                src_model="credit.control.line"
 
27
                view_mode="form"
 
28
                target="new"
 
29
                key2="client_action_multi"
 
30
                id="open_credit_line_marker_wizard_menu_action"/>
 
31
 
 
32
    <record id="open_credit_line_marker_wizard" model="ir.actions.act_window">
 
33
      <field name="name">Mark lines</field>
 
34
      <field name="res_model">credit.control.marker</field>
 
35
      <field name="src_model">credit.control.line</field>
 
36
      <field name="view_type">form</field>
 
37
      <field name="view_mode">form</field>
 
38
      <field name="view_id" ref="credit_line_marker_form"/>
 
39
      <field name="target">new</field>
 
40
      <field name="help">Mark all lines. You can the send marked lines</field>
 
41
    </record>
 
42
 
 
43
  </data>
 
44
</openerp>