diff --git a/pos_order_types/README.rst b/pos_order_types/README.rst deleted file mode 100644 index 7379caf1c..000000000 --- a/pos_order_types/README.rst +++ /dev/null @@ -1,44 +0,0 @@ -.. image:: https://img.shields.io/badge/license-OPL--1-red.svg - :target: https://www.odoo.com/documentation/17.0/legal/licenses.html - :alt: License: OPL-1" - -POS Order Types -=============== -Helps the salesman to specify the type of order like parcel, delivery etc. - -Company -------- -* `Cybrosys Techno Solutions `__ - -License -------- -Odoo Proprietary License v1.0 (OPL-1) -(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) - -Credits -------- -* Developer: - * Version 13: Nimisha Murali - * Version 14: Jibin James - * Version 15: Sachin T - * Version 16: Neenu Merlin Jose - * Version 17: Anjana P V, -Contact : odoo@cybrosys.com - -Contacts --------- -* Mail Contact : odoo@cybrosys.com - -Bug Tracker ------------ -Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. - -Maintainer -========== -This module is maintained by Cybrosys Technologies. - -For support and more information, please visit https://www.cybrosys.com - -Further information -=================== -HTML Description: ``__ diff --git a/pos_order_types/__init__.py b/pos_order_types/__init__.py deleted file mode 100644 index 120f3276c..000000000 --- a/pos_order_types/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from . import models diff --git a/pos_order_types/__manifest__.py b/pos_order_types/__manifest__.py deleted file mode 100644 index 39196113f..000000000 --- a/pos_order_types/__manifest__.py +++ /dev/null @@ -1,59 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -{ - 'name': "POS Order Types", - 'version': '17.0.1.0.0', - 'category': 'Point of Sale', - 'summary': """ Helps the salesman to specify the type of order like parcel - delivery etc.""", - 'description': """This module helps to choose the order types in POS - screen. You have the option to choose different order types for multiple - Point of Sale.""", - 'author': "Cybrosys Techno Solutions", - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'website': 'http://www.cybrosys.com', - 'depends': ['pos_restaurant', 'point_of_sale'], - 'data': [ - 'security/ir.model.access.csv', - 'views/delivery_type_views.xml', - 'views/pos_order_views.xml', - 'views/res_config_settings_views.xml', - ], - 'assets': { - 'point_of_sale._assets_pos': [ - 'pos_order_types/static/src/js/models.js', - 'pos_order_types/static/src/js/deliverymethod_button.js', - 'pos_order_types/static/src/js/pos_store.js', - 'pos_order_types/static/src/xml/pos_delivery_method.xml', - 'pos_order_types/static/src/xml/**/*', - ], - }, - 'images': ['static/description/banner.png'], - 'license': 'OPL-1', - 'price': 9.99, - 'currency': 'EUR', - 'installable': True, - 'auto_install': False, - 'application': False, -} diff --git a/pos_order_types/doc/RELEASE_NOTES.md b/pos_order_types/doc/RELEASE_NOTES.md deleted file mode 100644 index 7773eb100..000000000 --- a/pos_order_types/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,7 +0,0 @@ -## Module - -#### 03.07.2024 -#### Version 17.0.1.0.0 -##### ADD - -- Initial commit for POS Order Types diff --git a/pos_order_types/models/__init__.py b/pos_order_types/models/__init__.py deleted file mode 100644 index 477291df2..000000000 --- a/pos_order_types/models/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from . import delivery_types -from . import pos_session -from . import pos_order -from . import res_config_settings diff --git a/pos_order_types/models/delivery_types.py b/pos_order_types/models/delivery_types.py deleted file mode 100644 index 3ca9b8e8a..000000000 --- a/pos_order_types/models/delivery_types.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from odoo import fields, models - - -class DeliveryTypes(models.Model): - """Creating delivery type.""" - _name = 'delivery.type' - - name = fields.Char(string='Order Type', help='Name of the delivery type') diff --git a/pos_order_types/models/pos_order.py b/pos_order_types/models/pos_order.py deleted file mode 100644 index 3a6a741bc..000000000 --- a/pos_order_types/models/pos_order.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from odoo import api, fields, models - - -class PosOrder(models.Model): - """Extends the POS Order model to include custom delivery type.""" - _inherit = 'pos.order' - - delivery_type = fields.Many2one('delivery.type', - string='Order Type', - help='Selected order type', readonly=True) - - @api.model - def _order_fields(self, ui_order): - """Extends the base method to include the delivery type field in - the order creation process.""" - order_fields = super(PosOrder, self)._order_fields(ui_order) - if ui_order['delivery_method']: - order_fields['delivery_type'] = ui_order['delivery_method']['id'] - return order_fields diff --git a/pos_order_types/models/pos_session.py b/pos_order_types/models/pos_session.py deleted file mode 100644 index 9bb80ff05..000000000 --- a/pos_order_types/models/pos_session.py +++ /dev/null @@ -1,56 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from odoo import models - - -class pos_session(models.Model): - """Extends the 'pos.session' model to customize data processing - and UI models for point of sale sessions.""" - _inherit = 'pos.session' - - def _pos_data_process(self, loaded_data): - """Process loaded data for the point of sale session, extending the - base class method.""" - super()._pos_data_process(loaded_data) - if self.config_id: - loaded_data['type_by_id'] = {order_type['id']: order_type for - order_type in - loaded_data['delivery.type']} - - def _pos_ui_models_to_load(self): - """Get the list of UI models to load for the point of sale session.""" - result = super()._pos_ui_models_to_load() - result += ['delivery.type'] - return result - - def _loader_params_delivery_type(self): - """Get the loader parameters for the 'delivery.type' model.""" - return { - 'search_params': { - 'domain': [('id', '=', self.env['res.config.settings'].search( - []).delivery_methods.ids)], - 'fields': ['name']}, } - - def _get_pos_ui_delivery_type(self, params): - """Retrieve UI data for 'delivery.type' based on provided parameters.""" - return self.env['delivery.type'].search_read(**params['search_params']) diff --git a/pos_order_types/models/res_config_settings.py b/pos_order_types/models/res_config_settings.py deleted file mode 100644 index 6cda14115..000000000 --- a/pos_order_types/models/res_config_settings.py +++ /dev/null @@ -1,61 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Anjana P V (Contact : odoo@cybrosys.com) -# -# This program is under the terms of the Odoo Proprietary License v1.0 -# (OPL-1) -# It is forbidden to publish, distribute, sublicense, or sell copies of the -# Software or modified copies of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM -# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -# USE OR OTHER DEALINGS IN THE SOFTWARE. -# -############################################################################## -from ast import literal_eval -from odoo import api, fields, models - - -class ResConfigSettings(models.TransientModel): - """Extension of 'res.config.settings' for configuring delivery settings.""" - _inherit = 'res.config.settings' - - enable_delivery = fields.Boolean(string='Enable Order Types', - help='This field is used to enable to set' - 'the order types in settings') - delivery_methods = fields.Many2many('delivery.type', - string='Order Types', - help='Set the delivery methods') - - @api.model - def get_values(self): - """Get the values from settings.""" - res = super(ResConfigSettings, self).get_values() - icp_sudo = self.env['ir.config_parameter'].sudo() - partner_parameter = icp_sudo.get_param( - 'res.config.settings.enable_delivery') - partner_parameters = icp_sudo.get_param( - 'res.config.settings.delivery_methods') - res.update(enable_delivery=partner_parameter, - delivery_methods=[(6, 0, literal_eval(partner_parameters)) - ] if partner_parameters else False, ) - return res - - def set_values(self): - """Set the values.The new values are stored in the configuration - parameters.""" - res = super(ResConfigSettings, self).set_values() - self.env['ir.config_parameter'].sudo().set_param( - 'res.config.settings.enable_delivery', self.enable_delivery) - self.env['ir.config_parameter'].sudo().set_param( - 'res.config.settings.delivery_methods', - self.delivery_methods.ids) - return res diff --git a/pos_order_types/security/ir.model.access.csv b/pos_order_types/security/ir.model.access.csv deleted file mode 100644 index dfcf716f8..000000000 --- a/pos_order_types/security/ir.model.access.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_delivery_type_user,access.delivery.type.user,model_delivery_type,base.group_user,1,1,1,1 diff --git a/pos_order_types/static/description/assets/icons/check.png b/pos_order_types/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/pos_order_types/static/description/assets/icons/check.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/chevron.png b/pos_order_types/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/pos_order_types/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/cogs.png b/pos_order_types/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/pos_order_types/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/consultation.png b/pos_order_types/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/pos_order_types/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/ecom-black.png b/pos_order_types/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/pos_order_types/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/education-black.png b/pos_order_types/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/pos_order_types/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/hotel-black.png b/pos_order_types/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/pos_order_types/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/license.png b/pos_order_types/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/pos_order_types/static/description/assets/icons/license.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/lifebuoy.png b/pos_order_types/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/pos_order_types/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/manufacturing-black.png b/pos_order_types/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/pos_order_types/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/pos-black.png b/pos_order_types/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/pos_order_types/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/puzzle.png b/pos_order_types/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/pos_order_types/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/restaurant-black.png b/pos_order_types/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/pos_order_types/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/service-black.png b/pos_order_types/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/pos_order_types/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/trading-black.png b/pos_order_types/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/pos_order_types/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/training.png b/pos_order_types/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/pos_order_types/static/description/assets/icons/training.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/update.png b/pos_order_types/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/pos_order_types/static/description/assets/icons/update.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/user.png b/pos_order_types/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/pos_order_types/static/description/assets/icons/user.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/icons/wrench.png b/pos_order_types/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/pos_order_types/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/Cybrosys R.png b/pos_order_types/static/description/assets/misc/Cybrosys R.png deleted file mode 100644 index da4058087..000000000 Binary files a/pos_order_types/static/description/assets/misc/Cybrosys R.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/categories.png b/pos_order_types/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/pos_order_types/static/description/assets/misc/categories.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/check-box.png b/pos_order_types/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/pos_order_types/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/compass.png b/pos_order_types/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/pos_order_types/static/description/assets/misc/compass.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/corporate.png b/pos_order_types/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/pos_order_types/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/customer-support.png b/pos_order_types/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/pos_order_types/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/cybrosys-logo.png b/pos_order_types/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/pos_order_types/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/features.png b/pos_order_types/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/pos_order_types/static/description/assets/misc/features.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/logo.png b/pos_order_types/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/pos_order_types/static/description/assets/misc/logo.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/pictures.png b/pos_order_types/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/pos_order_types/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/pie-chart.png b/pos_order_types/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/pos_order_types/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/right-arrow.png b/pos_order_types/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/pos_order_types/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/star.png b/pos_order_types/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/pos_order_types/static/description/assets/misc/star.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/support.png b/pos_order_types/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/pos_order_types/static/description/assets/misc/support.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/misc/whatsapp.png b/pos_order_types/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/pos_order_types/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/1.jpg b/pos_order_types/static/description/assets/modules/1.jpg deleted file mode 100644 index 67c7f7062..000000000 Binary files a/pos_order_types/static/description/assets/modules/1.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/2.jpg b/pos_order_types/static/description/assets/modules/2.jpg deleted file mode 100644 index 87c2bb2ba..000000000 Binary files a/pos_order_types/static/description/assets/modules/2.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/3.png b/pos_order_types/static/description/assets/modules/3.png deleted file mode 100644 index a5299d338..000000000 Binary files a/pos_order_types/static/description/assets/modules/3.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/4.png b/pos_order_types/static/description/assets/modules/4.png deleted file mode 100644 index a0ac2d840..000000000 Binary files a/pos_order_types/static/description/assets/modules/4.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/5.jpg b/pos_order_types/static/description/assets/modules/5.jpg deleted file mode 100644 index 6a102f103..000000000 Binary files a/pos_order_types/static/description/assets/modules/5.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/modules/6.jpg b/pos_order_types/static/description/assets/modules/6.jpg deleted file mode 100644 index eaf13fef5..000000000 Binary files a/pos_order_types/static/description/assets/modules/6.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/check.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/check.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/chevron.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/chevron.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/cogs.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/cogs.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/consultation.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/consultation.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/ecom-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/education-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/education-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/hotel-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/license.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/license.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/lifebuoy.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/manufacturing-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/pos-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/pos-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/puzzle.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/puzzle.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/restaurant-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/service-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/service-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/trading-black.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/trading-black.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/training.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/training.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/update.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/update.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/user.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/user.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/icons/wrench.png b/pos_order_types/static/description/assets/screenshots/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/icons/wrench.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/Cybrosys R.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/Cybrosys R.png deleted file mode 100644 index da4058087..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/Cybrosys R.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/categories.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/categories.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/check-box.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/check-box.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/compass.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/compass.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/corporate.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/corporate.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/customer-support.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/customer-support.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/cybrosys-logo.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/features.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/features.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/logo.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/logo.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/pictures.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/pictures.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/pie-chart.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/right-arrow.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/star.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/star.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/support.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/support.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/misc/whatsapp.png b/pos_order_types/static/description/assets/screenshots/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/1.jpg b/pos_order_types/static/description/assets/screenshots/description/assets/modules/1.jpg deleted file mode 100644 index 67c7f7062..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/1.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/2.jpg b/pos_order_types/static/description/assets/screenshots/description/assets/modules/2.jpg deleted file mode 100644 index 87c2bb2ba..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/2.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/3.png b/pos_order_types/static/description/assets/screenshots/description/assets/modules/3.png deleted file mode 100644 index a5299d338..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/3.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/4.png b/pos_order_types/static/description/assets/screenshots/description/assets/modules/4.png deleted file mode 100644 index a0ac2d840..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/4.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/5.jpg b/pos_order_types/static/description/assets/screenshots/description/assets/modules/5.jpg deleted file mode 100644 index 6a102f103..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/5.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/modules/6.jpg b/pos_order_types/static/description/assets/screenshots/description/assets/modules/6.jpg deleted file mode 100644 index eaf13fef5..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/modules/6.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/1.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/1.png deleted file mode 100644 index 278ef6ed0..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/1.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/2.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/2.png deleted file mode 100644 index 6e7f5803f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/2.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/3.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/3.png deleted file mode 100644 index 059eb1a8a..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/3.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/4.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/4.png deleted file mode 100644 index 94b7ea491..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/4.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/5.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/5.png deleted file mode 100644 index b33b8278c..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/5.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/6.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/6.png deleted file mode 100644 index 0e7219b75..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/6.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/7.png b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/7.png deleted file mode 100644 index 352b63873..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/7.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/hero.gif b/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/hero.gif deleted file mode 100644 index 20df9fdfe..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/banner.jpg b/pos_order_types/static/description/assets/screenshots/description/banner.jpg deleted file mode 100644 index 8ee3b6c4f..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/banner.jpg and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/icon.png b/pos_order_types/static/description/assets/screenshots/description/icon.png deleted file mode 100644 index 4eb880be6..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/description/icon.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/description/index.html b/pos_order_types/static/description/assets/screenshots/description/index.html deleted file mode 100644 index 105dca856..000000000 --- a/pos_order_types/static/description/assets/screenshots/description/index.html +++ /dev/null @@ -1,737 +0,0 @@ - - - - - - - Odoo App 3 Index - - - - - - - - -
-
-
-
-
- -
-
-
- Community -
-
- Enterprise -
-
- Odoo.sh -
-
-
-
-
-
-

