@ -0,0 +1,44 @@ |
|||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
||||
|
:alt: License: AGPL-3 |
||||
|
|
||||
|
POS THEME SAPPHIRE |
||||
|
================== |
||||
|
POS Theme Sapphire is a modern point of sale (POS) app theme designed to help businesses streamline their sales operations. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
* No additional configurations needed |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developers: Cybrosys Techno Solutions odoo@cybrosys.com |
||||
|
Version 15: Thasni cp @cybrosys |
||||
|
|
||||
|
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 <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
||||
|
|
||||
|
|
@ -0,0 +1,21 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: THASNI CP (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
################################################################################ |
@ -0,0 +1,59 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
################################################################################ |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
||||
|
# Author: THASNI CP (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
################################################################################ |
||||
|
{ |
||||
|
'name': 'POS Theme Sapphire', |
||||
|
'version': '15.0.1.0.0', |
||||
|
'category': 'Themes/Backend', |
||||
|
'summary': """Minimalist and elegant backend POS theme for Odoo 15""", |
||||
|
'description': 'The POS Theme Sapphire Is A Responsive And Ultimate Theme For Your Odoo V15.' |
||||
|
'This Theme Will Give You A New Experience With Odoo.', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'images': [ |
||||
|
'static/description/banner.png', |
||||
|
'static/description/theme_screenshot.png', |
||||
|
], |
||||
|
'license': 'AGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': False, |
||||
|
'depends': ['base', 'point_of_sale'], |
||||
|
'assets': { |
||||
|
'point_of_sale.assets': [ |
||||
|
'pos_theme_sapphire/static/src/css/custom.css', |
||||
|
], |
||||
|
'web.assets_qweb': [ |
||||
|
'pos_theme_sapphire/static/src/xml/**/CashierName.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/CashMoveButton.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/HeaderButton.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/TicketButton.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/CategoryButton.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/ProductItem.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/ProductScreen.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/ProductsWidget.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/**/ProductsWidgetControlPanel.xml', |
||||
|
'pos_theme_sapphire/static/src/xml/Chrome.xml', |
||||
|
], |
||||
|
}, |
||||
|
} |
@ -0,0 +1,7 @@ |
|||||
|
## Module <pos_theme_sapphire> |
||||
|
|
||||
|
#### 19.06.2023 |
||||
|
#### Version 15.0.1.0.0 |
||||
|
#### ADD |
||||
|
|
||||
|
- Initial commit for POS Theme Sapphire |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 542 B |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 259 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 671 KiB |
After Width: | Height: | Size: 148 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 370 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 259 KiB |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,617 @@ |
|||||
|
<!-- HERO --> |
||||
|
<div class="container shadow style=" margin-left:calc(-42vw + 50%); width:84vw""> |
||||
|
<div class="row" |
||||
|
style="padding: 4rem 2.5rem 0 !important; background-color: #fff !important;"> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h1 class="text-center text-uppercase" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-size: 67px !important; color: #791d97; font-weight: 900 !important;"> |
||||
|
<span style="color:#5154a5;">POS THEME </span> SAPPHIRE<sup> |
||||
|
</h1> |
||||
|
<p class="my-1 text-center text-uppercase" |
||||
|
style="letter-spacing: 4px !important; color: #74788D !important;"> |
||||
|
Minimalist and elegant POS theme for Odoo 15.</p> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center"> |
||||
|
<p class="my-1 text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; color: #212121 !important;"> |
||||
|
POS Theme Sapphire is a modern point of sale (POS) app theme designed to help |
||||
|
businesses streamline their |
||||
|
sales operations. The app enables a user-friendly theme for Odoo 15 POS |
||||
|
community and enterprise editions. |
||||
|
</p> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin: 2rem 0;"> |
||||
|
<img src="./assets/cybro-odoo.png" width="100%" height="auto" style="width:50%;" |
||||
|
class="img-responsive"> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-md-12 text-center "> |
||||
|
<a href="mailto:odoo@cybrosys.com" target="_blank" |
||||
|
style="background-color:#5154a5; border-radius:35px; font-family:Montserrat; display:inline-block; padding:7px 33px; border:1px solid #5154a5" |
||||
|
class="mx-1 mb-2 deep-1 deep_hover"> |
||||
|
<img class="img" style="width:30px" src="assets/icons/support.png"> |
||||
|
<span class="pl-2" style="color:#fff; font-size:16px; vertical-align:middle">Email Us</span> |
||||
|
</a> |
||||
|
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" |
||||
|
style="background-color:#7f289b; font-family:Montserrat; display:inline-block; padding:7px 33px; border:1px solid #7f289b; border-radius:35px" |
||||
|
class="mx-1 mb-2 deep-1 deep_hover"> |
||||
|
<img class="img" style="width:27px" src="assets/icons/whatsapp.png"> |
||||
|
<span class="pl-2" style="color:#fff; font-size:16px; vertical-align:middle">What's App</span> |
||||
|
</a> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- END OF HERO --> |
||||
|
|
||||
|
<!-- Start OF slide --> |
||||
|
|
||||
|
|
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0"> |
||||
|
<img src="assets/screenshots/banner.png" width="100%" height="auto" |
||||
|
class="img-responsive"> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<!-- END OF slide --> |
||||
|
|
||||
|
<section class="oe_container pb-5"> |
||||
|
<div class="mt64 mb64"> |
||||
|
|
||||
|
<h2 class="text-center text-uppercase" |
||||
|
style="font-family: Montserrat, 'sans-serif' !important; font-size: 50px !important; color: #791d97; font-weight: 900 !important;"> |
||||
|
<span style="color:#5154a5;">KEY </span> <b>Highlights</b> <sup> |
||||
|
</h2> |
||||
|
|
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-md-6 col-sm-12 mt32"> |
||||
|
<div class="container shadow" |
||||
|
style="border-radius: 5px;padding: 33px 0px;"> |
||||
|
<div class="col-md-3" style="float:left"> |
||||
|
<img class="img img-responsive" src="assets/icons/test-2.png"> |
||||
|
</div> |
||||
|
<div class="col-md-9" style="padding-left:0; float:left; width:70%"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color: #781d96;"> |
||||
|
Fully responsive </h3> |
||||
|
<p class=" mt8" style="font-family:Roboto ; color: #280135;">Theme |
||||
|
design are now fully responsive enabling you to view and |
||||
|
manage everything from the comfort of your mobile device.</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 mt32"> |
||||
|
<div class="container shadow" |
||||
|
style="border-radius: 5px;padding: 33px 0px;"> |
||||
|
<div class="col-md-3" style="float:left"> |
||||
|
<img class="img img-responsive" src="assets/icons/test-2.png"> |
||||
|
</div> |
||||
|
<div class="col-md-9" style="padding-left:0; float:left; width:70%"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color: #781d96;"> |
||||
|
Modern design</h3> |
||||
|
<p class=" mt8" style="font-family:Roboto ; color: #280135;">The |
||||
|
theme has modern design of a new user experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<!-- New section --> |
||||
|
|
||||
|
<div class="container shadow style=" margin-left:calc(-42vw + 50%); width:84vw""> |
||||
|
<div class="row" |
||||
|
style="padding: 4rem 2.5rem 0 !important; background-color: #fff !important;"> |
||||
|
<div class="col-md-12 shadow"> |
||||
|
<ul role="tablist" |
||||
|
class="nav nav-tabs justify-content-center d-flex justify-content-center" |
||||
|
data-tabs="tabs" |
||||
|
style="border:none; background-color:unset; margin:0 auto"> |
||||
|
<li class="nav-item" |
||||
|
style="border-top-right-radius:10px; border-top-left-radius:10px; background-color:#ffe305; margin-right:10px; border:1px solid #ddd; border-bottom:0"> |
||||
|
<a href="#screenshot-1" data-toggle="tab" aria-expanded="true" |
||||
|
class="show active" |
||||
|
style="font-family:Roboto; text-transform:uppercase; font-weight:600; font-size:15px; letter-spacing:1px; padding:11px 20px; border-top-left-radius:10px; border-top-right-radius:10px; color:#2b2b2b; border:1px solid transparent"> |
||||
|
<img src="assets/icons/screenshot.png" |
||||
|
style="width: 100%; width: 25px; margin-right: 10px;">screenshot |
||||
|
</a> |
||||
|
<span class="border-left-0" |
||||
|
style="float:left; margin-top:-4px; margin-left:-5px; width:5px; height:5px; border:1px solid #ddd; border-top:0; border-radius:0 0 5px 0"></span> |
||||
|
<span class="border-right-0" |
||||
|
style="float:right; margin-top:-4px; margin-right:-5px; width:5px; height:5px; border:1px solid #ddd; border-top:0; border-radius:0 0 0 5px"></span> |
||||
|
</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="col-md-12 tab-content ui-front shadow" |
||||
|
style="border-top-right-radius:15px;border-bottom-right-radius:15px;background-color:#fffafa;height:auto;"> |
||||
|
<div class="tab-pane fade active show" id="screenshot-1" role="tabpanel" |
||||
|
aria-labelledby="screenshot-1"> |
||||
|
<div class="row" |
||||
|
style="padding:4rem 2.5rem 0 !important; background-color:#fff !important"> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h1 class="text-center text-uppercase" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-size:40px !important; color:#791d97; font-weight:900 !important"> |
||||
|
<span style="color:#5154a5">Screenshots </span> <sup> |
||||
|
</sup></h1> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color:#781d96"> |
||||
|
Order Screen</h3> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0 ; border-top: 5px solid #781d96 !important;"> |
||||
|
<img src="assets/screenshots/order_screen_1.png?6ef7fd7" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color:#781d96"> |
||||
|
Payment Screen</h3> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0 ; border-top: 5px solid #781d96 !important;"> |
||||
|
<img src="assets/screenshots/payment_screen_2.png?6ef7fd7" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color:#781d96"> |
||||
|
Customer List Screen</h3> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0 ; border-top: 5px solid #781d96 !important;"> |
||||
|
<img src="assets/screenshots/customer_list_screen_3.png?6ef7fd7" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color:#781d96"> |
||||
|
Orders</h3> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0 ; border-top: 5px solid #781d96 !important;"> |
||||
|
<img src="assets/screenshots/order_4.png?6ef7fd7" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex flex-column align-items-center"> |
||||
|
<h3 class="mt16 mb0" |
||||
|
style="font-family:Roboto; font-weight:500; font-size:22px; color:#781d96"> |
||||
|
Receipt Screen</h3> |
||||
|
</div> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin:2rem 0 ; border-top: 5px solid #781d96 !important;"> |
||||
|
<img src="assets/screenshots/recipet_screen.png?6ef7fd7" |
||||
|
class="img-thumbnail"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<!-- New section --> |
||||
|
|
||||
|
|
||||
|
<section style="margin-top:50px;"> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12-col-lg-2"> |
||||
|
<h2 style="font-weight:bold; color:#3D3D4E">Related Modules</h2> |
||||
|
<p style="color:#777783">Explore our related modules</p> |
||||
|
<hr> |
||||
|
</div> |
||||
|
<div class="col-sm-12"> |
||||
|
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
||||
|
<!-- The slideshow --> |
||||
|
<div class="carousel-inner" style="padding:30px"> |
||||
|
<div class="carousel-item" style="min-height:198.656px"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/export_stockinfo_xls/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/export_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/custom_gantt_view/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/gantt_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/sales_credit_limit/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/credit_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="carousel-item active" style="min-height:198.656px"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/base_account_budget/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/budget_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/product_to_quotation/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/quotation_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" |
||||
|
style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/15.0/employee_documents_expiry/" |
||||
|
target="_blank"> |
||||
|
<div style="border-radius:10px"> |
||||
|
<img class="img img-responsive center-block" |
||||
|
style="border-top-left-radius:10px; border-top-right-radius:10px" |
||||
|
src="./assets/modules/employee_image.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- Left and right controls --> |
||||
|
<a class="carousel-control-prev" href="#demo1" data-slide="prev" |
||||
|
style="width:35px; color:#000"> <span |
||||
|
class="carousel-control-prev-icon"><i class="fa fa-chevron-left" |
||||
|
style="font-size:24px"></i></span> |
||||
|
</a> <a class="carousel-control-next" href="#demo1" data-slide="next" |
||||
|
style="width:35px; color:#000"> |
||||
|
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" |
||||
|
style="font-size:24px"></i></span> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</section> |
||||
|
|
||||
|
<section> |
||||
|
|
||||
|
<div class="d-flex align-items-center" |
||||
|
style="border-bottom:2px solid #714B67; padding:15px 0px"> |
||||
|
<div class="d-flex justify-content-center align-items-center mr-2" |
||||
|
style="background-color:#F5F5F5; border-radius:0px; width:40px; height:40px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/misc/star.png?aedef96"> |
||||
|
</div> |
||||
|
<h2 class="mt-2" |
||||
|
style="font-family:'Montserrat', sans-serif; font-size:24px; font-weight:bold"> |
||||
|
Our Services |
||||
|
</h2> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="container my-5"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#1dd1a1 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/cogs.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Customization</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#ff6b6b !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/wrench.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Implementation</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#6462CD !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/lifebuoy.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Support</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#ffa801 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/user.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Hire |
||||
|
Odoo |
||||
|
Developer</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#54a0ff !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/puzzle.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Integration</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#6d7680 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/update.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Migration</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#786fa6 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/consultation.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Consultancy</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#f8a5c2 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/training.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Implementation</h6> |
||||
|
</div> |
||||
|
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
||||
|
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
||||
|
style="background-color:#e6be26 !important; border-radius:15px !important; height:80px; width:80px"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/16.0/export_stockinfo_xls/assets/icons/license.png?aedef96" |
||||
|
class="img-responsive" height="48px" width="48px"> |
||||
|
</div> |
||||
|
<h6 class="text-center" |
||||
|
style="font-family:Montserrat, 'sans-serif' !important; font-weight:bold"> |
||||
|
Odoo |
||||
|
Licensing Consultancy</h6> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</section> |
||||
|
|
||||
|
|
||||
|
<section class="container" style="margin-top:6rem !important"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
||||
|
<h2 style="color:#212529 !important">Our Industries</h2> |
||||
|
<hr style="border:3px solid #714B67 !important; background-color:#714B67 !important; width:80px !important; margin-bottom:2rem !important"> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/trading-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Trading |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Easily procure |
||||
|
and |
||||
|
sell your products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/pos-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
POS |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Easy |
||||
|
configuration |
||||
|
and convivial experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/education-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Education |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
A platform for |
||||
|
educational management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/manufacturing-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Manufacturing |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Plan, track and |
||||
|
schedule your operations</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/ecom-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
E-commerce & Website |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Mobile |
||||
|
friendly, |
||||
|
awe-inspiring product pages</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/service-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Service Management |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Keep track of |
||||
|
services and invoice</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/restaurant-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Restaurant |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
Run your bar or |
||||
|
restaurant methodically</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-3"> |
||||
|
<div class="my-4 d-flex flex-column justify-content-center" |
||||
|
style="background-color:#f6f8f9 !important; border-radius:10px; padding:2rem !important; height:250px !important"> |
||||
|
<img src="//apps.odoocdn.com/apps/assets/15.0/combo_product_pos/assets/icons/hotel-black.png?2d98612" |
||||
|
class="img-responsive mb-3" height="48px" width="48px"> |
||||
|
<h5 style="font-family:Montserrat, sans-serif !important; color:#000 !important; font-weight:bold"> |
||||
|
Hotel Management |
||||
|
</h5> |
||||
|
<p style="font-family:Montserrat, sans-serif !important; font-size:0.9rem !important"> |
||||
|
An |
||||
|
all-inclusive |
||||
|
hotel management application</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
|
||||
|
<!-- FOOTER --> |
||||
|
<!-- Footer Section --> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12-col-lg-2"> |
||||
|
<h2 style="font-weight:bold; color:#3D3D4E">Support</h2> |
||||
|
<p style="color:#777783">Need help? Get in touch. |
||||
|
</p> |
||||
|
<hr> |
||||
|
</div> |
||||
|
<div class="col-sm-12 col-md-6"> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="background-color:#F6F8F9; padding:30px"> |
||||
|
<div class="mr-4 d-flex justify-content-center align-items-center" |
||||
|
style="background-color:#714B67; height:70px; width:70px"> |
||||
|
<img src="assets/icons/support.png" height="48" width="48" |
||||
|
style="width:42px; height:42px"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4>Need Help?</h4> |
||||
|
<p style="line-height:100%">Got questions or need help? Get in |
||||
|
touch.</p> |
||||
|
<a href="mailto:odoo@cybrosys.com"> |
||||
|
<p style="font-weight:400; font-size:28px; line-height:80%; color:#714B67"> |
||||
|
odoo@cybrosys.com</p> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-sm-12 col-md-6"> |
||||
|
<div class="d-flex align-items-center" |
||||
|
style="background-color:#F6F8F9; padding:30px"> |
||||
|
<div class="mr-4 d-flex justify-content-center align-items-center" |
||||
|
style="background-color:#2AC44D; height:70px; width:70px"> |
||||
|
<img src="assets/icons/whatsapp.png" height="52" width="52" |
||||
|
style="width:52px; height:52px"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4>WhatsApp</h4> |
||||
|
<p style="line-height:100%">Say hi to us on WhatsApp!</p> |
||||
|
<span href="https://api.whatsapp.com/send?phone=918606827707"> |
||||
|
<p style="font-weight:400; font-size:28px; line-height:80%; color:#714B67">+91 |
||||
|
86068 |
||||
|
27707</p> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<!-- Footer --> |
||||
|
<section class="oe_container" |
||||
|
style="padding: 2rem 3rem 1rem; background-color: #fff !important;"> |
||||
|
<div class="row" |
||||
|
style="max-width:1540px; margin: 0 auto; margin-right: 3rem; "> |
||||
|
<!-- Logo --> |
||||
|
<div class="col-lg-12 d-flex justify-content-center align-items-center" |
||||
|
style="margin-top: 3rem;"> |
||||
|
<img src="https://www.cybrosys.com/images/logo.png" |
||||
|
width="200px" height="auto"/> |
||||
|
</div> |
||||
|
<!-- End of Logo --> |
||||
|
</div> |
||||
|
</section> |
||||
|
<!-- END OF FOOTER --> |
||||
|
</div> |
After Width: | Height: | Size: 671 KiB |
@ -0,0 +1,456 @@ |
|||||
|
.main-app { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)); |
||||
|
} |
||||
|
|
||||
|
.main-app .sidebar { |
||||
|
width: 80px; |
||||
|
height: 100%; |
||||
|
left: 0; |
||||
|
top: 0; |
||||
|
bottom: 0; |
||||
|
background: #fff; |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)); |
||||
|
} |
||||
|
|
||||
|
@media (max-width: 768px) { |
||||
|
.main-app .sidebar { |
||||
|
width: 60px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.main-app .main-menu { |
||||
|
margin-block-start: 0; |
||||
|
margin-block-end: 0; |
||||
|
margin-inline-start: 0px; |
||||
|
margin-inline-end: 0px; |
||||
|
padding-inline-start: 0; |
||||
|
display: flex; |
||||
|
flex-direction: column; |
||||
|
align-items: center; |
||||
|
} |
||||
|
|
||||
|
.main-app .menu-item { |
||||
|
list-style: none; |
||||
|
position: relative; |
||||
|
width: 85px; |
||||
|
height: 65px; |
||||
|
} |
||||
|
|
||||
|
.main-app .menu-txt { |
||||
|
opacity: 0; |
||||
|
width: 0px; |
||||
|
min-width: 0px; |
||||
|
overflow: hidden; |
||||
|
transition: 300ms linear; |
||||
|
transition-delay: 250ms; |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
position: relative; |
||||
|
top: 2px; |
||||
|
white-space: nowrap; |
||||
|
overflow: hidden; |
||||
|
} |
||||
|
|
||||
|
.main-app .menu-a { |
||||
|
padding: 35px 33.5px; |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
justify-content: center; |
||||
|
text-decoration: none; |
||||
|
} |
||||
|
|
||||
|
.main-app .menu-icon { |
||||
|
display: block; |
||||
|
font-size: 1.5rem; |
||||
|
color: #fefefe; |
||||
|
position: relative; |
||||
|
z-index: 100; |
||||
|
transition: 400ms; |
||||
|
} |
||||
|
|
||||
|
@media (min-width: 768px) { |
||||
|
.main-app .menu-item:hover .menu-txt { |
||||
|
opacity: 1; |
||||
|
width: 100%; |
||||
|
min-width: 40px; |
||||
|
padding: 0px 10px; |
||||
|
transition-delay: 0s; |
||||
|
color: #4c4c4c; |
||||
|
font-size: 15px; |
||||
|
font-weight: 600; |
||||
|
align-self: center; |
||||
|
} |
||||
|
.main-app .menu-item:hover .menu-icon { |
||||
|
color: #0f0f0f; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.main-app .menu-txt-hld { |
||||
|
position: absolute; |
||||
|
z-index: 99; |
||||
|
background: rgba(255, 255, 255, 0); |
||||
|
border: 1px solid rgba(0, 0, 0, 0); |
||||
|
border-radius: 10px; |
||||
|
font-size: .94rem; |
||||
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0); |
||||
|
padding: 9.5px 8px; |
||||
|
transition: 250ms linear; |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
transition-delay: 300ms; |
||||
|
left: 22px; |
||||
|
} |
||||
|
|
||||
|
@media (min-width: 768px) { |
||||
|
.main-app .menu-item:hover .menu-txt-hld { |
||||
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.07); |
||||
|
background: rgb(255, 255, 255); |
||||
|
border: 1px solid rgba(0, 0, 0, 0.05); |
||||
|
transition-delay: 0ms; |
||||
|
left: 5px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.main-app .active .menu-icon { |
||||
|
color: #223b6e; |
||||
|
} |
||||
|
|
||||
|
.custom-header .card { |
||||
|
margin-left: 20px; |
||||
|
} |
||||
|
.custom-header .top-container{ |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
} |
||||
|
.custom-header .profile-image{ |
||||
|
border-radius: 10px; |
||||
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); |
||||
|
} |
||||
|
.custom-header .name{ |
||||
|
font-size: 15px; |
||||
|
font-weight: bold; |
||||
|
color: #251F1F; |
||||
|
position: relative; |
||||
|
top: 8px; |
||||
|
} |
||||
|
.custom-header .mail{ |
||||
|
font-size: 14px !important; |
||||
|
color: #251F1F; |
||||
|
position: relative; |
||||
|
top: -15px; |
||||
|
} |
||||
|
|
||||
|
.product-card { |
||||
|
display: flex; |
||||
|
flex-direction: column; |
||||
|
align-items: center; |
||||
|
min-width: 100px; |
||||
|
max-width: 120px; |
||||
|
border-radius: 5px; |
||||
|
overflow: hidden; |
||||
|
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); |
||||
|
transition: all 0.3s ease; |
||||
|
margin: 2px; |
||||
|
background-color: white; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
.product-card .title { |
||||
|
font-size: 1.2em; |
||||
|
font-weight: bold; |
||||
|
margin: 10px; |
||||
|
} |
||||
|
|
||||
|
.product-card .price { |
||||
|
color: #888; |
||||
|
margin: 5px; |
||||
|
} |
||||
|
|
||||
|
.pos .product-list { |
||||
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; |
||||
|
} |
||||
|
|
||||
|
.pos .product-img { |
||||
|
width: 85%; |
||||
|
} |
||||
|
|
||||
|
.pos .product-img img { |
||||
|
width: 100%; |
||||
|
height: 130px; |
||||
|
object-fit: contain; |
||||
|
border-radius: 5px; |
||||
|
margin-top: 10px; |
||||
|
} |
||||
|
|
||||
|
.pos .products-widget .products-widget-control { |
||||
|
box-shadow: unset !important; |
||||
|
padding: 5px; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
.pos .rightpane { |
||||
|
background: #ededed !important; |
||||
|
} |
||||
|
|
||||
|
.box{ |
||||
|
position: relative; |
||||
|
margin-left: auto; |
||||
|
right: 10px; |
||||
|
} |
||||
|
@media (max-width: 768px) { |
||||
|
.box{ |
||||
|
position: absolute; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.box .input { |
||||
|
padding: 10px; |
||||
|
width: 36px; |
||||
|
height: 36px; |
||||
|
background: none; |
||||
|
border: 2px solid #251F1F; |
||||
|
border-radius: 50px; |
||||
|
box-sizing: border-box; |
||||
|
font-size: 18px; |
||||
|
color: #251F1F; |
||||
|
outline: none; |
||||
|
transition: .5s; |
||||
|
} |
||||
|
.box:hover input{ |
||||
|
width: 300px; |
||||
|
background: #ffffff; |
||||
|
border-radius: 10px; |
||||
|
} |
||||
|
|
||||
|
.box:hover profile-image { |
||||
|
display: none; |
||||
|
} |
||||
|
|
||||
|
.box i{ |
||||
|
position: absolute; |
||||
|
top: 50%; |
||||
|
right: 1px; |
||||
|
transform: translate(-50%,-50%); |
||||
|
font-size: 18px; |
||||
|
color: #251F1F; |
||||
|
transition: .2s; |
||||
|
background-color: #ededed; |
||||
|
} |
||||
|
.box:hover i{ |
||||
|
opacity: 0; |
||||
|
z-index: -1; |
||||
|
} |
||||
|
|
||||
|
[badge]:after { |
||||
|
background: #a8a8a8; |
||||
|
border-radius: 10rem; |
||||
|
color: #fff; |
||||
|
content: attr(badge); |
||||
|
font-size: small; |
||||
|
min-width: 18px; |
||||
|
padding: 2px; |
||||
|
position: absolute; |
||||
|
text-align: center; |
||||
|
left: 1.7em; |
||||
|
bottom: 1.7em; |
||||
|
z-index: 999; |
||||
|
} |
||||
|
|
||||
|
@media (min-width: 768px) { |
||||
|
.pos .leftpane { |
||||
|
max-width: 500px; |
||||
|
height: calc(100% - 30px); |
||||
|
margin: 15px; |
||||
|
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 47%); |
||||
|
border: unset; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.pos .order-container { |
||||
|
border-radius: 10px 10px 0px 0px; |
||||
|
} |
||||
|
|
||||
|
.pos *::-webkit-scrollbar { |
||||
|
width: 0 !important; |
||||
|
} |
||||
|
|
||||
|
.pos .screen { |
||||
|
background: #ededed !important; |
||||
|
} |
||||
|
|
||||
|
.pos .mode-button.selected-mode { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)); |
||||
|
} |
||||
|
|
||||
|
.pos .button.validation { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)); |
||||
|
} |
||||
|
|
||||
|
.pos .button.validation:hover { |
||||
|
background: linear-gradient(to right bottom, rgb(61 72 142), rgb(63 54 128)) !important; |
||||
|
} |
||||
|
|
||||
|
.pos .order .orderline.selected { |
||||
|
background: rgb(70 71 166 / 33%) !important; |
||||
|
} |
||||
|
|
||||
|
.pos .oe_status { |
||||
|
cursor: default; |
||||
|
} |
||||
|
|
||||
|
.pos .mode-button.selected-mode:hover { |
||||
|
background: linear-gradient(to right bottom, rgb(74 82 131), rgb(58, 46, 141)) !important; |
||||
|
} |
||||
|
|
||||
|
.pos .category-button { |
||||
|
display: inline-flex; |
||||
|
margin: 5px !important; |
||||
|
width: 160px; |
||||
|
height: 60px; |
||||
|
background: #fff; |
||||
|
border: 1px solid #d7d7d7; |
||||
|
border-radius: 10px; |
||||
|
cursor: pointer; |
||||
|
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); |
||||
|
} |
||||
|
|
||||
|
.pos .category-button .category-img { |
||||
|
position: relative; |
||||
|
width: 55px; |
||||
|
text-align: center; |
||||
|
cursor: pointer; |
||||
|
object-fit: contain; |
||||
|
padding: 5px; |
||||
|
height: calc(100% - 10px); |
||||
|
} |
||||
|
|
||||
|
.pos .category-button .category-img img { |
||||
|
object-fit: cover; |
||||
|
width: 100%; |
||||
|
height: 50px; |
||||
|
object-fit: cover; |
||||
|
border-radius: 5px; |
||||
|
} |
||||
|
|
||||
|
.pos .category-button .category-name { |
||||
|
display: inline-grid; |
||||
|
position: relative; |
||||
|
width: unset; |
||||
|
align-content: center; |
||||
|
padding-top: unset; |
||||
|
font-size: 14px; |
||||
|
font-family: 'Roboto', sans-serif; |
||||
|
color: #251F1F; |
||||
|
} |
||||
|
|
||||
|
.pos .category-list { |
||||
|
background: none; |
||||
|
} |
||||
|
|
||||
|
.pos .categories { |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
|
||||
|
.pos .category-list-scroller { |
||||
|
max-height: 85px; |
||||
|
} |
||||
|
|
||||
|
.pos .breadcrumb-button { |
||||
|
color: #251F1F; |
||||
|
} |
||||
|
|
||||
|
.pos .breadcrumb-arrow { |
||||
|
width: 10px; |
||||
|
} |
||||
|
|
||||
|
.pos button, .pos a.button { |
||||
|
color: #484aa8; |
||||
|
} |
||||
|
|
||||
|
.ticket-screen .controls button.highlight { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)); |
||||
|
border-color: #494cab; |
||||
|
} |
||||
|
|
||||
|
.pos .orders .order-row:hover, .pos .orders .order-row.highlight { |
||||
|
background-color: #4544a2d9; |
||||
|
} |
||||
|
|
||||
|
.pos .control-button.highlight, .pos .button.highlight { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)) !important; |
||||
|
border-color: #494cab !important; |
||||
|
} |
||||
|
|
||||
|
.pos .popup .button { |
||||
|
color: #484aa8; |
||||
|
border: 1px solid #484aa8; |
||||
|
} |
||||
|
|
||||
|
.screen .top-content .button { |
||||
|
color: #484aa8; |
||||
|
border: 1px solid #484aa8; |
||||
|
} |
||||
|
|
||||
|
.pos .partnerlist-screen tr.partner-line:hover { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)) !important; |
||||
|
} |
||||
|
|
||||
|
.pos textarea:focus { |
||||
|
box-shadow: 0px 0px 0px 3px #484aa8; |
||||
|
} |
||||
|
|
||||
|
.pos .category-simple-button:active { |
||||
|
color: #484aa8; |
||||
|
} |
||||
|
|
||||
|
.pos .switchpane .btn-switchpane.secondary { |
||||
|
color: #484aa8; |
||||
|
} |
||||
|
|
||||
|
.pos .switchpane .btn-switchpane { |
||||
|
background-color: #484aa8; |
||||
|
} |
||||
|
|
||||
|
.payment-screen .paymentlines-empty .total { |
||||
|
color: #484aa8; |
||||
|
} |
||||
|
|
||||
|
.pos .rightpane-header { |
||||
|
flex-direction: unset; |
||||
|
border-radius: 5px; |
||||
|
} |
||||
|
|
||||
|
.pos .partner-list tr.partner-line.highlight { |
||||
|
background: linear-gradient(to right bottom, rgb(85, 100, 194), rgb(58, 46, 141)) !important; |
||||
|
} |
||||
|
|
||||
|
.menu-item .oe_status i { |
||||
|
font-size: 22px; |
||||
|
} |
||||
|
|
||||
|
.pos .pos-content { |
||||
|
top: 0px !important; |
||||
|
} |
||||
|
|
||||
|
.pos .leftpane .pads { |
||||
|
border-top: solid 3px rgb(115, 117, 217); |
||||
|
} |
||||
|
|
||||
|
.receipt-screen .default-view .actions .send-email button.send.highlight { |
||||
|
color: white; |
||||
|
background-color: rgb(115, 117, 217); |
||||
|
} |
||||
|
|
||||
|
.pos .clientlist-screen .client-list tr.highlight { |
||||
|
transition: all 150ms linear; |
||||
|
background: rgb(115, 117, 217) !important; |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
.pos .actionpad .button.set-customer.decentered { |
||||
|
padding-left: 40px; |
||||
|
padding-right: 5px; |
||||
|
word-break: break-word; |
||||
|
color:white; |
||||
|
background: rgb(115, 117, 217) !important; |
||||
|
} |
@ -0,0 +1,59 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Product Screen section --> |
||||
|
<t t-name="Chrome" t-inherit="point_of_sale.Chrome" t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('pos')]" position="replace"> |
||||
|
<div class="pos" t-att-class="{ 'big-scrollbars': state.hasBigScrollBars }"> |
||||
|
<div class="pos-receipt-print"/> |
||||
|
<t t-if="state.uiState === 'READY'"> |
||||
|
<Portal target="'.pos .status-buttons-portal'"> |
||||
|
<div class="status-buttons"> |
||||
|
<CashierName /> |
||||
|
<SaleDetailsButton t-if="env.pos.proxy.printer" /> |
||||
|
<ProxyStatus t-if="env.pos.config.use_proxy" /> |
||||
|
<ClientScreenButton t-if="clientScreenButtonIsShown" /> |
||||
|
<SyncNotification /> |
||||
|
<HeaderButton /> |
||||
|
</div> |
||||
|
</Portal> |
||||
|
<div class="pos-content"> |
||||
|
<div class="window"> |
||||
|
<div class="subwindow"> |
||||
|
<div class="subwindow-container"> |
||||
|
<div class="subwindow-container-fix screens"> |
||||
|
<t isShown="!tempScreen.isShown" t-component="mainScreen.component" |
||||
|
t-props="mainScreenPropsFielded" t-key="mainScreen.name" /> |
||||
|
<t t-if="tempScreen.isShown" t-component="tempScreen.component" |
||||
|
t-props="tempScreenProps" t-key="tempScreen.name" /> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<DebugWidget t-if="env.isDebug() and state.debugWidgetIsShown" |
||||
|
t-transition="fade" /> |
||||
|
</div> |
||||
|
</t> |
||||
|
<div t-if="['LOADING', 'CLOSING'].includes(state.uiState)" class="loader" t-transition="swing"> |
||||
|
<div class="loader-feedback"> |
||||
|
<h1 class="message"> |
||||
|
<t t-esc="loading.message" /> |
||||
|
</h1> |
||||
|
<div class="progressbar"> |
||||
|
<div class="progress" t-ref="progressbar"/> |
||||
|
</div> |
||||
|
<div t-if="loading.skipButtonIsShown" class="button skip" t-on-click="trigger('loading-skip-callback')"> |
||||
|
Skip |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- Allow popups to be visible at any state of the ui. --> |
||||
|
<div t-if="popup.isShown" class="popups"> |
||||
|
<t t-component="popup.component" t-props="popupProps" |
||||
|
t-key="popup.name" /> |
||||
|
</div> |
||||
|
<Notification t-if="state.notification.isShown" message="state.notification.message" duration="state.notification.duration" t-transition="fade"/> |
||||
|
<NotificationSound t-if="state.sound.src" sound="state.sound" /> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,14 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Cash move function button --> |
||||
|
<t t-name="point_of_sale.CashMoveButton" |
||||
|
t-inherit="point_of_sale.CashMoveButton" t-inherit-mode="extension" |
||||
|
owl="1"> |
||||
|
<xpath expr="//div[hasclass('cash-move-button')]" position="replace"> |
||||
|
<div class="cash-move-button menu-txt-hld" t-on-click="onClick"> |
||||
|
<i class="fa fa-money menu-icon"/> |
||||
|
<span class="menu-txt">Cash In/Out</span> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,18 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Current cashier details --> |
||||
|
<t t-name="CashierName" t-inherit="point_of_sale.CashierName" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('oe_status')]" position="replace"> |
||||
|
<div class="top-container"> |
||||
|
<img t-att-src="avatar" t-att-alt="username" |
||||
|
class="img-fluid profile-image avatar" |
||||
|
width="70"/> |
||||
|
<div style="margin-left: 20px"> |
||||
|
<h5 class="name username"><t t-esc="username"/></h5> |
||||
|
<p class="mail">clark@zmail.com</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,13 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Cashier logout button --> |
||||
|
<t t-name="HeaderButton" t-inherit="point_of_sale.HeaderButton" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('header-button')]" position="replace"> |
||||
|
<div class="header-button menu-txt-hld" t-on-click="onClick"> |
||||
|
<i class="fa fa-sign-out menu-icon"/> |
||||
|
<span class="menu-txt">Logout</span> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,14 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Orders details button --> |
||||
|
<t t-name="TicketButton" t-inherit="point_of_sale.TicketButton" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('ticket-button')]" position="replace"> |
||||
|
<div class="ticket-button menu-txt-hld with-badge" |
||||
|
t-on-click="onClick" t-att-badge="count"> |
||||
|
<i class="fa fa-ticket menu-icon"/> |
||||
|
<span class="menu-txt">Orders</span> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,18 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Category section button --> |
||||
|
<t t-name="CategoryButton" t-inherit="point_of_sale.CategoryButton" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//span[hasclass('category-button')]" position="replace"> |
||||
|
<span class="category-button" |
||||
|
t-on-click="trigger('switch-category', props.category.id)"> |
||||
|
<div class="category-img"> |
||||
|
<img t-att-src="imageUrl" alt="Category"/> |
||||
|
</div> |
||||
|
<div class="category-name"> |
||||
|
<t t-esc="props.category.name"/> |
||||
|
</div> |
||||
|
</span> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,28 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Product item section --> |
||||
|
<t t-name="ProductItem" t-inherit="point_of_sale.ProductItem" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//article[hasclass('product')]" position="replace"> |
||||
|
<div class="product-card" t-on-keypress="spaceClickProduct" |
||||
|
t-on-click="() => this.trigger('click-product', props.product)" |
||||
|
t-att-data-product-id="props.product.id" |
||||
|
t-attf-aria-labelledby="article_product_{{props.product.id}}"> |
||||
|
<i role="img" aria-label="Info" title="Info" |
||||
|
class="product-info-button fa fa-info-circle" |
||||
|
t-on-click.stop="onProductInfoClick()" style="margin-right:85px;margin-top: 10px;" |
||||
|
/> |
||||
|
<div class="product-img"> |
||||
|
<img t-att-src="imageUrl" t-att-alt="props.product.display_name"/> |
||||
|
</div> |
||||
|
<span class="price-tag"> |
||||
|
<t t-esc="price"/> |
||||
|
</span> |
||||
|
<div class="product-name" |
||||
|
t-attf-id="article_product_{{props.product.id}}"> |
||||
|
<t t-esc="props.product.display_name"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,90 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Point of sale order session page --> |
||||
|
<t t-name="ProductScreen" t-inherit="point_of_sale.ProductScreen" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('product-screen')]" position="replace"> |
||||
|
<div class="product-screen screen" |
||||
|
t-att-class="{ oe_hidden: !props.isShown }"> |
||||
|
<div class="screen-full-width"> |
||||
|
<div class="main-app"> |
||||
|
<div class="sidebar"> |
||||
|
<nav class="main-nav" style="height: 100%"> |
||||
|
<ul class="main-menu" style="height: 100%"> |
||||
|
<li class="menu-item"> |
||||
|
<a href="#" class="menu-a" |
||||
|
target="_blank"> |
||||
|
<TicketButton/> |
||||
|
</a> |
||||
|
</li> |
||||
|
<li class="menu-item"> |
||||
|
<a href="#" class="menu-a" |
||||
|
target="_blank"> |
||||
|
<CashMoveButton/> |
||||
|
</a> |
||||
|
</li> |
||||
|
<li class="menu-item"> |
||||
|
</li> |
||||
|
<li class="menu-item"> |
||||
|
</li> |
||||
|
<li class="menu-item"> |
||||
|
<CustomerFacingDisplayButton |
||||
|
t-if="customerFacingDisplayButtonIsShown"/> |
||||
|
</li> |
||||
|
<li class="menu-item" |
||||
|
style="position: absolute; bottom: 60px;"> |
||||
|
<a href="#" class="menu-a" |
||||
|
target="_blank"> |
||||
|
<SyncNotification/> |
||||
|
</a> |
||||
|
</li> |
||||
|
<li class="menu-item" |
||||
|
style="position: absolute; bottom: 5px;"> |
||||
|
<a href="#" class="menu-a" |
||||
|
target="_blank"> |
||||
|
<HeaderButton/> |
||||
|
</a> |
||||
|
</li> |
||||
|
</ul> |
||||
|
</nav> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="rightpane" |
||||
|
t-if="!env.isMobile || state.mobile_pane === 'right'"> |
||||
|
<ProductsWidget |
||||
|
mobileSearchBarIsShown="props.mobileSearchBarIsShown"/> |
||||
|
<MobileOrderWidget t-if="env.isMobile" |
||||
|
pane="state.mobile_pane" |
||||
|
t-on-switchpane="switchPane"/> |
||||
|
</div> |
||||
|
<div class="leftpane pane-border" |
||||
|
t-if="!env.isMobile || state.mobile_pane === 'left'"> |
||||
|
<OrderWidget/> |
||||
|
<div class="pads"> |
||||
|
<div class="control-buttons"> |
||||
|
<t t-if="env.isMobile and controlButtons.length > 3"> |
||||
|
<div class="control-button" |
||||
|
t-on-click="_displayAllControlPopup">More...</div> |
||||
|
</t> |
||||
|
<t t-else=""> |
||||
|
<t t-foreach="controlButtons" t-as="cb" |
||||
|
t-key="cb.name"> |
||||
|
<t t-component="cb.component" |
||||
|
t-key="cb.name"/> |
||||
|
</t> |
||||
|
</t> |
||||
|
</div> |
||||
|
<div class="subpads"> |
||||
|
<t t-set="_actionName">Payment</t> |
||||
|
<ActionpadWidget client="client" |
||||
|
actionName="_actionName" |
||||
|
t-on-switchpane="switchPane"/> |
||||
|
<NumpadWidget activeMode="state.numpadMode"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,30 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Product listing section --> |
||||
|
<t t-name="ProductsWidget" t-inherit="point_of_sale.ProductsWidget" t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('products-widget')]" position="replace"> |
||||
|
<div class="products-widget"> |
||||
|
<div class="product-list-container"> |
||||
|
<ProductsWidgetControlPanel mobileSearchBarIsShown="props.mobileSearchBarIsShown" breadcrumbs="breadcrumbs" |
||||
|
subcategories="subcategories" hasNoCategories="hasNoCategories"/> |
||||
|
<div t-if="productsToDisplay.length != 0" class="product-list"> |
||||
|
<t t-foreach="productsToDisplay" t-as="product" t-key="product.id"> |
||||
|
<ProductItem product="product"/> |
||||
|
</t> |
||||
|
</div> |
||||
|
<div t-else="" class="product-list-empty no-results-message"> |
||||
|
<p t-if="searchWord"> |
||||
|
No product found for <b>"<t t-esc="searchWord"/>"</b> |
||||
|
in this category. |
||||
|
</p> |
||||
|
<p t-else=""> |
||||
|
There are no products in this category. |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="portal search-database-button no-results-message" |
||||
|
t-att-class="{ oe_hidden: !shouldShowButton }"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,59 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<!-- Point of sale order page header section --> |
||||
|
<t t-name="ProductsWidgetControlPanel" t-inherit="point_of_sale.ProductsWidgetControlPanel" |
||||
|
t-inherit-mode="extension" owl="1"> |
||||
|
<xpath expr="//div[hasclass('products-widget-control')]" position="replace"> |
||||
|
<div class="products-widget-control"> |
||||
|
<div class="custom-header"> |
||||
|
<div class="container d-flex justify-content-center oe_status" style="margin-top: 10px"> |
||||
|
<div class="card"> |
||||
|
<div class="top-container"> |
||||
|
<CashierName/> |
||||
|
<div class="box px-3"> |
||||
|
<form name="search"> |
||||
|
<input t-ref="search-word-input-product" type="text" class="input" name="txt" |
||||
|
t-on-keyup="updateSearch"/> |
||||
|
</form> |
||||
|
<i class="fa fa-search" t-on-click="_onPressEnterKey"/> |
||||
|
</div> |
||||
|
<div> |
||||
|
<span class="breadcrumb-button breadcrumb-home" |
||||
|
t-on-click="() => this.trigger('switch-category', 0)"> |
||||
|
<i class="fa fa-home" role="img" aria-label="Home" title="Home" style="font-size: 30px;"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="rightpane-header"> |
||||
|
<t t-if="!props.hasNoCategories"> |
||||
|
<div class="categories-header"> |
||||
|
<div t-if="props.subcategories.length > 0 and !displayCategImages" |
||||
|
class="category-list simple" style="border-radius: 5px; padding: 10px;"> |
||||
|
<t t-foreach="props.subcategories" t-as="category" t-key="category.id"> |
||||
|
<span class="category-simple-button" |
||||
|
t-on-click="() => this.trigger('switch-category', category.id)"> |
||||
|
<t t-esc="category.name"/> |
||||
|
</span> |
||||
|
</t> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
</div> |
||||
|
<t t-if="props.subcategories.length > 0 and displayCategImages"> |
||||
|
<div class="categories"> |
||||
|
<div class="category-list-scroller"> |
||||
|
<div class="category-list"> |
||||
|
<t t-foreach="props.subcategories" t-as="category" t-key="category.id"> |
||||
|
<CategoryButton category="category"/> |
||||
|
</t> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</t> |
||||
|
</templates> |