diff --git a/pos_reference_for_payment/README.rst b/pos_reference_for_payment/README.rst new file mode 100644 index 000000000..10cc49e44 --- /dev/null +++ b/pos_reference_for_payment/README.rst @@ -0,0 +1,46 @@ +.. 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: (V17) Bhagyadev KP, 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 100644 index 000000000..7d45d5569 --- /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: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# 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 100644 index 000000000..a5207c9e7 --- /dev/null +++ b/pos_reference_for_payment/__manifest__.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +{ + 'name': 'POS Reference for Payment', + 'version': '17.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': [ + 'pos_reference_for_payment/static/src/js/**/*.js', + 'pos_reference_for_payment/static/src/xml/**/*.xml', + ] + }, + 'images': ['static/description/banner.jpg'], + '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 100644 index 000000000..c06c32cb5 --- /dev/null +++ b/pos_reference_for_payment/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 11.10.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial Commit for POS Reference for Payment diff --git a/pos_reference_for_payment/models/__init__.py b/pos_reference_for_payment/models/__init__.py new file mode 100644 index 000000000..bc66c7de5 --- /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: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# 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 100644 index 000000000..49c655f86 --- /dev/null +++ b/pos_reference_for_payment/models/pos_payment.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# 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: + for order_data in order_list: + order = self.env['pos.order'].search( + [('pos_reference', '=', order_data['name'])]) + if order: + for payment in order.payment_ids: + payment.write({ + 'user_payment_reference': order_data['code'] + }) diff --git a/pos_reference_for_payment/models/pos_session.py b/pos_reference_for_payment/models/pos_session.py new file mode 100644 index 000000000..8a48af64d --- /dev/null +++ b/pos_reference_for_payment/models/pos_session.py @@ -0,0 +1,81 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# 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 _loader_params_res_config_settings(self): + """ Loads field is_allow_payment_ref to pos session. + dictionary: Returns dictionary of search params with fields.""" + return { + 'search_params': { + 'fields': ['is_allow_payment_ref'], + }, + } + + 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 _loader_params_pos_payment(self): + """ Loads field user_payment_reference to pos session. + dictionary: Returns dictionary of search params with fields.""" + return {'search_params': {'domain': [], + 'fields': ['user_payment_reference']}} + + 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 100644 index 000000000..a4557643b --- /dev/null +++ b/pos_reference_for_payment/models/res_config_settings.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Bhagyadev KP (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# 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', + config_parameter='pos_reference_for_payment.is_allow_payment_ref') diff --git a/pos_reference_for_payment/static/description/assets/icons/capture (1).png b/pos_reference_for_payment/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/capture (1).png differ 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/img.png b/pos_reference_for_payment/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/img.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 100644 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 100644 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 100644 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/photo-capture.png b/pos_reference_for_payment/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/icons/photo-capture.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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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 100644 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/Cybrosys R.png b/pos_reference_for_payment/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/misc/Cybrosys R.png differ diff --git a/pos_reference_for_payment/static/description/assets/misc/email.svg b/pos_reference_for_payment/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/phone.svg b/pos_reference_for_payment/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/star (1) 2.svg b/pos_reference_for_payment/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/support (1) 1.svg b/pos_reference_for_payment/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/support-email.svg b/pos_reference_for_payment/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/tick-mark.svg b/pos_reference_for_payment/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/whatsapp 1.svg b/pos_reference_for_payment/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pos_reference_for_payment/static/description/assets/misc/whatsapp.svg b/pos_reference_for_payment/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/pos_reference_for_payment/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 100644 index 000000000..08bbafeb6 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 100644 index 000000000..a1209a01f 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.jpg b/pos_reference_for_payment/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..3d171226b Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/3.jpg 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 100644 index 000000000..1f3f2e27f 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.jpg b/pos_reference_for_payment/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..0db717519 Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/5.jpg differ diff --git a/pos_reference_for_payment/static/description/assets/modules/6.jpg b/pos_reference_for_payment/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..cd62a577c Binary files /dev/null and b/pos_reference_for_payment/static/description/assets/modules/6.jpg 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 100644 index 000000000..92a2cc46a 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 100644 index 000000000..b4c13bc68 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 100644 index 000000000..b528742c0 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 100644 index 000000000..e57e182f6 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 100644 index 000000000..6a852a6c1 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/hero.gif b/pos_reference_for_payment/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..96f55db15 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.jpg b/pos_reference_for_payment/static/description/banner.jpg new file mode 100644 index 000000000..f3ad091e1 Binary files /dev/null and b/pos_reference_for_payment/static/description/banner.jpg differ diff --git a/pos_reference_for_payment/static/description/icon.png b/pos_reference_for_payment/static/description/icon.png new file mode 100644 index 000000000..657663df1 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 100644 index 000000000..70a3b1b32 --- /dev/null +++ b/pos_reference_for_payment/static/description/index.html @@ -0,0 +1,686 @@ + + + + + + + POS Reference for Payment + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

