diff --git a/app_event_superbar/__init__.py b/app_event_superbar/__init__.py new file mode 100644 index 00000000..cf79d668 --- /dev/null +++ b/app_event_superbar/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +# please comment follow for produce +from . import models +from . import controllers + +# hook form install and uninstall + +from .hooks import pre_init_hook +from .hooks import post_init_hook +from .hooks import uninstall_hook \ No newline at end of file diff --git a/app_event_superbar/__manifest__.py b/app_event_superbar/__manifest__.py new file mode 100644 index 00000000..af10c2fc --- /dev/null +++ b/app_event_superbar/__manifest__.py @@ -0,0 +1,110 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-06 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# Copyright (C) 2009~2023 odooAi.cn + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +############################################################################## +# Copyright (C) 2009-TODAY odooAi.cn Ltd. https://www.odooai.cn +# Author: Ivan Deng,300883@qq.com +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# See . +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +############################################################################## + +{ + 'name': 'App Event browse by stage and starting date', + 'version': '16.23.11.28', + 'author': 'odooai.cn', + 'category': 'Base', + 'website': 'https://www.odooai.cn', + 'live_test_url': 'https://demo.odooapp.cn', + 'license': 'OPL-1', + 'sequence': 2, + 'price': 0.00, + 'currency': 'EUR', + 'images': ['static/description/banner.gif'], + 'summary': ''' + Odoo module template. module sample with 170+ widget list. Clone this sample to your name to quick create your odoo addons. + Developer reference guides, Developer Tutorials. + Sample manifest, .py, .xml views and data. report, action, menu.. + ''', + 'description': ''' + Just Rename the sample app to your name to quick create new module. + All file follow odoo rule with comments. + Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition + Odoo Developr rule from here + https://www.odooai.cn/documentation/16.0/developer.html + 1. A full Sample module app of odoo addons. All the code, views, data ,banner, icon and description sample follow the odoo rule. + 2. Sample manifest file. Including structure and name and description etc, all field sample. Security xml and csv file for role group access rule. + Sample icon, banner, index.html, install/uninstall hooks. + Follow most odoo rule follow + https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html + 3. Sample .py models file, for new model and inherit model + 4. Sample .xml views file for models, with list, kanban, form, search + 5. Sample controllers file for website data publish and api developer. including how inherit odoo portal home. + 6. Sample report design file. .py file with how sql define. .xml file for graph and pivot. + 7. Sample action and menu file. Root menu and menu group and action menu. + 8. Ui misc sample. Alert like info and special field setup. + 9. Odoo Widget sample. 170+ widget list document and Frequently Used Sample. + 10. Quick access odoo developer Tutorials online. Document online for chinese and english. Fast visit in China. + 11. Multi-language Support. Multi-Company Support. + 12. Support Odoo 17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition. + 13. Full Open Source. + ========== 中文说明 + 1. 一个完整的odoo插件模块应用程序示例,所有代码、视图和数据都遵循odoo规则 + 2. Manifest示例清单文件。包括结构、名称和描述等所有字段样例。安全xml和csv文件用于控制访问规则 + 全部遵循odoo规则 https://www.odooai.cn/documentation/16.0/zh_CN/developer/reference/backend/module.html#reference-module-manifest + 3. .py 示例文件,包括新模型和继承模型的示例 + 4. .xml 示例视图文件,包括列表、看板、表单、搜索等 + 5. controllers 示例文件,用于门户网站对外数据发布及 api 接口开发。例子包含对 odoo portal 门户的继承处理 + 6. report报告设计文件示例。包括如何定义 sql 生成视图的.py文件,用于 graph 和 pivot的.xml文件。 + 7. action 动作 和 menu 菜单文件示例。 + 8. 特殊Ui样例,包括 Alert role 信息及特殊字段展现设置。 + 9. Odoo Widget 使用指导,包括 170+小部件清单,常用 widget 用法。 + 10.快速访问在线Odoo开发人员教程。 + 11. 多语言支持,多公司支持 + 12. Odoo 17,16,15,14,13,12, 企业版,社区版,在线SaaS.sh版,等全版本支持 + 13. 代码完全开源 + ''', + 'depends': [ + 'event', + 'app_web_superbar_pro' + ], + 'data': [ + # please add your file + # please comment follow on ur produce odoo + # 'security/app_security.xml', + # 'security/ir.model.access.csv', + 'views/event_event_views.xml', + # 'views/menu_views.xml', + # 'views/website_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + # 'app_/static/src/scss/style.scss', + ], + 'web.assets_backend': [ + # 'app_/static/src/js/*.js', + ], + }, + 'demo': [ + # 'views/website_templates.xml', + ], + # 'pre_init_hook': 'pre_init_hook', + # 'post_init_hook': 'post_init_hook', + # 'uninstall_hook': 'uninstall_hook', + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/app_event_superbar/controllers/__init__.py b/app_event_superbar/controllers/__init__.py new file mode 100644 index 00000000..83118e09 --- /dev/null +++ b/app_event_superbar/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +# from . import main diff --git a/app_event_superbar/controllers/main.py b/app_event_superbar/controllers/main.py new file mode 100644 index 00000000..af262e56 --- /dev/null +++ b/app_event_superbar/controllers/main.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- + +from odoo import http +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class appCustomerPortal(CustomerPortal): + + # Controler sample + @http.route('/my/webclient/locale/', type='http', auth="none") + def index(self, **kw): + return "Hello, world" + + @http.route('/default/default/objects/', auth='public') + def list(self, **kw): + return http.request.render('default.listing', { + 'root': '/default/default', + 'objects': http.request.env['default.default'].search([]), + }) + + @http.route('/default/default/objects//', auth='public') + def object(self, obj, **kw): + return http.request.render('default.object', { + 'object': obj + }) diff --git a/app_event_superbar/hooks.py b/app_event_superbar/hooks.py new file mode 100644 index 00000000..59dde92e --- /dev/null +++ b/app_event_superbar/hooks.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +# Created on 2023-10-06 +# author: 欧度智能,https://www.odooai.cn +# email: 300883@qq.com +# Copyright (C) 2009~2023 odooAi.cn + +# Odoo16在线用户手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/index.html + +# Odoo16在线开发者手册(长期更新) +# https://www.odooai.cn/documentation/16.0/zh_CN/developer.html + +from odoo import api, SUPERUSER_ID, _ + + +def pre_init_hook(cr): + pass + # cr.execute("") + + +def post_init_hook(cr, registry): + pass + # cr.execute("") + + +def uninstall_hook(cr, registry): + pass + # cr.execute("") diff --git a/app_event_superbar/i18n/README.txt b/app_event_superbar/i18n/README.txt new file mode 100644 index 00000000..222b84cd --- /dev/null +++ b/app_event_superbar/i18n/README.txt @@ -0,0 +1,2 @@ +Please follow this tutorial for more guides: +https://www.odoo.com/documentation/master/developer/misc/i18n/translations.html \ No newline at end of file diff --git a/app_event_superbar/i18n/zh_CN.po b/app_event_superbar/i18n/zh_CN.po new file mode 100644 index 00000000..dbf751e2 --- /dev/null +++ b/app_event_superbar/i18n/zh_CN.po @@ -0,0 +1,15 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e-20231124\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-11-28 09:01+0000\n" +"PO-Revision-Date: 2023-11-28 09:01+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/app_event_superbar/models/__init__.py b/app_event_superbar/models/__init__.py new file mode 100644 index 00000000..13aa9e49 --- /dev/null +++ b/app_event_superbar/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of odooAi.cn. See LICENSE file for full copyright and licensing details. + +# from . import product_template diff --git a/app_event_superbar/models/product_template.py b/app_event_superbar/models/product_template.py new file mode 100644 index 00000000..136045ab --- /dev/null +++ b/app_event_superbar/models/product_template.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- + +############################################################################## +# Copyright (C) 2009-TODAY odooai.cn Ltd. https://www.odooai.cn +# Author: Ivan Deng,300883@qq.com +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# See . +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. + +# Create on 2023-10-06 +############################################################################## + +from odoo import models, fields, api, _ +from odoo.tools.translate import html_translate + +import logging +_logger = logging.getLogger(__name__) + +# Template for model inherit +class ProductTemplate(models.Model): + _inherit = 'product.template' + + short_name = fields.Char(string='Short Name', translate=True, readonly=False, copy=True) \ No newline at end of file diff --git a/app_event_superbar/security/app_security.xml b/app_event_superbar/security/app_security.xml new file mode 100644 index 00000000..99b55a21 --- /dev/null +++ b/app_event_superbar/security/app_security.xml @@ -0,0 +1,41 @@ + + + + + + App... + Helps you manage your ... + 8 + + + + + App User + + + The user will be able to ... + + + + + App Admin + + + The user will be able to config ... + + + + + + + + + + + + + + + + + diff --git a/app_event_superbar/security/ir.model.access.csv b/app_event_superbar/security/ir.model.access.csv new file mode 100644 index 00000000..58262d44 --- /dev/null +++ b/app_event_superbar/security/ir.model.access.csv @@ -0,0 +1 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink \ No newline at end of file diff --git a/app_event_superbar/static/description/banner.gif b/app_event_superbar/static/description/banner.gif new file mode 100644 index 00000000..43754cbf Binary files /dev/null and b/app_event_superbar/static/description/banner.gif differ diff --git a/app_event_superbar/static/description/banner.png b/app_event_superbar/static/description/banner.png new file mode 100644 index 00000000..7716c0fe Binary files /dev/null and b/app_event_superbar/static/description/banner.png differ diff --git a/app_event_superbar/static/description/banner1.png b/app_event_superbar/static/description/banner1.png new file mode 100644 index 00000000..91d450c8 Binary files /dev/null and b/app_event_superbar/static/description/banner1.png differ diff --git a/app_event_superbar/static/description/demo1.jpg b/app_event_superbar/static/description/demo1.jpg new file mode 100644 index 00000000..539bb88b Binary files /dev/null and b/app_event_superbar/static/description/demo1.jpg differ diff --git a/app_event_superbar/static/description/demo10.jpg b/app_event_superbar/static/description/demo10.jpg new file mode 100644 index 00000000..07d5f6c6 Binary files /dev/null and b/app_event_superbar/static/description/demo10.jpg differ diff --git a/app_event_superbar/static/description/demo2.jpg b/app_event_superbar/static/description/demo2.jpg new file mode 100644 index 00000000..a54add90 Binary files /dev/null and b/app_event_superbar/static/description/demo2.jpg differ diff --git a/app_event_superbar/static/description/demo3.jpg b/app_event_superbar/static/description/demo3.jpg new file mode 100644 index 00000000..ffbc61e4 Binary files /dev/null and b/app_event_superbar/static/description/demo3.jpg differ diff --git a/app_event_superbar/static/description/demo_controler.jpg b/app_event_superbar/static/description/demo_controler.jpg new file mode 100644 index 00000000..a77011d7 Binary files /dev/null and b/app_event_superbar/static/description/demo_controler.jpg differ diff --git a/app_event_superbar/static/description/demo_form.jpg b/app_event_superbar/static/description/demo_form.jpg new file mode 100644 index 00000000..883d5460 Binary files /dev/null and b/app_event_superbar/static/description/demo_form.jpg differ diff --git a/app_event_superbar/static/description/demo_graph.jpg b/app_event_superbar/static/description/demo_graph.jpg new file mode 100644 index 00000000..5e506e95 Binary files /dev/null and b/app_event_superbar/static/description/demo_graph.jpg differ diff --git a/app_event_superbar/static/description/demo_kanban.jpg b/app_event_superbar/static/description/demo_kanban.jpg new file mode 100644 index 00000000..46470d09 Binary files /dev/null and b/app_event_superbar/static/description/demo_kanban.jpg differ diff --git a/app_event_superbar/static/description/demo_list.jpg b/app_event_superbar/static/description/demo_list.jpg new file mode 100644 index 00000000..6b5c1e34 Binary files /dev/null and b/app_event_superbar/static/description/demo_list.jpg differ diff --git a/app_event_superbar/static/description/demo_menu.jpg b/app_event_superbar/static/description/demo_menu.jpg new file mode 100644 index 00000000..666a29f4 Binary files /dev/null and b/app_event_superbar/static/description/demo_menu.jpg differ diff --git a/app_event_superbar/static/description/demo_pivot.jpg b/app_event_superbar/static/description/demo_pivot.jpg new file mode 100644 index 00000000..b546dc6b Binary files /dev/null and b/app_event_superbar/static/description/demo_pivot.jpg differ diff --git a/app_event_superbar/static/description/demo_report.jpg b/app_event_superbar/static/description/demo_report.jpg new file mode 100644 index 00000000..72af4d57 Binary files /dev/null and b/app_event_superbar/static/description/demo_report.jpg differ diff --git a/app_event_superbar/static/description/demo_search.jpg b/app_event_superbar/static/description/demo_search.jpg new file mode 100644 index 00000000..06efe6fa Binary files /dev/null and b/app_event_superbar/static/description/demo_search.jpg differ diff --git a/app_event_superbar/static/description/demo_ui.jpg b/app_event_superbar/static/description/demo_ui.jpg new file mode 100644 index 00000000..fb493811 Binary files /dev/null and b/app_event_superbar/static/description/demo_ui.jpg differ diff --git a/app_event_superbar/static/description/demo_use.jpg b/app_event_superbar/static/description/demo_use.jpg new file mode 100644 index 00000000..5a72fc16 Binary files /dev/null and b/app_event_superbar/static/description/demo_use.jpg differ diff --git a/app_event_superbar/static/description/demo_widget_list.jpg b/app_event_superbar/static/description/demo_widget_list.jpg new file mode 100644 index 00000000..bb2d794a Binary files /dev/null and b/app_event_superbar/static/description/demo_widget_list.jpg differ diff --git a/app_event_superbar/static/description/demo_widget_use.jpg b/app_event_superbar/static/description/demo_widget_use.jpg new file mode 100644 index 00000000..7f141573 Binary files /dev/null and b/app_event_superbar/static/description/demo_widget_use.jpg differ diff --git a/app_event_superbar/static/description/icon.png b/app_event_superbar/static/description/icon.png new file mode 100644 index 00000000..adc7a494 Binary files /dev/null and b/app_event_superbar/static/description/icon.png differ diff --git a/app_event_superbar/static/description/index.html b/app_event_superbar/static/description/index.html new file mode 100644 index 00000000..9f0e81d5 --- /dev/null +++ b/app_event_superbar/static/description/index.html @@ -0,0 +1,427 @@ + + + + +
+

