From e6705ab76244701f15adbe075137cbe2a3e038fa Mon Sep 17 00:00:00 2001 From: AjmalCybro Date: Tue, 1 Jan 2019 15:39:11 +0530 Subject: [PATCH] [ADD]Initial Commit --- {odoo_debrand => odoo-debrand}/README.rst | 0 odoo-debrand/__init__.py | 3 + .../__manifest__.py | 6 +- .../controllers/__init__.py | 0 .../controllers/controllers.py | 2 +- .../doc/changelog.rst | 0 .../models/__init__.py | 0 .../models/models.py | 0 .../security/ir.model.access.csv | 0 .../static/description/about.png | Bin .../static/description/banner.jpg | Bin .../static/description/cybro_logo.png | Bin .../cybrosys-odoo-debranding-1.jpg | Bin .../cybrosys-odoo-debranding-2.jpg | Bin .../cybrosys-odoo-debranding-3.jpg | Bin .../cybrosys-odoo-debranding-4.jpg | Bin .../cybrosys-odoo-debranding-5.jpg | Bin .../cybrosys-odoo-debranding-6.jpg | Bin .../cybrosys-odoo-debranding-7.jpg | Bin .../static/description/icon.png | Bin .../static/description/index.html | 69 +++++++++--------- .../static/src/js/title.js | 0 .../static/src/xml/base.xml | 0 .../views/database_manager_extend.html | 0 .../views/views.xml | 2 +- odoo_debrand/__init__.py | 24 ------ 26 files changed, 44 insertions(+), 62 deletions(-) rename {odoo_debrand => odoo-debrand}/README.rst (100%) create mode 100644 odoo-debrand/__init__.py rename {odoo_debrand => odoo-debrand}/__manifest__.py (92%) rename {odoo_debrand => odoo-debrand}/controllers/__init__.py (100%) rename {odoo_debrand => odoo-debrand}/controllers/controllers.py (98%) rename {odoo_debrand => odoo-debrand}/doc/changelog.rst (100%) rename {odoo_debrand => odoo-debrand}/models/__init__.py (100%) rename {odoo_debrand => odoo-debrand}/models/models.py (100%) rename {odoo_debrand => odoo-debrand}/security/ir.model.access.csv (100%) rename {odoo_debrand => odoo-debrand}/static/description/about.png (100%) rename {odoo_debrand => odoo-debrand}/static/description/banner.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybro_logo.png (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-1.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-2.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-3.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-4.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-5.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-6.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/cybrosys-odoo-debranding-7.jpg (100%) rename {odoo_debrand => odoo-debrand}/static/description/icon.png (100%) rename {odoo_debrand => odoo-debrand}/static/description/index.html (93%) rename {odoo_debrand => odoo-debrand}/static/src/js/title.js (100%) rename {odoo_debrand => odoo-debrand}/static/src/xml/base.xml (100%) rename {odoo_debrand => odoo-debrand}/views/database_manager_extend.html (100%) rename {odoo_debrand => odoo-debrand}/views/views.xml (99%) delete mode 100644 odoo_debrand/__init__.py diff --git a/odoo_debrand/README.rst b/odoo-debrand/README.rst similarity index 100% rename from odoo_debrand/README.rst rename to odoo-debrand/README.rst diff --git a/odoo-debrand/__init__.py b/odoo-debrand/__init__.py new file mode 100644 index 000000000..9e5827f90 --- /dev/null +++ b/odoo-debrand/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +from . import controllers +from . import models diff --git a/odoo_debrand/__manifest__.py b/odoo-debrand/__manifest__.py similarity index 92% rename from odoo_debrand/__manifest__.py rename to odoo-debrand/__manifest__.py index 01c258748..62306e0bd 100644 --- a/odoo_debrand/__manifest__.py +++ b/odoo-debrand/__manifest__.py @@ -3,7 +3,7 @@ # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2017-TODAY Cybrosys Technologies(). -# Author: Tintuk Tomin() +# Author: Hilar AK() # you can modify it under the terms of the GNU LESSER # GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # @@ -22,12 +22,12 @@ ############################################################################## { 'name': "Odoo Debranding", - 'version': "11.0.1.0.0", + 'version': "11.0.3.0", 'summary': """Debrand Odoo""", 'description': """Debrand Odoo""", 'author': "Cybrosys Techno Solutions", 'company': "Cybrosys Techno Solutions", - 'website': "https://www.cybrosys.com/", + 'website': "https://cybrosys.com/", 'category': 'Tools', 'depends': ['base', 'im_livechat', 'website'], 'data': [ diff --git a/odoo_debrand/controllers/__init__.py b/odoo-debrand/controllers/__init__.py similarity index 100% rename from odoo_debrand/controllers/__init__.py rename to odoo-debrand/controllers/__init__.py diff --git a/odoo_debrand/controllers/controllers.py b/odoo-debrand/controllers/controllers.py similarity index 98% rename from odoo_debrand/controllers/controllers.py rename to odoo-debrand/controllers/controllers.py index a9c588dba..2bfed6aad 100644 --- a/odoo_debrand/controllers/controllers.py +++ b/odoo-debrand/controllers/controllers.py @@ -16,7 +16,7 @@ if hasattr(sys, 'frozen'): path = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', 'views')) loader = jinja2.FileSystemLoader(path) else: - loader = jinja2.PackageLoader('odoo.addons.odoo_debrand', "views") + loader = jinja2.PackageLoader('odoo.addons.odoo-debrand', "views") env = main.jinja2.Environment(loader=loader, autoescape=True) env.filters["json"] = json.dumps db_monodb = http.db_monodb diff --git a/odoo_debrand/doc/changelog.rst b/odoo-debrand/doc/changelog.rst similarity index 100% rename from odoo_debrand/doc/changelog.rst rename to odoo-debrand/doc/changelog.rst diff --git a/odoo_debrand/models/__init__.py b/odoo-debrand/models/__init__.py similarity index 100% rename from odoo_debrand/models/__init__.py rename to odoo-debrand/models/__init__.py diff --git a/odoo_debrand/models/models.py b/odoo-debrand/models/models.py similarity index 100% rename from odoo_debrand/models/models.py rename to odoo-debrand/models/models.py diff --git a/odoo_debrand/security/ir.model.access.csv b/odoo-debrand/security/ir.model.access.csv similarity index 100% rename from odoo_debrand/security/ir.model.access.csv rename to odoo-debrand/security/ir.model.access.csv diff --git a/odoo_debrand/static/description/about.png b/odoo-debrand/static/description/about.png similarity index 100% rename from odoo_debrand/static/description/about.png rename to odoo-debrand/static/description/about.png diff --git a/odoo_debrand/static/description/banner.jpg b/odoo-debrand/static/description/banner.jpg similarity index 100% rename from odoo_debrand/static/description/banner.jpg rename to odoo-debrand/static/description/banner.jpg diff --git a/odoo_debrand/static/description/cybro_logo.png b/odoo-debrand/static/description/cybro_logo.png similarity index 100% rename from odoo_debrand/static/description/cybro_logo.png rename to odoo-debrand/static/description/cybro_logo.png diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-1.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-1.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-1.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-1.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-2.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-2.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-2.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-2.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-3.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-3.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-3.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-3.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-4.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-4.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-4.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-4.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-5.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-5.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-5.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-5.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-6.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-6.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-6.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-6.jpg diff --git a/odoo_debrand/static/description/cybrosys-odoo-debranding-7.jpg b/odoo-debrand/static/description/cybrosys-odoo-debranding-7.jpg similarity index 100% rename from odoo_debrand/static/description/cybrosys-odoo-debranding-7.jpg rename to odoo-debrand/static/description/cybrosys-odoo-debranding-7.jpg diff --git a/odoo_debrand/static/description/icon.png b/odoo-debrand/static/description/icon.png similarity index 100% rename from odoo_debrand/static/description/icon.png rename to odoo-debrand/static/description/icon.png diff --git a/odoo_debrand/static/description/index.html b/odoo-debrand/static/description/index.html similarity index 93% rename from odoo_debrand/static/description/index.html rename to odoo-debrand/static/description/index.html index 097563154..8761f0032 100644 --- a/odoo_debrand/static/description/index.html +++ b/odoo-debrand/static/description/index.html @@ -161,56 +161,54 @@
+

- Odoo Customization + Odoo
Customization

+
+

- Odoo Implementation + Odoo
Implementation

+
+

- Odoo Integration + Odoo
Integration

+
+

- Odoo Support + Odoo
Support

+
+

- Hire Odoo Developers + Hire
Odoo Developers

- +
@@ -222,11 +220,10 @@
+
@@ -237,13 +234,13 @@ Easily procure and sell your products.
+
+
@@ -254,13 +251,13 @@ Plan, track and schedule your operations.
+
+
@@ -271,13 +268,14 @@ Run your bar or restaurant methodical.
+
+
@@ -288,13 +286,14 @@ Easy configuring and convivial selling.
+
+
@@ -305,13 +304,14 @@ Mobile friendly, awe-inspiring product pages.
+
+
@@ -322,13 +322,14 @@ An all-inclusive hotel management application.
+
+
@@ -339,13 +340,14 @@ A Collaborative platform for educational management.
+
+
@@ -356,6 +358,7 @@ Keep track of services and invoice accordingly.
+
diff --git a/odoo_debrand/static/src/js/title.js b/odoo-debrand/static/src/js/title.js similarity index 100% rename from odoo_debrand/static/src/js/title.js rename to odoo-debrand/static/src/js/title.js diff --git a/odoo_debrand/static/src/xml/base.xml b/odoo-debrand/static/src/xml/base.xml similarity index 100% rename from odoo_debrand/static/src/xml/base.xml rename to odoo-debrand/static/src/xml/base.xml diff --git a/odoo_debrand/views/database_manager_extend.html b/odoo-debrand/views/database_manager_extend.html similarity index 100% rename from odoo_debrand/views/database_manager_extend.html rename to odoo-debrand/views/database_manager_extend.html diff --git a/odoo_debrand/views/views.xml b/odoo-debrand/views/views.xml similarity index 99% rename from odoo_debrand/views/views.xml rename to odoo-debrand/views/views.xml index 2bf9749a9..0d963e271 100644 --- a/odoo_debrand/views/views.xml +++ b/odoo-debrand/views/views.xml @@ -150,7 +150,7 @@