POS Reference for Payment

+

+ Add Payment Reference Manually. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

Can add Payment reference from pos session.

+
+
+
+
+
+
+ +
+
+

It will be saved into backend after Payment validation.

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

Enable "Allow Payment Reference" in the configuration settings.

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

In the popup, add Reference.

+
+
+
+
+
+
+ +
+
+

The Reference will be visible in Receipt.

+
+
+
+
+
+
+ +
+
+

It will be also added into the Backend after validation.

+
+
+
+
+
+
+
    +
  • + Can add Payment reference from pos session. +
  • +
  • + +It will be saved into backend after Payment validation. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:11th October 2024 +
+

+ Initial Commit for POS Reference for Payment.

+
+
+
+
+
+
+
+

+ 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_reference_for_payment/static/src/js/PosSession.js b/pos_reference_for_payment/static/src/js/PosSession.js new file mode 100644 index 000000000..6ae489e14 --- /dev/null +++ b/pos_reference_for_payment/static/src/js/PosSession.js @@ -0,0 +1,12 @@ +/** @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); + // 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']; + } +}); \ 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 100644 index 000000000..1de952383 --- /dev/null +++ b/pos_reference_for_payment/static/src/js/Screens/PaymentScreen/PaymentScreen.js @@ -0,0 +1,53 @@ +/** @odoo-module **/ + +import { PaymentScreen } from "@point_of_sale/app/screens/payment_screen/payment_screen"; +import { patch } from "@web/core/utils/patch"; +import { _t } from "@web/core/l10n/translation"; +import { TextInputPopup } from "@point_of_sale/app/utils/input_popups/text_input_popup"; +import { useService } from "@web/core/utils/hooks"; +import { useState } from "@odoo/owl"; +let order_list = [] +patch(PaymentScreen.prototype, { + setup() { + super.setup(); + this.popup = useService("popup"); + this.state = useState({ + code: false, + }); + }, + async IsPaymentReferenceButton() { + let { confirmed, payload: code } = await this.popup.add(TextInputPopup, { + title: _t("Payment Reference"), + startingValue: "", + placeholder: _t('eg:PREF16'), + }); + if (confirmed) { + code = code.trim(); + if (code !== '') { + if (this.env.services.pos.user_payment_reference.length > 0){ + this.env.services.pos.user_payment_reference[this.env.services.pos.user_payment_reference.length-1].user_payment_reference = code + this.state.code = code + order_list.push({'name':this.env.services.pos.get_order().name, + 'code': code}) + this.order_list = order_list + } + else if (this.env.services.pos.user_payment_reference.length == 0){ + this.env.services.pos.user_payment_reference.user_payment_reference = code + order_list.push({'name':this.env.services.pos.get_order().name, + 'code': code}) + this.order_list = order_list + } + } + } + }, + + async _finalizeValidation() { + await super._finalizeValidation(...arguments); + await this.env.services.rpc("/web/dataset/call_kw/pos.payment/get_payment_reference", { + model: 'pos.payment', + method: 'get_payment_reference', + args: [[],order_list], + kwargs: {} + }); + } +}); 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 100644 index 000000000..8b9a56e19 --- /dev/null +++ b/pos_reference_for_payment/static/src/xml/Screens/PaymentScreen/PaymentScreen.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + 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 100644 index 000000000..90b7f6a23 --- /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 100644 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 100644 index 000000000..490b163c6 --- /dev/null +++ b/pos_reference_for_payment/views/res_config_settings_views.xml @@ -0,0 +1,19 @@ + + + + + res.config.settings.view.form.inherit.pos.reference.for.payment + res.config.settings + + + + + + + + + +