- Sales Team Access Controls

-

- Provides Access Control for Sales Team Members and Leaders. -

-
- -
-
-
- -
-
-

- Key Highlights -

-
-
-
-
-
- -
-
-

- Sales team members can only access the sales orders, leads, and customers they created.

-
-
-
-
-
-
- -
-
-

- Sales team leaders can access both their own and their team members' sales orders, leads, and customers.

-
-
-
- -
-
-
- -
-
-
-
-
- -
-
-

- Select the Sales Team access right as Team Member.

-
-
-
-
-
-
- - -
-
-

- User can access only the Sale Orders created by him.

-
-
-
-
-
-
- -
-
-

User can access only the Leads created by him.

-
-
-
- -
-
-
- -
-
-

- User can access only the Customers created by him.

-
-
-
-
-
-
- -
-
-

- Select the Sales Team access right as Team Leader.

-
-
-
-
-
-
- -
-
-

- User can access only the Sale Orders created by him and his team members.

-
-
-
-
-
-
- -
-
-

- User can access only the Leads created by him and his team members. -

-
-
-
- -
- -
-
-
    -
  • - - Sales team members have restricted access to only - the sales orders, leads, and customers they have personally created. -
  • -
  • - - sales team leaders have access to sales orders, leads, - and customers they have personally created, as well as those created by team members. -
  • -
