-
Notifications
You must be signed in to change notification settings - Fork 12
/
checkout.xml
73 lines (68 loc) · 2.96 KB
/
checkout.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of Nereid. The COPYRIGHT file at the
top level of this repository contains the full copyright notices
and license terms.
-->
<tryton>
<data>
<record model="ir.ui.view" id="payment_method_view_form">
<field name="model">nereid.website.payment_method</field>
<field name="type">form</field>
<field name="arch" type="xml">
<![CDATA[
<form string="Payment Method">
<label name="name" />
<field name="name" />
<label name="sequence" />
<field name="sequence" />
<label name="gateway" />
<field name="gateway" />
<label name="website" />
<field name="website" />
<separator colspan="4" string="Instructions" id="instructions"/>
<field name="instructions" colspan="4"/>
</form>
]]>
</field>
</record>
<record model="ir.ui.view" id="payment_method_view_tree">
<field name="model">nereid.website.payment_method</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<![CDATA[
<tree string="Payment Methods">
<field name="sequence" />
<field name="name" />
<field name="gateway" />
<field name="website" />
</tree>
]]>
</field>
</record>
<record model="ir.action.act_window" id="act_payment_method_form">
<field name="name">Payment Methods</field>
<field name="res_model">nereid.website.payment_method</field>
</record>
<record model="ir.action.act_window.view" id="act_payment_method_form_view1">
<field name="sequence" eval="10" />
<field name="view" ref="payment_method_view_tree" />
<field name="act_window" ref="act_payment_method_form" />
</record>
<record model="ir.action.act_window.view" id="act_payment_method_form_view2">
<field name="sequence" eval="20" />
<field name="view" ref="payment_method_view_form" />
<field name="act_window" ref="act_payment_method_form" />
</record>
<record id="inherit_nereid_website_checkout" model="ir.ui.view">
<field name="model">nereid.website</field>
<field name="inherit" ref="nereid.website_view_form"/>
<field name="name">website_checkout</field>
</record>
<record model="ir.ui.view" id="address_view_form">
<field name="model">party.address</field>
<field name="inherit" ref="party.address_view_form" />
<field name="name">address_form</field>
</record>
</data>
</tryton>