Odoo Module Template. App sample with widget.

+

Odoo开发规范模板,Widget清单与使用样例

+

Sample Description of app. video and brief and detail demo snap and text

+
+ + + +
+
+

Just Clone this sample to your name to quick create your odoo addons

+

- Sample Local Video. Change to your video -

+
+ + +
+ +
+ +
+
+

- Sample Video on youtube remote. Change to your video -

+
+
+
+
+ +
+


+
+
+ Click above Play. or go + Youtube Video of odoo Advance Search Superbar +
+
+

Demo Gif Animation if you can not get video

+ +
+
+ + + +
+

- Features -

+
+
+
+
+
+
+
+ 1 +
+

+ A full Sample module app of odoo addons. +

+

All the code, views, data ,banner, icon and description sample follow the odoo rule.

+
+
+
+ 2 +
+

+ Sample manifest file. +

+

Including structure and name and description etc, all field sample. Security xml and csv file for role group access rule. Follow most odoo rule follow

+

https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html

+
+
+
+ 3 +
+

+ Sample .py models file +

+

for new model and inherit model

+
+
+
+ 4 +
+

+ Sample .xml views file for models +

+

Sample xml views file for models, with list, kanban, form, search

+
+
+
+ 5 +
+

+ Sample controllers file +

+

for website data publish and api developer. including how inherit odoo portal home