-
-
-
-
-
-
Version - 17.0.1.0.0|Released on: -
-

- - Initial Commit for Sales Team Access Controls.

-
-
-
-
-
-
-
-

- Related Products

-
-
- -
-
-

- Our Services

- -
-
-
-
-
-
-
-
- service-icon -
-
-

Odoo - Customization

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Support

-
-
-
-
-
-
- service-icon -
-
-

Hire - Odoo Developer

-
-
-
-
- -
-
- service-icon -
-
-

Odoo - Integration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Migration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Consultancy

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Licensing Consultancy

-
-
-
-
-
-
-

- Our Industries

- -
-
-
-
-
-
- -

Trading

-

Easily procure and sell your products

-
-
-
-
- -

POS

-

Easy configuration and convivial experience

-
-
-
-
- -

- Education

-

A platform for educational management

-
-
-
-
- -

- Manufacturing

-

Plan, track and schedule your operations

-
-
-
-
- -

E-commerce & - Website

-

Mobile friendly, awe-inspiring product pages

-
-
-
-
- -

Service - Management

-

Keep track of services and invoice

-
-
-
-
- -

- Restaurant

-

Run your bar or restaurant methodically

-
-
-
-
- -

Hotel - Management

-

An all-inclusive hotel management application

-
-
-
-
-
-
-

