forked from osbzr/gooderp_addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_theme_config_settings_view.xml
106 lines (104 loc) · 4.88 KB
/
app_theme_config_settings_view.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
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
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_app_theme_config_settings" model="ir.ui.view">
<field name="name">App Odoo Customize Settings</field>
<field name="model">app.theme.config.settings</field>
<field name="arch" type="xml">
<form string="odooApp Customize Settings" class="oe_form_configuration">
<header>
<button string="Apply" type="object" name="execute" class="oe_highlight"/>
<button string="Cancel" type="object" name="cancel" class="oe_link" special="cancel"/>
</header>
<separator string="White Label Setting"/>
<group string="System Name">
<label for="app_system_name"/>
<div>
<field name="app_system_name"/>
</div>
<label string="Online Support"/>
<div>
<a href="http://www.sunpop.cn" target="_blank">Visit our website for more apps and Support. http://www.sunpop.cn</a>
</div>
</group>
<group string="User Menu">
<label string="Item to Show"/>
<div name="user_menu_show_hide">
<div>
<field name="app_show_lang"/>
<label for="app_show_lang"/>
</div>
<div>
<field name="app_show_debug"/>
<label for="app_show_debug"/>
</div>
<div>
<field name="app_show_documentation"/>
<label for="app_show_documentation"/>
</div>
<div>
<field name="app_show_documentation_dev"/>
<label for="app_show_documentation_dev"/>
</div>
<div>
<field name="app_show_support"/>
<label for="app_show_support"/>
</div>
<div>
<field name="app_show_account"/>
<label for="app_show_account"/>
</div>
<div invisible="1">
<field name="app_show_enterprise"/>
<label for="app_show_enterprise"/>
</div>
<div invisible="1">
<field name="app_show_share"/>
<label for="app_show_share"/>
</div>
<div>
<field name="app_show_poweredby"/>
<label for="app_show_poweredby"/>
</div>
</div>
</group>
<group string="User Menu Content">
<label for="app_documentation_url"/>
<div>
<field name="app_documentation_url"/>
</div>
<label for="app_documentation_dev_url"/>
<div>
<field name="app_documentation_dev_url"/>
</div>
<label for="app_support_url"/>
<div>
<field name="app_support_url"/>
</div>
<label for="app_account_title"/>
<div>
<field name="app_account_title"/>
</div>
<label for="app_account_url"/>
<div>
<field name="app_account_url"/>
</div>
</group>
</form>
</field>
</record>
<record id="action_app_theme_config" model="ir.actions.act_window">
<field name="name">odoo Customize</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">app.theme.config.settings</field>
<field name="view_mode">form</field>
<field name="target">inline</field>
</record>
<menuitem
id="menu_app_theme_config"
parent="base.menu_custom"
sequence="1"
action="action_app_theme_config"
groups="base.group_system"/>
</data>
</openerp>