+
+
+
+
+
+
+
+ 6 +
+

+ Sample report design file +

+

.py file with how sql define. .xml file for graph and pivot

+
+
+
+ 7 +
+

+ Sample action and menu file +

+

Root menu and menu group and action menu

+
+
+
+ 8 +
+

+ Ui misc sample +

+

Alert like info and special field setup.

+
+
+
+ 9 +
+

+ Odoo Widget sample +

+

170+ widget list document and Frequently Used Sample.

+
+
+
+ 10 +
+

+ Quick access odoo developer Tutorials online. +

+

Document online for chinese and english. Fast visit in China.

+
+
+
+ 11 +
+

+ Full Open Source.Multi-language Support. Multi-Company Support +

+

Support Odoo 16,15,14,13,12, Enterprise and Community and odoo.sh Edition.

+

代码完全开源,多语言支持,多公司支持。Odoo 16,15,14,13,12, 企业版,社区版,在线SaaS.sh版,等全版本支持

+
+
+
+
+
+
+
+ + + + +
+
+

So Easy to navigator and search any data.

+

+
+ +
+
+
+ + +
+
+

- Feature Guide -

+
+
+
+
+
+ +
+
+

+ A full Sample module app of odoo addons. +

+

All the code, views, data ,banner, icon and description sample follow the odoo rule.