- Support

-
-
-
-
-
-
-
- -
- Need - Help? -

Got - questions or need help? Get in touch.

-
odoo@cybrosys.com -
-
-
-
-
-
-
-
- -
- WhatsApp -

Say hi to - us on WhatsApp!

-
+91 - 99456767686 -
-
-
-
-
-
-
-
-
- - - - - - diff --git a/pos_order_types/static/description/assets/screenshots/hero.gif b/pos_order_types/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 3a14485ba..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_01.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_01.png deleted file mode 100644 index a39489fb7..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_01.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_02.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_02.png deleted file mode 100644 index 99bfdb0ee..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_02.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_03.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_03.png deleted file mode 100644 index 04a36f5ee..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_03.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_04.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_04.png deleted file mode 100644 index e5a61e510..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_04.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_05.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_05.png deleted file mode 100644 index 065aee691..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_05.png and /dev/null differ diff --git a/pos_order_types/static/description/assets/screenshots/pos_order_type_06.png b/pos_order_types/static/description/assets/screenshots/pos_order_type_06.png deleted file mode 100644 index a8e78a8bd..000000000 Binary files a/pos_order_types/static/description/assets/screenshots/pos_order_type_06.png and /dev/null differ diff --git a/pos_order_types/static/description/banner.jpg b/pos_order_types/static/description/banner.jpg deleted file mode 100644 index 35ad97827..000000000 Binary files a/pos_order_types/static/description/banner.jpg and /dev/null differ diff --git a/pos_order_types/static/description/icon.png b/pos_order_types/static/description/icon.png deleted file mode 100644 index 183dc5a57..000000000 Binary files a/pos_order_types/static/description/icon.png and /dev/null differ diff --git a/pos_order_types/static/description/index.html b/pos_order_types/static/description/index.html deleted file mode 100644 index 782b86767..000000000 --- a/pos_order_types/static/description/index.html +++ /dev/null @@ -1,763 +0,0 @@ - - - - - - - Odoo App 3 Index - - - - - - - - -
-
-
-
-
- -
-
-
- Community -
-
- Enterprise -
-
- Odoo.sh -
-
-
-
-
-
-

