diff --git a/pos_greetings/README.rst b/pos_greetings/README.rst new file mode 100644 index 000000000..509936dde --- /dev/null +++ b/pos_greetings/README.rst @@ -0,0 +1,32 @@ + +POS Customer Greeting Messages +============================== +This module allow to send greetings to the customer. + +Depends +======= +[point_of_sale] addon Odoo + + +Installation +============ + +- www.odoo.com/documentation/12.0/setup/install.html +- Install our custom addon + +Credits +======= +* Cybrosys Techno Solutions + +Author +------ + +Developers: v14.0 ASWATHI C + +Maintainer +---------- + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com. + diff --git a/pos_greetings/__init__.py b/pos_greetings/__init__.py new file mode 100644 index 000000000..43c9e9e52 --- /dev/null +++ b/pos_greetings/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: ASWATHI C (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 model + + + diff --git a/pos_greetings/__manifest__.py b/pos_greetings/__manifest__.py new file mode 100644 index 000000000..a5939bbd6 --- /dev/null +++ b/pos_greetings/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: YADHU K (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 Customer Greeting Messages', + 'version': '14.0.1.0.0', + 'category': 'Point of Sale', + 'summary': 'Send Greeting messages to Customers in Pos Order', + 'description': 'Send Greeting messages to Customers in Pos Order', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['point_of_sale'], + 'external_dependencies': {'python': ['twilio']}, + 'data': [ + 'security/ir.model.access.csv', + 'views/pos_config_settings.xml', + 'views/pos_greetings_view.xml', + ], + 'license': 'AGPL-3', + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, + +} diff --git a/pos_greetings/doc/RELEASE_NOTES.md b/pos_greetings/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..99a52f1c9 --- /dev/null +++ b/pos_greetings/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 1.1.2022 +#### Version 14.0.1.0.0 +##### ADD +- Initial commit for pos_greetings \ No newline at end of file diff --git a/pos_greetings/model/__init__.py b/pos_greetings/model/__init__.py new file mode 100644 index 000000000..2593e536e --- /dev/null +++ b/pos_greetings/model/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies(). +# Author: YADHU K (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_greetings \ No newline at end of file diff --git a/pos_greetings/model/pos_greetings.py b/pos_greetings/model/pos_greetings.py new file mode 100644 index 000000000..d2e882e76 --- /dev/null +++ b/pos_greetings/model/pos_greetings.py @@ -0,0 +1,116 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2020-TODAY Cybrosys Technologies() +# Author: ASWATHI C (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 . +# +############################################################################# +# pylint: disable=import-error +# pylint: disable=missing-module-docstring +# pylint: disable=missing-class-docstring +# pylint: disable=missing-function-docstring +# pylint: disable=too-many-locals +# pylint: disable=unused-argument +# pylint: disable=inconsistent-return-statements +# pylint: disable=too-few-public-methods +# pylint: disable=bare-except +# pylint: disable=super-with-arguments + +from twilio.rest import Client +from odoo import fields, models, api + + +class POSOrderInherit(models.Model): + _inherit = 'pos.order' + + @api.model + def create_from_ui(self, orders, draft=False): + res = super(POSOrderInherit, self).create_from_ui(orders) + ids = [] + for line in res: + if line['id']: + ids.append(line['id']) + backend_order = self.search([('id', 'in', ids)]) + if backend_order: + for pos_order in backend_order: + config_id = pos_order.session_id.config_id + if config_id.customer_msg: + if pos_order.partner_id.phone: + try: + customer_phone = str(pos_order.partner_id.phone) + twilio_number = config_id.twilio_number + auth_token = config_id.auth_token + account_sid = config_id.account_sid + body = config_id.sms_body + + # Download the helper library from + # https://www.twilio.com/docs/python/install + + client = Client(account_sid, auth_token) + client.messages.create( + body=body, + from_=twilio_number, + to=customer_phone + ) + pos_greeting_obj = self.env['pos.greetings'] + pos_greeting_obj.create({ + 'customer_id': pos_order.partner_id.id, + 'order_id': pos_order.id, + 'auth_token': auth_token, + 'twilio_number': twilio_number, + 'to_number': customer_phone, + 'session_id': pos_order.session_id.id, + 'sms_body': body, + 'send_sms': True, + }) + except: + pass + return res + + +class POSGreetings(models.Model): + _name = 'pos.greetings' + _description = 'POS Greetings' + + customer_id = fields.Many2one('res.partner', string='Customer') + order_id = fields.Many2one('pos.order', string='Order') + auth_token = fields.Char('Token') + twilio_number = fields.Char('Twilio Number') + to_number = fields.Char('Customer Number') + sms_body = fields.Char('Body', required=True) + session_id = fields.Many2one('pos.session', string='Session') + send_sms = fields.Boolean(string='Send SMS', default=False) + + +class ResConfigSettings(models.Model): + _inherit = 'pos.config' + + customer_msg = fields.Boolean('POS Greetings', + Help='Create an account if you ever create ' + 'an account') + auth_token = fields.Char('Auth Token', + Help='Copy the token from your twilio console ' + 'window adn paste here', + required=True) + account_sid = fields.Char('Account SID', + required=True) + twilio_number = fields.Char('Twilio Number', + Help='The number provided by twilio used to ' + 'send text messages', + required=True) + sms_body = fields.Text('Body', + required=True) diff --git a/pos_greetings/security/ir.model.access.csv b/pos_greetings/security/ir.model.access.csv new file mode 100644 index 000000000..8662a7dad --- /dev/null +++ b/pos_greetings/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_pos_greetings,access_pos_greetings,model_pos_greetings,,1,0,1,0 \ No newline at end of file diff --git a/pos_greetings/static/description/assets/icons/check.png b/pos_greetings/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/pos_greetings/static/description/assets/icons/check.png differ diff --git a/pos_greetings/static/description/assets/icons/chevron.png b/pos_greetings/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/chevron.png differ diff --git a/pos_greetings/static/description/assets/icons/cogs.png b/pos_greetings/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/cogs.png differ diff --git a/pos_greetings/static/description/assets/icons/consultation.png b/pos_greetings/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/pos_greetings/static/description/assets/icons/consultation.png differ diff --git a/pos_greetings/static/description/assets/icons/ecom-black.png b/pos_greetings/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/ecom-black.png differ diff --git a/pos_greetings/static/description/assets/icons/education-black.png b/pos_greetings/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/pos_greetings/static/description/assets/icons/education-black.png differ diff --git a/pos_greetings/static/description/assets/icons/hotel-black.png b/pos_greetings/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/pos_greetings/static/description/assets/icons/hotel-black.png differ diff --git a/pos_greetings/static/description/assets/icons/license.png b/pos_greetings/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/pos_greetings/static/description/assets/icons/license.png differ diff --git a/pos_greetings/static/description/assets/icons/lifebuoy.png b/pos_greetings/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/pos_greetings/static/description/assets/icons/lifebuoy.png differ diff --git a/pos_greetings/static/description/assets/icons/logo.png b/pos_greetings/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/pos_greetings/static/description/assets/icons/logo.png differ diff --git a/pos_greetings/static/description/assets/icons/manufacturing-black.png b/pos_greetings/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/pos_greetings/static/description/assets/icons/manufacturing-black.png differ diff --git a/pos_greetings/static/description/assets/icons/pos-black.png b/pos_greetings/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/pos-black.png differ diff --git a/pos_greetings/static/description/assets/icons/puzzle.png b/pos_greetings/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/puzzle.png differ diff --git a/pos_greetings/static/description/assets/icons/restaurant-black.png b/pos_greetings/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/restaurant-black.png differ diff --git a/pos_greetings/static/description/assets/icons/service-black.png b/pos_greetings/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/pos_greetings/static/description/assets/icons/service-black.png differ diff --git a/pos_greetings/static/description/assets/icons/trading-black.png b/pos_greetings/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/pos_greetings/static/description/assets/icons/trading-black.png differ diff --git a/pos_greetings/static/description/assets/icons/training.png b/pos_greetings/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/pos_greetings/static/description/assets/icons/training.png differ diff --git a/pos_greetings/static/description/assets/icons/update.png b/pos_greetings/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/pos_greetings/static/description/assets/icons/update.png differ diff --git a/pos_greetings/static/description/assets/icons/user.png b/pos_greetings/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/pos_greetings/static/description/assets/icons/user.png differ diff --git a/pos_greetings/static/description/assets/icons/wrench.png b/pos_greetings/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/pos_greetings/static/description/assets/icons/wrench.png differ diff --git a/pos_greetings/static/description/assets/modules/approval_image.png b/pos_greetings/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/pos_greetings/static/description/assets/modules/approval_image.png differ diff --git a/pos_greetings/static/description/assets/modules/budget_image.png b/pos_greetings/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/pos_greetings/static/description/assets/modules/budget_image.png differ diff --git a/pos_greetings/static/description/assets/modules/export_image.png b/pos_greetings/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/pos_greetings/static/description/assets/modules/export_image.png differ diff --git a/pos_greetings/static/description/assets/modules/magento_image.png b/pos_greetings/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/pos_greetings/static/description/assets/modules/magento_image.png differ diff --git a/pos_greetings/static/description/assets/modules/pos_image.png b/pos_greetings/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/pos_greetings/static/description/assets/modules/pos_image.png differ diff --git a/pos_greetings/static/description/assets/modules/shopify_image.png b/pos_greetings/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/pos_greetings/static/description/assets/modules/shopify_image.png differ diff --git a/pos_greetings/static/description/assets/screenshots/hero.png b/pos_greetings/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..55a9b9aa1 Binary files /dev/null and b/pos_greetings/static/description/assets/screenshots/hero.png differ diff --git a/pos_greetings/static/description/assets/screenshots/pos_greetings-1.png b/pos_greetings/static/description/assets/screenshots/pos_greetings-1.png new file mode 100644 index 000000000..5cd13b958 Binary files /dev/null and b/pos_greetings/static/description/assets/screenshots/pos_greetings-1.png differ diff --git a/pos_greetings/static/description/assets/screenshots/pos_greetings-2.png b/pos_greetings/static/description/assets/screenshots/pos_greetings-2.png new file mode 100644 index 000000000..b9073e224 Binary files /dev/null and b/pos_greetings/static/description/assets/screenshots/pos_greetings-2.png differ diff --git a/pos_greetings/static/description/assets/screenshots/pos_greetings-3.png b/pos_greetings/static/description/assets/screenshots/pos_greetings-3.png new file mode 100644 index 000000000..fac7bd502 Binary files /dev/null and b/pos_greetings/static/description/assets/screenshots/pos_greetings-3.png differ diff --git a/pos_greetings/static/description/banner.png b/pos_greetings/static/description/banner.png new file mode 100644 index 000000000..786712091 Binary files /dev/null and b/pos_greetings/static/description/banner.png differ diff --git a/pos_greetings/static/description/icon.png b/pos_greetings/static/description/icon.png new file mode 100644 index 000000000..6dacbfc9b Binary files /dev/null and b/pos_greetings/static/description/icon.png differ diff --git a/pos_greetings/static/description/images/checked.png b/pos_greetings/static/description/images/checked.png new file mode 100644 index 000000000..578cedb80 Binary files /dev/null and b/pos_greetings/static/description/images/checked.png differ diff --git a/pos_greetings/static/description/images/cybrosys.png b/pos_greetings/static/description/images/cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/pos_greetings/static/description/images/cybrosys.png differ diff --git a/pos_greetings/static/description/images/image_1.png b/pos_greetings/static/description/images/image_1.png new file mode 100644 index 000000000..5cd13b958 Binary files /dev/null and b/pos_greetings/static/description/images/image_1.png differ diff --git a/pos_greetings/static/description/images/image_2.png b/pos_greetings/static/description/images/image_2.png new file mode 100644 index 000000000..b9073e224 Binary files /dev/null and b/pos_greetings/static/description/images/image_2.png differ diff --git a/pos_greetings/static/description/images/image_3.png b/pos_greetings/static/description/images/image_3.png new file mode 100644 index 000000000..fac7bd502 Binary files /dev/null and b/pos_greetings/static/description/images/image_3.png differ diff --git a/pos_greetings/static/description/images/pos_filter.jpeg b/pos_greetings/static/description/images/pos_filter.jpeg new file mode 100644 index 000000000..022c17a95 Binary files /dev/null and b/pos_greetings/static/description/images/pos_filter.jpeg differ diff --git a/pos_greetings/static/description/images/pos_logo.png b/pos_greetings/static/description/images/pos_logo.png new file mode 100644 index 000000000..97d6c5041 Binary files /dev/null and b/pos_greetings/static/description/images/pos_logo.png differ diff --git a/pos_greetings/static/description/images/pos_product.png b/pos_greetings/static/description/images/pos_product.png new file mode 100644 index 000000000..9f62d36ce Binary files /dev/null and b/pos_greetings/static/description/images/pos_product.png differ diff --git a/pos_greetings/static/description/images/pos_reciept.jpeg b/pos_greetings/static/description/images/pos_reciept.jpeg new file mode 100644 index 000000000..aad3880ad Binary files /dev/null and b/pos_greetings/static/description/images/pos_reciept.jpeg differ diff --git a/pos_greetings/static/description/images/pos_return.png b/pos_greetings/static/description/images/pos_return.png new file mode 100644 index 000000000..026b47e1e Binary files /dev/null and b/pos_greetings/static/description/images/pos_return.png differ diff --git a/pos_greetings/static/description/images/pos_voucher.png b/pos_greetings/static/description/images/pos_voucher.png new file mode 100644 index 000000000..cf274c0bb Binary files /dev/null and b/pos_greetings/static/description/images/pos_voucher.png differ diff --git a/pos_greetings/static/description/images/task_timer.gif b/pos_greetings/static/description/images/task_timer.gif new file mode 100644 index 000000000..ba0a1bd3d Binary files /dev/null and b/pos_greetings/static/description/images/task_timer.gif differ diff --git a/pos_greetings/static/description/index.html b/pos_greetings/static/description/index.html new file mode 100644 index 000000000..1ec568ce8 --- /dev/null +++ b/pos_greetings/static/description/index.html @@ -0,0 +1,594 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ POS Customer Greeting Messages

+

+ Send Greeting messages to Customers in Pos Order using Twilio +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This module allow to send a greeting to the POS customer after validating the POS order. You should + install the Twilio python package. After this module installation you want to check with the trail + account.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Send customer greetings

+ +
+
+
+
+ +
+
+

+ Send greeting on POS order validation

+ +
+
+ +
+
+ +
+
+

+ Integrated with Twilio

+ +
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ POS Configuration Settings

+

+ After installation, One can see a menu on POS configuration settings. +

+ +
+ +
+

+ POS greeting

+

+ Enable the POS greeting then you can see another fields to fill. If you don't have Twilio account create + one and specify the Auth token,Account SID, Twilio number and the body of the greeting. +

+ +
+ +
+

+ Send Greeting to the Customer

+

+ After click this button a greeting will be send to the customer phone number. If you are in offline the + greeting will be send after getting network connection. +

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

Suggested 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/pos_greetings/views/pos_config_settings.xml b/pos_greetings/views/pos_config_settings.xml new file mode 100644 index 000000000..c8ba724ae --- /dev/null +++ b/pos_greetings/views/pos_config_settings.xml @@ -0,0 +1,52 @@ + + + + pos.twilio.config.view.form + pos.config + + + +

POS Greetings

+
+
+
+ +
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/pos_greetings/views/pos_greetings_view.xml b/pos_greetings/views/pos_greetings_view.xml new file mode 100644 index 000000000..3865bcb0b --- /dev/null +++ b/pos_greetings/views/pos_greetings_view.xml @@ -0,0 +1,60 @@ + + + + + view.pos.greetings.tree + pos.greetings + + + + + + + + + + + + view.pos.greetings.form + pos.greetings + +
+ + + + + + + + + + + + + + + + + + +
+
+ +
+ + + POS Greetings + pos.greetings + tree,form + +

POS Greetings +

+
+
+ + +
\ No newline at end of file