diff --git a/point_of_sale_logo/README.rst b/point_of_sale_logo/README.rst new file mode 100755 index 000000000..48c175400 --- /dev/null +++ b/point_of_sale_logo/README.rst @@ -0,0 +1,48 @@ +.. 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 + +Point of Sale Logo +==================== +This module helps you to set a logo for every point of sale. This will help you +to identify the point of sale easily. You can also see this logo in pos screen +and pos receipt + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Ammu Raj, 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/point_of_sale_logo/__init__.py b/point_of_sale_logo/__init__.py new file mode 100755 index 000000000..9395760bf --- /dev/null +++ b/point_of_sale_logo/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Ammu Raj (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/point_of_sale_logo/__manifest__.py b/point_of_sale_logo/__manifest__.py new file mode 100755 index 000000000..f76be9040 --- /dev/null +++ b/point_of_sale_logo/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (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': 'Point of Sale Logo', + 'version': '17.0.1.0.0', + 'category': 'Point of Sale', + 'summary': "Logo For Every Point of Sale (Screen & Receipt)", + 'description': "This module helps you to set a logo for every POS" + "This will help you to identify the point of sale easily." + "You can also see this logo in pos screen and pos receipt.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': "Cybrosys Techno Solutions", + 'website': "http://www.cybrosys.com", + 'depends': ['point_of_sale'], + 'data': ['views/pos_config_views.xml'], + 'assets': { + 'point_of_sale._assets_pos': [ + 'point_of_sale_logo/static/src/xml/navbar_logo.xml', + 'point_of_sale_logo/static/src/xml/receipt_logo.xml' + ], + }, + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/point_of_sale_logo/doc/RELEASE_NOTES.md b/point_of_sale_logo/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..2f107710f --- /dev/null +++ b/point_of_sale_logo/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 29.11.2023 +#### Version 17.0.1.0.0 +#### ADD + +- Initial commit for Point of Sale Logo diff --git a/point_of_sale_logo/models/__init__.py b/point_of_sale_logo/models/__init__.py new file mode 100755 index 000000000..5156e12e2 --- /dev/null +++ b/point_of_sale_logo/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Ammu Raj (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_config diff --git a/point_of_sale_logo/models/pos_config.py b/point_of_sale_logo/models/pos_config.py new file mode 100755 index 000000000..6f406ca0e --- /dev/null +++ b/point_of_sale_logo/models/pos_config.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (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 PosConfig(models.Model): + """Inherited pos config for uploading logo image""" + _inherit = 'pos.config' + + image = fields.Binary(string='Image', help="Set logo image for viewing it" + "in POS Screen and Receipt") diff --git a/point_of_sale_logo/static/description/assets/icons/capture (1).png b/point_of_sale_logo/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/capture (1).png differ diff --git a/point_of_sale_logo/static/description/assets/icons/check.png b/point_of_sale_logo/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/check.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/chevron.png b/point_of_sale_logo/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/chevron.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/cogs.png b/point_of_sale_logo/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/cogs.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/consultation.png b/point_of_sale_logo/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/consultation.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/ecom-black.png b/point_of_sale_logo/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/ecom-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/education-black.png b/point_of_sale_logo/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/education-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/hotel-black.png b/point_of_sale_logo/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/hotel-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/img.png b/point_of_sale_logo/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/img.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/license.png b/point_of_sale_logo/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/license.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/lifebuoy.png b/point_of_sale_logo/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/lifebuoy.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/manufacturing-black.png b/point_of_sale_logo/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/manufacturing-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/photo-capture.png b/point_of_sale_logo/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/photo-capture.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/pos-black.png b/point_of_sale_logo/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/pos-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/puzzle.png b/point_of_sale_logo/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/puzzle.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/restaurant-black.png b/point_of_sale_logo/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/restaurant-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/service-black.png b/point_of_sale_logo/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/service-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/trading-black.png b/point_of_sale_logo/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/trading-black.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/training.png b/point_of_sale_logo/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/training.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/update.png b/point_of_sale_logo/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/update.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/user.png b/point_of_sale_logo/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/user.png differ diff --git a/point_of_sale_logo/static/description/assets/icons/wrench.png b/point_of_sale_logo/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/point_of_sale_logo/static/description/assets/icons/wrench.png differ diff --git a/point_of_sale_logo/static/description/assets/misc/Cybrosys R.png b/point_of_sale_logo/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/misc/Cybrosys R.png differ diff --git a/point_of_sale_logo/static/description/assets/misc/email.svg b/point_of_sale_logo/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/phone.svg b/point_of_sale_logo/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/point_of_sale_logo/static/description/assets/misc/star (1) 2.svg b/point_of_sale_logo/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/support (1) 1.svg b/point_of_sale_logo/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/support-email.svg b/point_of_sale_logo/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/tick-mark.svg b/point_of_sale_logo/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/whatsapp 1.svg b/point_of_sale_logo/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/misc/whatsapp.svg b/point_of_sale_logo/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/point_of_sale_logo/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/point_of_sale_logo/static/description/assets/modules/1.gif b/point_of_sale_logo/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/1.gif differ diff --git a/point_of_sale_logo/static/description/assets/modules/2.png b/point_of_sale_logo/static/description/assets/modules/2.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/2.png differ diff --git a/point_of_sale_logo/static/description/assets/modules/3.png b/point_of_sale_logo/static/description/assets/modules/3.png new file mode 100644 index 000000000..cb17cf612 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/3.png differ diff --git a/point_of_sale_logo/static/description/assets/modules/4.jpg b/point_of_sale_logo/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/4.jpg differ diff --git a/point_of_sale_logo/static/description/assets/modules/5.jpg b/point_of_sale_logo/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..5141a7802 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/5.jpg differ diff --git a/point_of_sale_logo/static/description/assets/modules/6.png b/point_of_sale_logo/static/description/assets/modules/6.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/modules/6.png differ diff --git a/point_of_sale_logo/static/description/assets/screenshots/hero.gif b/point_of_sale_logo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..e5e2ee19f Binary files /dev/null and b/point_of_sale_logo/static/description/assets/screenshots/hero.gif differ diff --git a/point_of_sale_logo/static/description/assets/screenshots/poslogo1.png b/point_of_sale_logo/static/description/assets/screenshots/poslogo1.png new file mode 100644 index 000000000..b2abffd88 Binary files /dev/null and b/point_of_sale_logo/static/description/assets/screenshots/poslogo1.png differ diff --git a/point_of_sale_logo/static/description/assets/screenshots/poslogo2.png b/point_of_sale_logo/static/description/assets/screenshots/poslogo2.png new file mode 100644 index 000000000..376a5b74a Binary files /dev/null and b/point_of_sale_logo/static/description/assets/screenshots/poslogo2.png differ diff --git a/point_of_sale_logo/static/description/assets/screenshots/poslogo3.png b/point_of_sale_logo/static/description/assets/screenshots/poslogo3.png new file mode 100644 index 000000000..e7064a75f Binary files /dev/null and b/point_of_sale_logo/static/description/assets/screenshots/poslogo3.png differ diff --git a/point_of_sale_logo/static/description/banner.png b/point_of_sale_logo/static/description/banner.png new file mode 100644 index 000000000..a1209a01f Binary files /dev/null and b/point_of_sale_logo/static/description/banner.png differ diff --git a/point_of_sale_logo/static/description/icon.png b/point_of_sale_logo/static/description/icon.png new file mode 100644 index 000000000..e0a7685bf Binary files /dev/null and b/point_of_sale_logo/static/description/icon.png differ diff --git a/point_of_sale_logo/static/description/index.html b/point_of_sale_logo/static/description/index.html new file mode 100644 index 000000000..7d8ec0553 --- /dev/null +++ b/point_of_sale_logo/static/description/index.html @@ -0,0 +1,668 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Point of Sale Logo

+

+ Logo for Every Point of Sale. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Logo for each Point of Sale.

+

Allows to set Logo for each Point of Sale. +

+
+
+
+
+
+
+ +
+
+

+ Logo in POS screen.

+

You can view the Logo in POS Screen. +

+
+
+
+
+
+
+ +
+
+

+ Logo in POS receipt.

+

+ You can view the Logo in POS Receipt. +

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

+ Here you can set Logo for your Point of + Sale.
+ Note: Please choose the + image with the dimension. + "width:76px; height:47px" for better output +

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

+ POS logo in Receipt. +

+
+
+
+
+
+
+
    +
  • + Logo for each Point of Sale. +
  • +
  • + Logo in POS screen. +
  • +
  • + Logo in POS receipt. +
      +
    +
  • + +
+
+
+
+
+
+
Version + 16.0.1.0.0|Released on:29th November 2023 +
+

+ Initial Commit for Point of Sale Logo.

+
+
+
+
+
+
+
+

+ 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/point_of_sale_logo/static/src/xml/navbar_logo.xml b/point_of_sale_logo/static/src/xml/navbar_logo.xml new file mode 100755 index 000000000..d3bc99d8a --- /dev/null +++ b/point_of_sale_logo/static/src/xml/navbar_logo.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/point_of_sale_logo/static/src/xml/receipt_logo.xml b/point_of_sale_logo/static/src/xml/receipt_logo.xml new file mode 100755 index 000000000..3fbdc732c --- /dev/null +++ b/point_of_sale_logo/static/src/xml/receipt_logo.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/point_of_sale_logo/views/pos_config_views.xml b/point_of_sale_logo/views/pos_config_views.xml new file mode 100755 index 000000000..837fe0f0e --- /dev/null +++ b/point_of_sale_logo/views/pos_config_views.xml @@ -0,0 +1,15 @@ + + + + + pos.config.view.form.inherit.point.of.sale.logo + + pos.config + + + + + + + +