- POS Order Types

-

- Helps the salesman to specify the type of order. -

-
- -
-
-
- -
-
-

- Key Highlights -

-
-
-
-
-
- -
-
-

- Order Type in POS Screen.

-
-
-
-
-
-
- -
-
-

- Display the order type in the receipt.

-
-
-
-
-
-
- -
-
-

- Choose order type for each POS.

-
-
-
-
-
-
- -
-
-
-
-
- -
-
-

- Create order types

-

- Go to Point of Sale >> Configuration >> Order Types to create order types. -

-
-
-
-
-
-
- - -
-
-

- Enable order methods and choose the order types -

-

- Go to Point of Sale >> Configuration >> Point of Sale and choose one Point of Sale. Enable order - methods and choose the order types. -

- -
-
-
-
-
-
- -
-
-

Order type button to choose order type -

-

- A button named "Order Types" will appear in the POS screen to choose the order type. -

-
-
-
- -
-
-
- -
-
-

- Choose an order type. -

-

- Click the button and choose an order type. -

-
-
-
-
-
-
- -
-
-

- Order type is receipt -

-

- Chosen order type is displayed in the receipt. -

-
-
-
-
-
-
- -
-
-

- Order type displayed in the backend POS order. -

-

- Order type of each order will be displayed in the backend POS order. -

