~uslocalizationteam/openerp-usa/US_Localization_v6

« back to all changes in this revision

Viewing changes to account_payment_cim_authdotnet/wizard/create_payment_profile_view.xml

  • Committer: npgllc
  • Date: 2012-08-30 17:51:54 UTC
  • mfrom: (76.1.1 openerp-usa)
  • Revision ID: npgllc-20120830175154-ianct01jfv012dve
Added cim module to integrate authorize CIM API with OERP

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
     <data>
 
4
 
 
5
        <record id="create_payment_profile_view" model="ir.ui.view">
 
6
             <field name="name">create.payment.profile.form</field>
 
7
             <field name="model">create.payment.profile</field>
 
8
             <field name="type">form</field>
 
9
             <field name="arch" type="xml">
 
10
                                <form string="Payment Profile">
 
11
                                        <group colspan="2" col="4">
 
12
                                                <field name="cc_number" />
 
13
                                                <field name="cc_ed_month" />
 
14
                                                <field name="cc_ed_year" />
 
15
                                                <field name="cc_verify_code" />
 
16
                                                <field name="partner_id" invisible="1" />
 
17
                                                <field name="description" />
 
18
                                                <field name="address_id" domain="[('partner_id','=',partner_id)]"/>
 
19
                                                <!--button name="button_install" states="uninstalled" string="Schedule for Installation" icon="terp-gtk-jump-to-ltr" type="object"/-->
 
20
 
 
21
                                                </group>
 
22
                                        <newline/>
 
23
                                        <group  colspan="2" col="4">
 
24
                                                <button special="cancel" string="Cancel" icon="gtk-cancel"/>
 
25
                                                <button name="create_payment_profile" string="Create Payment Profile" type="object" icon="gtk-ok" default_focus="1"/>
 
26
                                        </group>
 
27
                                </form>
 
28
                        </field>
 
29
                </record>
 
30
 
 
31
        <record id="action_create_payment_profile" model="ir.actions.act_window">
 
32
            <field name="name">Payment Profile</field>
 
33
            <field name="type">ir.actions.act_window</field>
 
34
            <field name="res_model">create.payment.profile</field>
 
35
            <field name="view_type">form</field>
 
36
            <field name="view_mode">form</field>
 
37
                        <field name="view_id" ref="create_payment_profile_view"/>
 
38
            <field name="target">new</field>
 
39
        </record>
 
40
 
 
41
        </data>
 
42
</openerp>