diff --git a/pos_reference_for_payment/README.rst b/pos_reference_for_payment/README.rst new file mode 100755 index 000000000..51691163b --- /dev/null +++ b/pos_reference_for_payment/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +POS Reference for Payment +========================= +This module will help you to add Reference for payment manually from payment screen. + +Configuration +============= +* Enable "Allow Payment Reference" in the configuration settings inorder to add Payment Reference in the POS Payment Screen. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V15) Mohammed Irfan T, Contact : odoo@cybrosys.com +Developer: (V16) Amaya Aravind, Contact : odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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 +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/pos_reference_for_payment/__init__.py b/pos_reference_for_payment/__init__.py new file mode 100755 index 000000000..13e3db377 --- /dev/null +++ b/pos_reference_for_payment/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/pos_reference_for_payment/__manifest__.py b/pos_reference_for_payment/__manifest__.py new file mode 100755 index 000000000..b728d0599 --- /dev/null +++ b/pos_reference_for_payment/__manifest__.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +{ + 'name': 'POS Reference for Payment', + 'version': '15.0.1.0.0', + 'category': 'Point of Sale', + 'summary': """This module will help you to add reference for payment + manually from payment screen.""", + 'description': "This module provides an option to add payment reference " + "from payment screen and it wil be added to the back end " + "of the pos order at the time of order validation.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['point_of_sale'], + 'data': [ + 'views/res_config_settings_views.xml', + 'views/pos_order_views.xml', + ], + 'assets': { + 'point_of_sale.assets': [ + 'pos_reference_for_payment/static/src/js/**/*.js', + 'pos_reference_for_payment/static/src/scss/style.scss' + ], + 'web.assets_qweb': [ + 'pos_reference_for_payment/static/src/xml/Screens/PaymentScreen/PaymentScreen.xml', + 'pos_reference_for_payment/static/src/xml/Screens/ReceiptScreen/OrderReceipt.xml' + ] + }, + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/pos_reference_for_payment/doc/RELEASE_NOTES.md b/pos_reference_for_payment/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..f0a5d86a0 --- /dev/null +++ b/pos_reference_for_payment/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 23.12.2024 +#### Version 15.0.1.0.0 +#### ADD + +-Initial Commit for POS Reference for Payment \ No newline at end of file diff --git a/pos_reference_for_payment/models/__init__.py b/pos_reference_for_payment/models/__init__.py new file mode 100755 index 000000000..b29af7cb1 --- /dev/null +++ b/pos_reference_for_payment/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import pos_payment +# from . import pos_session +from . import res_config_settings diff --git a/pos_reference_for_payment/models/pos_payment.py b/pos_reference_for_payment/models/pos_payment.py new file mode 100755 index 000000000..4ee263e50 --- /dev/null +++ b/pos_reference_for_payment/models/pos_payment.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class PosPayment(models.Model): + """Class for inherited model pos payment + Methods: + get_payment_reference(self, order_list): + Method to write payment reference to the corresponding order. + Works through rpc call.""" + _inherit = 'pos.payment' + + user_payment_reference = fields.Char(string='Payment Reference', + help='Payment reference entered by ' + 'user.') + + def get_payment_reference(self, order_list): + """Method to write payment reference to the corresponding order. + Works through rpc call. + order_list(list):list of dictionary returned from pos with + order name and payment reference.""" + if order_list: + order = self.env['pos.order'].search( + [('pos_reference', '=', order_list[0]['name'])]) + for rec in order.payment_ids: + rec.write({ + 'user_payment_reference': order_list[0]['code'] + }) diff --git a/pos_reference_for_payment/models/pos_session.py b/pos_reference_for_payment/models/pos_session.py new file mode 100755 index 000000000..3ee73b9b6 --- /dev/null +++ b/pos_reference_for_payment/models/pos_session.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import models + + +class PosSessionLoadFields(models.Model): + """Inherited model pos session for loading field in pos payment into + pos session. + Methods: + _pos_ui_models_to_load(self): + Supering the method to load model pos payment and res config + settings into pos session + _loader_params_res_config_settings(self): + Loads field is_allow_payment_ref to pos session + _get_pos_ui_res_config_settings(self, params): + Load res config settings parameters to pos session + _loader_params_pos_payment(self): + Loads field user_payment_reference to pos session + _get_pos_ui_pos_payment(self, params): + Load pos payment parameters to pos session.""" + _inherit = 'pos.session' + + def _pos_ui_models_to_load(self): + """ Supering the method to load model pos payment and res config + settings into pos session. + List: Returns list with model names.""" + result = super()._pos_ui_models_to_load() + result += [ + 'pos.payment', + 'res.config.settings', + ] + return result + + def _get_pos_ui_res_config_settings(self, params): + """ Load res config settings parameters to pos session. + params(dict):dictionary of search param with dictionary of + field to load. + list: Returns list of dictionary with search param values.""" + return self.env['res.config.settings'].search_read( + **params['search_params']) + + def _get_pos_ui_pos_payment(self, params): + """ Load pos payment parameters to pos session. + params(dict):dictionary of search param with dictionary of + field to load. + list: Returns list of dictionary with search param values.""" + return self.env['pos.payment'].search_read(**params['search_params']) diff --git a/pos_reference_for_payment/models/res_config_settings.py b/pos_reference_for_payment/models/res_config_settings.py new file mode 100755 index 000000000..e877b317b --- /dev/null +++ b/pos_reference_for_payment/models/res_config_settings.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Mohammed Irfan T (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """Class for inherited model res config settings.""" + _inherit = 'res.config.settings' + + is_allow_payment_ref = fields.Boolean(string='Allow Payment Reference', + help='If enabled, it will allow you ' + 'to add payment reference in ' + 'the POS Payment Screen', + default=False, + config_parameter='pos_reference_for_payment.is_allow_payment_ref') diff --git a/pos_reference_for_payment/static/description/assets/icons/check.png b/pos_reference_for_payment/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/check.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/chevron.png b/pos_reference_for_payment/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/chevron.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/cogs.png b/pos_reference_for_payment/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/cogs.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/consultation.png b/pos_reference_for_payment/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/consultation.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/ecom-black.png b/pos_reference_for_payment/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/ecom-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/education-black.png b/pos_reference_for_payment/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/education-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/hotel-black.png b/pos_reference_for_payment/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/hotel-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/license.png b/pos_reference_for_payment/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/license.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/lifebuoy.png b/pos_reference_for_payment/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/lifebuoy.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/manufacturing-black.png b/pos_reference_for_payment/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/manufacturing-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/pos-black.png b/pos_reference_for_payment/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/pos-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/puzzle.png b/pos_reference_for_payment/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/puzzle.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/restaurant-black.png b/pos_reference_for_payment/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/restaurant-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/service-black.png b/pos_reference_for_payment/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/service-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/trading-black.png b/pos_reference_for_payment/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/trading-black.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/training.png b/pos_reference_for_payment/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/training.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/update.png b/pos_reference_for_payment/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/update.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/user.png b/pos_reference_for_payment/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/user.png differ diff --git a/pos_reference_for_payment/static/description/assets/icons/wrench.png b/pos_reference_for_payment/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/wrench.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/categories.png b/pos_reference_for_payment/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/categories.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/check-box.png b/pos_reference_for_payment/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/check-box.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/compass.png b/pos_reference_for_payment/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/compass.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/corporate.png b/pos_reference_for_payment/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/corporate.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/customer-support.png b/pos_reference_for_payment/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/customer-support.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/cybrosys-logo.png b/pos_reference_for_payment/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/cybrosys-logo.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/features.png b/pos_reference_for_payment/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/features.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/logo.png b/pos_reference_for_payment/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/logo.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/pictures.png b/pos_reference_for_payment/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/pictures.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/pie-chart.png b/pos_reference_for_payment/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/pie-chart.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/right-arrow.png b/pos_reference_for_payment/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/right-arrow.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/star.png b/pos_reference_for_payment/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/star.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/support.png b/pos_reference_for_payment/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/support.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/whatsapp.png b/pos_reference_for_payment/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/whatsapp.png differ diff --git a/pos_reference_for_payment/static/description/assets/modules/1.jpg b/pos_reference_for_payment/static/description/assets/modules/1.jpg new file mode 100755 index 000000000..e7985dc61 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/1.jpg differ diff --git a/pos_reference_for_payment/static/description/assets/modules/2.png b/pos_reference_for_payment/static/description/assets/modules/2.png new file mode 100755 index 000000000..5c8646fae Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/2.png differ diff --git a/pos_reference_for_payment/static/description/assets/modules/3.png b/pos_reference_for_payment/static/description/assets/modules/3.png new file mode 100755 index 000000000..3a5ffa0f9 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/3.png differ diff --git a/pos_reference_for_payment/static/description/assets/modules/4.jpg b/pos_reference_for_payment/static/description/assets/modules/4.jpg new file mode 100755 index 000000000..31f0a1878 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/4.jpg differ diff --git a/pos_reference_for_payment/static/description/assets/modules/5.png b/pos_reference_for_payment/static/description/assets/modules/5.png new file mode 100755 index 000000000..258bf213d Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/5.png differ diff --git a/pos_reference_for_payment/static/description/assets/modules/6.png b/pos_reference_for_payment/static/description/assets/modules/6.png new file mode 100755 index 000000000..5713b11f6 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/6.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/1.png b/pos_reference_for_payment/static/description/assets/screenshots/1.png new file mode 100755 index 000000000..bda661fe2 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/1.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/2.png b/pos_reference_for_payment/static/description/assets/screenshots/2.png new file mode 100755 index 000000000..3b8ae4745 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/2.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/3.png b/pos_reference_for_payment/static/description/assets/screenshots/3.png new file mode 100755 index 000000000..e96f57f94 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/3.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/4.png b/pos_reference_for_payment/static/description/assets/screenshots/4.png new file mode 100755 index 000000000..bab563230 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/4.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/5.png b/pos_reference_for_payment/static/description/assets/screenshots/5.png new file mode 100755 index 000000000..6de9585f4 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/5.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/6.png b/pos_reference_for_payment/static/description/assets/screenshots/6.png new file mode 100755 index 000000000..0b2d8c792 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/6.png differ diff --git a/pos_reference_for_payment/static/description/assets/screenshots/hero.gif b/pos_reference_for_payment/static/description/assets/screenshots/hero.gif new file mode 100755 index 000000000..3cb25b8f1 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/screenshots/hero.gif differ diff --git a/pos_reference_for_payment/static/description/banner.png b/pos_reference_for_payment/static/description/banner.png new file mode 100755 index 000000000..e29f0b0aa Binary files /dev/null and b/pos_reference_for_payment/static/description/banner.png differ diff --git a/pos_reference_for_payment/static/description/icon.png b/pos_reference_for_payment/static/description/icon.png new file mode 100755 index 000000000..30f31fadf Binary files /dev/null and b/pos_reference_for_payment/static/description/icon.png differ diff --git a/pos_reference_for_payment/static/description/index.html b/pos_reference_for_payment/static/description/index.html new file mode 100755 index 000000000..e5a88c8e9 --- /dev/null +++ b/pos_reference_for_payment/static/description/index.html @@ -0,0 +1,597 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ POS Reference for Payment

+

+ Add Payment Reference Manually.

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ User can add payment reference from payment screen, and it will be + added to the pos order at the time of order validation. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Can add Payment reference from pos session. +
+
+ + It will be saved into backend after Payment validation. +
+
+
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Enable "Allow Payment Reference" in the configuration settings. +

+ +
+ +
+

+ There will be a button for payment reference.Click on that. +

+ +
+ +
+

+ In the popup, add Reference. +

+ +
+ +
+

+ It will show in the screen. +

+ +
+
+

+ The Reference will be visible in Receipt. +

+ +
+
+

+ It will be also added into the Backend after validation. +

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

Related + Products +

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

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ 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 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/pos_reference_for_payment/static/src/js/PosSession.js b/pos_reference_for_payment/static/src/js/PosSession.js new file mode 100755 index 000000000..681dc91d3 --- /dev/null +++ b/pos_reference_for_payment/static/src/js/PosSession.js @@ -0,0 +1,38 @@ +/** @odoo-module **/ +odoo.define('pos_reference_for_payment.PosGlobalState', function (require) { + 'use strict'; + var rpc = require('web.rpc') + var { PosGlobalState, Order } = require('point_of_sale.models'); + const Registries = require('point_of_sale.Registries'); + var models = require('point_of_sale.models'); + // Load models to retrieve configuration and account move data + // Load 'pos.payment' model fields + models.load_models([{ + model: 'pos.payment', + fields: ['user_payment_reference'], + loaded: function (self, user_payment_reference) { + self.user_payment_reference = user_payment_reference; + } + }]); + // Load 'res.config.settings' model fields + models.load_models([{ + model: 'res.config.settings', + fields: ['is_allow_payment_ref'], + loaded: function (self, is_allow_payment_ref) { + self.is_allow_payment_ref = is_allow_payment_ref; + } + }]); +// Extend POS global state +// const Registries = require('point_of_sale.Registries'); + const NewPosGlobalState = (PosGlobalState) => class NewPosGlobalState extends PosGlobalState { + async _processData(loadedData) { + await super._processData(...arguments); + // Load field values of in pos.payment into pos. + this.user_payment_reference = loadedData['pos.payment']; + // Load field values of in res.config.settings into pos. + this.is_allow_payment_ref = loadedData['res.config.settings']; + } + } +Registries.Model.extend(PosGlobalState, NewPosGlobalState); + return NewPosGlobalState; +}); diff --git a/pos_reference_for_payment/static/src/js/Recieptscreen.js b/pos_reference_for_payment/static/src/js/Recieptscreen.js new file mode 100755 index 000000000..cf2373c80 --- /dev/null +++ b/pos_reference_for_payment/static/src/js/Recieptscreen.js @@ -0,0 +1,16 @@ +/** @odoo-module **/ +const ReceiptScreen = require('point_of_sale.ReceiptScreen'); +const Registries = require('point_of_sale.Registries'); +const ExtendsReceiptScreen = (ReceiptScreen) => class extends ReceiptScreen { + async orderDone() { + await super.orderDone(...arguments); + if (this.env.pos.user_payment_reference && this.env.pos.user_payment_reference.length > 0) { + const lastRef = this.env.pos.user_payment_reference[this.env.pos.user_payment_reference.length - 1]; + if (lastRef) { + lastRef.user_payment_reference = false; + } + } + } +}; +Registries.Component.extend(ReceiptScreen, ExtendsReceiptScreen); +return ExtendsReceiptScreen; \ No newline at end of file diff --git a/pos_reference_for_payment/static/src/js/Screens/PaymentScreen/PaymentScreen.js b/pos_reference_for_payment/static/src/js/Screens/PaymentScreen/PaymentScreen.js new file mode 100755 index 000000000..48927303d --- /dev/null +++ b/pos_reference_for_payment/static/src/js/Screens/PaymentScreen/PaymentScreen.js @@ -0,0 +1,44 @@ +/** @odoo-module **/ +//Extend POS payment screen + const Registries = require('point_of_sale.Registries'); + const PaymentScreen = require('point_of_sale.PaymentScreen'); + var rpc = require('web.rpc'); + let order_list = [] + const ReferenceButtonPaymentScreen = (PaymentScreen) => + class extends PaymentScreen { + // Click function of add payment reference button. + async IsPaymentReferenceButton() { + let { confirmed, payload: code } = await this.showPopup('TextInputPopup', { + title: this.env._t('Payment Reference'), + startingValue: '', + placeholder: this.env._t('eg:PREF16'), + }); + if (confirmed) { + code = code.trim(); + if (code !== '') { + if (this.env.pos.user_payment_reference.length > 0){ + this.env.pos.user_payment_reference[this.env.pos.user_payment_reference.length-1].user_payment_reference = code + order_list.push({'name':this.env.pos.get_order().name, + 'code': code}) + } + else if (this.env.pos.user_payment_reference.length == 0){ + this.env.pos.user_payment_reference.user_payment_reference = code + order_list.push({'name':this.env.pos.get_order().name, + 'code': code}) + } + } + } + } + //Override the _finalizeValidation() function to write payment + //reference into that of the pos order + async _finalizeValidation() { + await super._finalizeValidation(...arguments); + rpc.query({ + model: 'pos.payment', + method: 'get_payment_reference', + args: [[],order_list], + }); + } + }; + Registries.Component.extend(PaymentScreen, ReferenceButtonPaymentScreen); + return ReferenceButtonPaymentScreen; diff --git a/pos_reference_for_payment/static/src/scss/style.scss b/pos_reference_for_payment/static/src/scss/style.scss new file mode 100755 index 000000000..855e70ecb --- /dev/null +++ b/pos_reference_for_payment/static/src/scss/style.scss @@ -0,0 +1,6 @@ +.payment_reference_button{ + margin-top:10px; +} +.payment_reference-Div{ + transform: translateX(6%); +} \ No newline at end of file diff --git a/pos_reference_for_payment/static/src/xml/Screens/PaymentScreen/PaymentScreen.xml b/pos_reference_for_payment/static/src/xml/Screens/PaymentScreen/PaymentScreen.xml new file mode 100755 index 000000000..e55b8addb --- /dev/null +++ b/pos_reference_for_payment/static/src/xml/Screens/PaymentScreen/PaymentScreen.xml @@ -0,0 +1,30 @@ + + + + + + +
+
+ +
+ Payment Reference : +
+
+ +
+ Payment Reference : +
+
+ + +
Add Payment-Reference
+
+
+
+
+
+
+
diff --git a/pos_reference_for_payment/static/src/xml/Screens/ReceiptScreen/OrderReceipt.xml b/pos_reference_for_payment/static/src/xml/Screens/ReceiptScreen/OrderReceipt.xml new file mode 100755 index 000000000..80e234950 --- /dev/null +++ b/pos_reference_for_payment/static/src/xml/Screens/ReceiptScreen/OrderReceipt.xml @@ -0,0 +1,19 @@ + + + + + + +
+ Payment Reference : +
+
+ +
+ Payment Reference : +
+
+
+
+
diff --git a/pos_reference_for_payment/views/pos_order_views.xml b/pos_reference_for_payment/views/pos_order_views.xml new file mode 100755 index 000000000..b3e7a60e7 --- /dev/null +++ b/pos_reference_for_payment/views/pos_order_views.xml @@ -0,0 +1,15 @@ + + + + + pos.order.view.form.inherit.pos.reference.for.payment + pos.order + + + + + + + + diff --git a/pos_reference_for_payment/views/res_config_settings_views.xml b/pos_reference_for_payment/views/res_config_settings_views.xml new file mode 100755 index 000000000..08b2a298e --- /dev/null +++ b/pos_reference_for_payment/views/res_config_settings_views.xml @@ -0,0 +1,28 @@ + + + + + res.config.settings.view.form.inherit.pos.reference.for.payment + res.config.settings + + + +
+
+ +
+
+
+
+
+
+
+