-
-
-
- - -
- -
-
-
    -
  • - - Sales team members have restricted access to only - the sales orders, leads, and customers they have personally created. -
  • -
  • - - sales team leaders have access to sales orders, leads, - and customers they have personally created, as well as those created by team members. -
  • -
-
-
-
-
-
-
Version - 17.0.1.0.0|Released on: -
-

- - Initial Commit for Sales Team Access Controls.

-
-
-
-
-
-
-
-

- Related Products

-
-
- -
-
-

- Our Services

- -
-
-
-
-
-
-
-
- service-icon -
-
-

Odoo - Customization

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Support

-
-
-
-
-
-
- service-icon -
-
-

Hire - Odoo Developer

-
-
-
-
- -
-
- service-icon -
-
-

Odoo - Integration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Migration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Consultancy

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Licensing Consultancy

-
-
-
-
-
-
-

- Our Industries

- -
-
-
-
-
-
- -

Trading

-

Easily procure and sell your products

-
-
-
-
- -

POS

-

Easy configuration and convivial experience

-
-
-
-
- -

- Education

-

A platform for educational management

-
-
-
-
- -

- Manufacturing

-

Plan, track and schedule your operations

-
-
-
-
- -

E-commerce & - Website

-

Mobile friendly, awe-inspiring product pages

-
-
-
-
- -

Service - Management

-

Keep track of services and invoice

-
-
-
-
- -

- Restaurant

-

Run your bar or restaurant methodically

-
-
-
-
- -

Hotel - Management

-

An all-inclusive hotel management application

-
-
-
-
-
-
-

- Support

-
-
-
-
-
-
-
- -
- Need - Help? -

Got - questions or need help? Get in touch.

-
odoo@cybrosys.com -
-
-
-
-
-
-
-
- -
- WhatsApp -

Say hi to - us on WhatsApp!