+
+ +
+
+
+

+ Sample manifest file. +

+

Including structure and name and description etc, all field sample.

+

Security xml and csv file for role group access rule. + Sample icon, banner, index.html, install/uninstall hooks. + Follow most odoo rule follow

+

https://www.odooai.cn/documentation/16.0/contributing/development/coding_guidelines.html

+
+ +
+
+
+

+ Sample .py models file, for new model and inherit model +

+

Please comment the inherit .py file of product_template.py in produce odoo.

+
+ +
+
+
+

+ Sample .xml views file for models, with list, kanban, form, search +

+

List

+
+ +
+

Kanban

+
+ +
+

Form

+
+ +
+

Search

+
+ +
+
+
+

+ Sample controllers file for website data publish and api developer +

+

including how inherit odoo portal home.

+
+ +
+
+
+

+ Sample report design file. +

+

.py file with how sql define.

+
+ +
+

.xml file for graph and pivot.

+
+ +
+
+ +
+
+
+

+ Sample action and menu file. +

+

Root menu and menu group and action menu.

+
+ +
+
+
+

+ Ui misc sample. Alert like info and special field setup. +

+
+ +
+
+
+

+ Odoo Widget sample. +

+

170+ widget list document

+
+ +
+

Frequently Used Sample.

+
+ +
+
+
+

