mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
release app_ai_seo
This commit is contained in:
@@ -81,7 +81,6 @@
|
|||||||
'app_odoo_customize/static/src/webclient/*.js',
|
'app_odoo_customize/static/src/webclient/*.js',
|
||||||
'app_odoo_customize/static/src/webclient/*.xml',
|
'app_odoo_customize/static/src/webclient/*.xml',
|
||||||
'app_odoo_customize/static/src/xml/res_config_edition.xml',
|
'app_odoo_customize/static/src/xml/res_config_edition.xml',
|
||||||
'app_odoo_customize/static/src/xml/web_dialog_size.xml',
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
'pre_init_hook': 'pre_init_hook',
|
'pre_init_hook': 'pre_init_hook',
|
||||||
@@ -94,7 +93,7 @@
|
|||||||
App Customize Odoo (Change Title,Language,Documentation,Quick Debug)
|
App Customize Odoo (Change Title,Language,Documentation,Quick Debug)
|
||||||
============
|
============
|
||||||
White label odoo.
|
White label odoo.
|
||||||
Support odoo 16,15,14, 13, 12, 11, 10, 9.
|
Support odoo 16,15,14,13,12,11,10,9.
|
||||||
You can config odoo, make it look like your own platform.
|
You can config odoo, make it look like your own platform.
|
||||||
1. Deletes Odoo label in footer
|
1. Deletes Odoo label in footer
|
||||||
2. Replaces "Odoo" in Windows title
|
2. Replaces "Odoo" in Windows title
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<templates xml:space="preserve">
|
|
||||||
<!--begin 旧widget模式-->
|
|
||||||
<t t-extend="web.DialogWidget">
|
|
||||||
<t t-jquery="button.btn-close" t-operation="inner">
|
|
||||||
<i class="fa fa-close" />
|
|
||||||
</t>
|
|
||||||
<t t-jquery="button.btn-close" t-operation="before">
|
|
||||||
<button type="button" class="dialog_button_extend btn btn-secondary">
|
|
||||||
<i class="fa fa-expand" />
|
|
||||||
</button>
|
|
||||||
<button type="button" class="dialog_button_restore btn btn-secondary">
|
|
||||||
<i class="fa fa-compress" />
|
|
||||||
</button>
|
|
||||||
</t>
|
|
||||||
</t>
|
|
||||||
<!--end 旧widget模式-->
|
|
||||||
|
|
||||||
<t t-inherit="web.ActionDialog.header" t-inherit-mode="extension" owl="1">
|
|
||||||
<xpath expr="//button[hasclass('btn-close')]" position="before">
|
|
||||||
<ExpandButton getsize="getSize" setsize="setSize" t-if="!isFullscreen" />
|
|
||||||
</xpath>
|
|
||||||
</t>
|
|
||||||
|
|
||||||
<t t-inherit="web.Dialog.header" t-inherit-mode="extension" owl="1">
|
|
||||||
<xpath expr="//button[hasclass('btn-close')]" position="before">
|
|
||||||
<ExpandButton
|
|
||||||
getsize="getSize"
|
|
||||||
setsize="setSize"
|
|
||||||
t-if="!isFullscreen and getSize and setSize"
|
|
||||||
/>
|
|
||||||
</xpath>
|
|
||||||
</t>
|
|
||||||
|
|
||||||
<t t-inherit="web.SelectCreateDialog" t-inherit-mode="extension" owl="1">
|
|
||||||
<xpath expr="//Dialog" position="attributes">
|
|
||||||
<attribute name="size">props.size</attribute>
|
|
||||||
</xpath>
|
|
||||||
</t>
|
|
||||||
<!--扩展按键-->
|
|
||||||
<t t-name="app_odoo_customize.ExpandButton" owl="1">
|
|
||||||
<button
|
|
||||||
t-if="props.getsize() == 'dialog_full_screen'"
|
|
||||||
type="button"
|
|
||||||
class="btn btn-secondary dialog_button_extend"
|
|
||||||
t-on-click="dialog_button_restore"
|
|
||||||
>
|
|
||||||
<i class="fa fa-compress" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
t-if="props.getsize() != 'dialog_full_screen'"
|
|
||||||
type="button"
|
|
||||||
class="btn btn-secondary dialog_button_restore"
|
|
||||||
t-on-click="dialog_button_extend"
|
|
||||||
>
|
|
||||||
<i class="fa fa-expand" />
|
|
||||||
</button>
|
|
||||||
</t>
|
|
||||||
</templates>
|
|
||||||
Reference in New Issue
Block a user