-
+91 - 99456767686 -
-
-
-
-
-
-
-
-
- - - - - - - \ No newline at end of file diff --git a/pos_order_types/static/src/js/deliverymethod_button.js b/pos_order_types/static/src/js/deliverymethod_button.js deleted file mode 100644 index 63bcb1404..000000000 --- a/pos_order_types/static/src/js/deliverymethod_button.js +++ /dev/null @@ -1,85 +0,0 @@ -/** @odoo-module */ - import { Component } from "@odoo/owl"; - import { _t } from "@web/core/l10n/translation"; - import { usePos } from "@point_of_sale/app/store/pos_hook"; - import { ProductScreen } from "@point_of_sale/app/screens/product_screen/product_screen"; - import { SelectionPopup } from "@point_of_sale/app/utils/input_popups/selection_popup"; - import { useService } from "@web/core/utils/hooks"; - - const { useState, useRef } = owl; - var delivery_type = {} -class SetDeliveryMethodButton extends Component { - setup() { - super.setup(); - this.pos = usePos(); - this.popup = useService("popup") - - this.state = useState({ - name: this.get_current_delivery_method_name() - }) - } - async button_click() { - var orders = this.pos.orders; - var no_delivery_method = [{ - }]; - const currentdelivery_method = this.pos.get_order().delivery_method - const selection_list = []; - for (let del_meth of this.pos.delivery_type) { - selection_list.push({ - id: del_meth.id, - label: del_meth.name, - isSelected: currentdelivery_method - ? del_meth.id === currentdelivery_method.id - : false, - item: del_meth, - }); - } - // Selection Popup shows given delivery method - if (selection_list.length>0){ - const { confirmed, payload: selected_delivery_method } = await this.popup.add(SelectionPopup, { - title: _t("Please select a product for this reward"), - list: selection_list, - }); - if (confirmed) { - var order = this.pos.get_order(); - order.delivery_method = selected_delivery_method; - var store_type= JSON.parse(localStorage.getItem(this.pos.db.name + 'order_type_reload')) || {}; - store_type[this.pos.get_order().uid] = {'type': selected_delivery_method} - localStorage.setItem('order_type_reload',JSON.stringify(store_type)); - if (selected_delivery_method!= undefined) - { - this.state.name =order.delivery_method.name; - } - } - } - } - get_current_delivery_method_name(){ - var name = _t('Order Types'); - var item = localStorage.getItem(this.pos.db.name + 'order_type_reload') - var obj=JSON.parse(item) - var order_type = false - if (obj){ - if (this.pos.get_order().uid in obj) - order_type = obj[this.pos.get_order().uid] - if (this.pos.get_order().orderlines.length ==0) - { - name = _t('Order Types'); - }else if (order_type ){ - if ('type' in order_type){ - name = order_type.type.name; - this.pos.get_order().delivery_method= order_type.type; - } - } - return name; - } - } -} -//Added the button Order types -SetDeliveryMethodButton.template = 'SetDeliveryMethodButton'; -ProductScreen.addControlButton({ - component: SetDeliveryMethodButton, - condition: function () { - return true; - }, - position: ['before', 'SetPricelistButton'], - }); diff --git a/pos_order_types/static/src/js/models.js b/pos_order_types/static/src/js/models.js deleted file mode 100644 index 9001585e0..000000000 --- a/pos_order_types/static/src/js/models.js +++ /dev/null @@ -1,23 +0,0 @@ -/** @odoo-module */ - -import { Order } from "@point_of_sale/app/store/models"; -import { patch } from "@web/core/utils/patch"; - -// Loading the field delivery method into POS -patch(Order.prototype, { - setup(_defaultObj, options) { - super.setup(...arguments); - this.delivery_method = this.delivery_method || false - }, - - init_from_JSON(json) { - super.init_from_JSON(...arguments); - this.delivery_method = json.delivery_method; - }, - - export_as_JSON() { - const json = super.export_as_JSON(...arguments); - json.delivery_method = this.delivery_method; - return json; - }, -}); diff --git a/pos_order_types/static/src/js/pos_store.js b/pos_order_types/static/src/js/pos_store.js deleted file mode 100644 index 1839901c6..000000000 --- a/pos_order_types/static/src/js/pos_store.js +++ /dev/null @@ -1,12 +0,0 @@ -/** @odoo-module */ - -import { patch } from "@web/core/utils/patch"; -import { PosStore } from "@point_of_sale/app/store/pos_store"; - -patch(PosStore.prototype, { - async _processData(loadedData) { - await super._processData(...arguments); - this.delivery_type = loadedData['delivery.type']; - this.type_by_id = loadedData['type_by_id']; - }, -}); diff --git a/pos_order_types/static/src/xml/pos_delivery_method.xml b/pos_order_types/static/src/xml/pos_delivery_method.xml deleted file mode 100644 index aa79fdde0..000000000 --- a/pos_order_types/static/src/xml/pos_delivery_method.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - -
- Order Type : - -
-
-
-
- - -
- - - - - - - - - -Order Types - -
-
-
\ No newline at end of file diff --git a/pos_order_types/views/delivery_type_views.xml b/pos_order_types/views/delivery_type_views.xml deleted file mode 100644 index 78ba8fa76..000000000 --- a/pos_order_types/views/delivery_type_views.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - delivery.type.view.tree - delivery.type - - - - - - - - - Order Type - ir.actions.act_window - delivery.type - - tree - current - -

- Click to create a new record. -

-
-
- - -
\ No newline at end of file diff --git a/pos_order_types/views/pos_order_views.xml b/pos_order_types/views/pos_order_views.xml deleted file mode 100644 index 292631949..000000000 --- a/pos_order_types/views/pos_order_views.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - pos.order.view.form - pos.order - - - - - - - - \ No newline at end of file diff --git a/pos_order_types/views/res_config_settings_views.xml b/pos_order_types/views/res_config_settings_views.xml deleted file mode 100644 index a7c5958ee..000000000 --- a/pos_order_types/views/res_config_settings_views.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - pos.config.view.form.inherit.pos.order.types - res.config.settings - - - -

Order Types

-
-
-
- -
-
-
-
-
-
-
-
-
\ No newline at end of file