+ Quick access odoo developer Tutorials online. +

+

Click alert info to visit. Document online for chinese and english. Fast visit in China.

+
+ +
+
+
+
+
+
+ + + + + + +
+

- How to setup and use -

+

This app need no extra module. The price already included

+
+
+
+

+ 1. Buy and Install +

+

+ 2. Clone this sample and rename to your module name to quick create your odoo addons. +

+

3. Check the demo we create

+
+
+ +
+
+

4. More information in our FAQ

+
+ https://www.odooai.cn/faq +
+
+
+ + + + + + +
+
+
+

Technical Help & Support

+
+
+
+

+ For any type of technical help & support requests, Feel free to contact us

+ + odoo@china.com +

+ Via QQ: 300883 (App user would not get QQ or any other IM support. Only for odoo project customize.)

+ + 300883@qq.com +
+
+

Visit our website for more support.

+

https://www.odooai.cn

+
+
+
+
+ + \ No newline at end of file diff --git a/app_event_superbar/static/description/odoo17.mp4 b/app_event_superbar/static/description/odoo17.mp4 new file mode 100644 index 00000000..35f410e4 Binary files /dev/null and b/app_event_superbar/static/description/odoo17.mp4 differ diff --git a/app_event_superbar/static/description/qr.png b/app_event_superbar/static/description/qr.png new file mode 100644 index 00000000..959f15c0 Binary files /dev/null and b/app_event_superbar/static/description/qr.png differ diff --git a/app_event_superbar/static/img/icon_odooai.png b/app_event_superbar/static/img/icon_odooai.png new file mode 100644 index 00000000..a022f8d0 Binary files /dev/null and b/app_event_superbar/static/img/icon_odooai.png differ diff --git a/app_event_superbar/static/img/icon_odooapp.png b/app_event_superbar/static/img/icon_odooapp.png new file mode 100644 index 00000000..775a12ee Binary files /dev/null and b/app_event_superbar/static/img/icon_odooapp.png differ diff --git a/app_event_superbar/static/img/logo_odooai.png b/app_event_superbar/static/img/logo_odooai.png new file mode 100644 index 00000000..482f2a50 Binary files /dev/null and b/app_event_superbar/static/img/logo_odooai.png differ diff --git a/app_event_superbar/static/src/js/odooai.cn b/app_event_superbar/static/src/js/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/static/src/scss/odooai.cn b/app_event_superbar/static/src/scss/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/static/src/scss/style.scss b/app_event_superbar/static/src/scss/style.scss new file mode 100644 index 00000000..02d893e9 --- /dev/null +++ b/app_event_superbar/static/src/scss/style.scss @@ -0,0 +1,18 @@ +// scss sample, 样例navbar在下方的特殊处理 +.o_web_client { + //userMenu + .o_burger_menu { + width: 80%; + .o_burger_menu_topbar { + height: var(--o-navbar-height); + } + &.flex-column { + flex-direction: column-reverse!important; + } + .oi:before, .fa:before, .dropdown-toggle { + font-size: 2em; + line-height: var(--o-navbar-height); + } + } +} + diff --git a/app_event_superbar/static/src/xml/odooai.cn b/app_event_superbar/static/src/xml/odooai.cn new file mode 100644 index 00000000..e69de29b diff --git a/app_event_superbar/views/event_event_views.xml b/app_event_superbar/views/event_event_views.xml new file mode 100644 index 00000000..f2f28775 --- /dev/null +++ b/app_event_superbar/views/event_event_views.xml @@ -0,0 +1,17 @@ + + + + + app.event.event.search.superbar + event.event + + + + + + + + + + + diff --git a/app_event_superbar/views/menu_views.xml b/app_event_superbar/views/menu_views.xml new file mode 100644 index 00000000..042514a6 --- /dev/null +++ b/app_event_superbar/views/menu_views.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app_event_superbar/views/website_templates.xml b/app_event_superbar/views/website_templates.xml new file mode 100644 index 00000000..d733945b --- /dev/null +++ b/app_event_superbar/views/website_templates.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app_event_superbar/wizard/odooai.cn b/app_event_superbar/wizard/odooai.cn new file mode 100644 index 00000000..e69de29b