@ -0,0 +1,41 @@ |
|||
.. 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 |
|||
|
|||
Customer Screen POS |
|||
=================== |
|||
This module allow the customer ensure their order and add review about service. |
|||
|
|||
Configuration |
|||
============= |
|||
Enable Customer Screen field in POS settings and also enable options to form screen type. |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
Developer:(V17) Vishnu KP, Contact: odoo@cybrosys.com |
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://cybrosys.com |
|||
|
|||
Bug Tracker |
|||
----------- |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Maintainer |
|||
========== |
|||
.. image:: https://cybrosys.com/images/logo.png |
|||
:target: https://cybrosys.com |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit `Our Website <https://cybrosys.com/>`__ |
|||
|
|||
Further information |
|||
=================== |
|||
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from . import controllers |
|||
from . import models |
@ -0,0 +1,54 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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': "Customer Screen POS", |
|||
'version': '17.0.1.0.0', |
|||
'category': 'Point of Sale', |
|||
'summary': 'POS Customer Screen. ' |
|||
'This helps customers finalize their order and may add rating ' |
|||
'and review.', |
|||
'description': "A separate POS screen for customers to know their ordered " |
|||
"products and add their review and rating about services", |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': 'https://www.cybrosys.com', |
|||
'depends': ['point_of_sale'], |
|||
'data': [ |
|||
'security/ir.model.access.csv', |
|||
'views/res_config_settings_views.xml', |
|||
'views/pos_order_views.xml', |
|||
'views/pos_orderlines_templates.xml', |
|||
], |
|||
'assets': { |
|||
'point_of_sale._assets_pos': [ |
|||
'/customer_screen_pos/static/src/js/pos_systray_icon.js', |
|||
'/customer_screen_pos/static/src/js/product_click.js', |
|||
'/customer_screen_pos/static/src/xml/pos_systray_icon.xml', |
|||
], |
|||
}, |
|||
'images': ['static/description/banner.jpg'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from . import customer_screen_pos |
@ -0,0 +1,87 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
import json |
|||
from odoo import http |
|||
from odoo.http import request |
|||
|
|||
|
|||
class AddMyProductReview(http.Controller): |
|||
""" AddMyProductReview class provides the functionality of creating |
|||
templates and model records about customer screen and customer reviews |
|||
Methods: |
|||
add_my_review(self, orderlinelist, total): |
|||
This get the order lines from pos and create a screen template |
|||
and return into pos js fil |
|||
customer_screen_pos(self): |
|||
For create default template for merge customer screen template |
|||
customer_review(self, review): |
|||
For create new records in model "pos.order.review" based on |
|||
customer review that we got from customer screen """ |
|||
@http.route('/add/my/review', type='json', auth='public') |
|||
def add_my_review(self, orderlinelist, total): |
|||
|
|||
"""For pass records into order-lines template and return template body |
|||
to js file for generate new page""" |
|||
response = http.Response( |
|||
template='customer_screen_pos.customer_pos_screen', |
|||
qcontext={'orderlinelist': orderlinelist, 'total': total}) |
|||
return response.render() |
|||
|
|||
@http.route(['/customer/screen/'], type='http', auth="user", |
|||
website=True) |
|||
def customer_screen_pos(self): |
|||
"""Default customer screen for merge orders list and review template""" |
|||
return (request.render |
|||
("customer_screen_pos.customer_screen_pos_main_page")) |
|||
|
|||
@http.route(['/customer/review/<review>'], type='json', auth="none", |
|||
website=False, csrf=False) |
|||
def customer_review(self, review): |
|||
"""Get review and rating from customer screen and store into a new |
|||
model based on pos order reference""" |
|||
data = json.loads(review) |
|||
review_text = data[0]["review_text"] |
|||
review_star = data[0]["review_star"] |
|||
pos_order_review = request.env['pos.order.review'].sudo().search([]) |
|||
reviews_refer = [review_ref.pos_order_ref for review_ref in |
|||
pos_order_review] |
|||
if data[0]["order_name"] not in reviews_refer: |
|||
request.env['pos.order.review'].sudo().create({ |
|||
'review_text': review_text if review_text else None, |
|||
'review_star': review_star if review_star else None, |
|||
'pos_session': data[0]["session"] if data[0][ |
|||
"session"] else None, |
|||
'partner': data[0]["partner_id"] if data[0][ |
|||
"partner_id"] else None, |
|||
'pos_order_ref': data[0]["order_name"] if data[0][ |
|||
"order_name"] else None, |
|||
}) |
|||
else: |
|||
request.env['pos.order.review'].sudo().search( |
|||
[('pos_order_ref', '=', data[0]['order_name'])]).sudo().write({ |
|||
'review_text': review_text if review_text else None, |
|||
'review_star': review_star if review_star else None, |
|||
'pos_session': data[0]["session"] if data[0][ |
|||
"session"] else None, |
|||
'partner': data[0]["partner_id"] if data[0][ |
|||
"partner_id"] else None, |
|||
}) |
@ -0,0 +1,6 @@ |
|||
## Module <customer_screen_pos> |
|||
|
|||
#### 04.03.2024 |
|||
#### Version 16.0.1.0.0 |
|||
#### ADD |
|||
- Initial commit for Customer Screen POS |
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from . import pos_config |
|||
from . import pos_order |
|||
from . import pos_order_review |
|||
from . import res_config_settings |
@ -0,0 +1,37 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class PosConfig(models.Model): |
|||
"""Extend functionality of Point of Sale Configuration""" |
|||
_inherit = 'pos.config' |
|||
|
|||
allow_customer_screen = fields.Boolean(string="Customer Screen", |
|||
help='Allows the screen share with' |
|||
'the customers') |
|||
allow_systray_icon = fields.Boolean(string="Allow Systray Button", |
|||
help='Allows the customer to set ' |
|||
'screen open button in systray') |
|||
allow_product_click = fields.Boolean(string="Allow Product Click", |
|||
help='Allows the customer to set ' |
|||
'screen open when click product') |
@ -0,0 +1,78 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from functools import partial |
|||
from odoo import api, fields, models |
|||
|
|||
|
|||
class PosOrder(models.Model): |
|||
"""Extend functionality of Point of Sale Order""" |
|||
_inherit = 'pos.order' |
|||
|
|||
rating = fields.Selection([ |
|||
('0', '0'), |
|||
('1', '1'), |
|||
('2', '2'), |
|||
('3', '3'), |
|||
('4', '4'), |
|||
('5', '5'), |
|||
], default='5', string="Rating", help="Rating Stars") |
|||
rating_text = fields.Text(string="Feedback", help='Feedback of customers') |
|||
|
|||
@api.model |
|||
def _order_fields(self, ui_order): |
|||
"""Function to fetch order details from POS and return to POS order""" |
|||
process_line = partial(self.env['pos.order.line']._order_line_fields, |
|||
session_id=ui_order['pos_session_id']) |
|||
pos_order_review = self.env['pos.order.review'].search( |
|||
[('pos_order_ref', '=', ui_order['name'])]) |
|||
return { |
|||
'user_id': ui_order['user_id'] or False, |
|||
'session_id': ui_order['pos_session_id'], |
|||
'lines': [process_line(lines) for lines in ui_order['lines']] if |
|||
ui_order[ |
|||
'lines'] else False, |
|||
'pos_reference': ui_order['name'], |
|||
'sequence_number': ui_order['sequence_number'], |
|||
'partner_id': ui_order['partner_id'] or False, |
|||
'date_order': ui_order['date_order'], |
|||
'fiscal_position_id': ui_order['fiscal_position_id'], |
|||
'pricelist_id': ui_order['pricelist_id'], |
|||
'amount_paid': ui_order['amount_paid'], |
|||
'last_order_preparation_change': ui_order['last_order_preparation_change'], |
|||
'amount_total': ui_order['amount_total'], |
|||
'amount_tax': ui_order['amount_tax'], |
|||
'amount_return': ui_order['amount_return'], |
|||
'company_id': self.env['pos.session'].browse( |
|||
ui_order['pos_session_id']).company_id.id, |
|||
'to_invoice': ui_order[ |
|||
'to_invoice'] if "to_invoice" in ui_order else False, |
|||
'shipping_date': ui_order['shipping_date'] if "shipping_date" in ui_order else False, |
|||
'is_tipped': ui_order.get('is_tipped', False), |
|||
'tip_amount': ui_order.get('tip_amount', 0), |
|||
'access_token': ui_order.get('access_token', ''), |
|||
'rating': ("1" if pos_order_review.review_star == "star1" else |
|||
"2" if pos_order_review.review_star == "star2" else |
|||
"3" if pos_order_review.review_star == "star3" else |
|||
"4" if pos_order_review.review_star == "star4" else |
|||
"5"), |
|||
'rating_text': pos_order_review.review_text |
|||
} |
@ -0,0 +1,41 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class PoSOrderReview(models.Model): |
|||
"""PoSOrderReview provides option to store customers reviews for their |
|||
POS orders in database""" |
|||
_name = 'pos.order.review' |
|||
_description = "POS Order Reviews" |
|||
|
|||
review_text = fields.Char(string="Review text", |
|||
help='To store review of customer' |
|||
'from customer screen') |
|||
review_star = fields.Char(string="Review Star", |
|||
help='To store rating of customer' |
|||
'from customer screen') |
|||
pos_session = fields.Integer(string="POS Session", |
|||
help='To store session id of pos') |
|||
partner = fields.Integer(string="Partner Id", help='for partner') |
|||
pos_order_ref = fields.Char(string="POS Order Reference", |
|||
help='To store each order reference') |
@ -0,0 +1,44 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Vishnu KP (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/>. |
|||
# |
|||
############################################################################### |
|||
from odoo import fields, models |
|||
|
|||
|
|||
class ResConfigSettings(models.TransientModel): |
|||
"""This model extends the base configuration settings for Point of Sale |
|||
configurations.""" |
|||
_inherit = 'res.config.settings' |
|||
|
|||
allow_customer_screen = fields.Boolean(string="Customer Screen", |
|||
related="pos_config_id.allow_customer_screen", |
|||
readonly=False, |
|||
help='Allows the screen share with ' |
|||
'the customers') |
|||
allow_systray_icon = fields.Boolean(string="Allow Systray Button", |
|||
related="pos_config_id.allow_systray_icon", |
|||
readonly=False, |
|||
help='Allows the customer to set ' |
|||
'screen open button in systray') |
|||
allow_product_click = fields.Boolean(string="Allow Product Click", |
|||
related="pos_config_id.allow_product_click", |
|||
readonly=False, |
|||
help='Allows the customer to set ' |
|||
'screen open when click product') |
|
After Width: | Height: | Size: 36 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: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
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: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 158 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 10 KiB |
@ -0,0 +1,595 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>Odoo App 3 Index</title> |
|||
<!-- Bootstrap CSS --> |
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
|||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
|||
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> |
|||
</head> |
|||
<body> |
|||
<section> |
|||
<div class="container" style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" |
|||
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> |
|||
<div class="my-3"> |
|||
<img src="assets/misc/Cybrosys R.png" |
|||
style="width:auto !important; height:40px !important"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div class="text-center" |
|||
style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
|||
Community |
|||
</div> |
|||
<div class="text-center" |
|||
style="background-color:#875A7B !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important;min-width: 120px !important;"> |
|||
Enterprise |
|||
</div> |
|||
<div class="text-center" |
|||
style="background-color:#7C7BAD !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
|||
Odoo.sh |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" |
|||
style="margin: 80px 0px !important;"> |
|||
<h1 style="font-size: 2.8rem;font-weight: 700; color: |
|||
#1A202C;"> |
|||
Customer Screen POS</h1> |
|||
<p class="my-3 mb-4" |
|||
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
|||
Screen for Customers to Ensure their Order and Remark their Opinions. |
|||
</p> |
|||
<div style="width: 80%; margin-top: 3rem;"> |
|||
<img src="assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5 mb-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#714b67 !important">Key Highlights |
|||
</p> |
|||
</div> |
|||
<div class="row py-4"> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Display the product on the customer screen.</p> |
|||
<p class="m-0" style="color:#718096">Display of the items being scanned or added to the cart |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Real-time updates.</p> |
|||
<p class="m-0" style="color:#718096">Real-time updates as items are added, removed, or modified in the order. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 col-sm-12 p-3"> |
|||
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
|||
background: #FFF; |
|||
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
|||
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
|||
display: flex; justify-content: center; align-items: center; |
|||
margin-right: 10px; flex-shrink: 0;"> |
|||
<i class="fa-solid fa-star " style="color: #fff;font-size:14px;"></i> |
|||
</div> |
|||
<div> |
|||
<p style="color: #1A202C;font-weight: 600; |
|||
font-size: 1.2rem; margin-bottom: 2px;"> |
|||
Option to collect customer feedback.</p> |
|||
<p class="m-0" style="color:#718096">The |
|||
Option to collect customer feedback or ratings for their shopping experience. |
|||
</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container rounded" > |
|||
<ul class="nav nav-tabs d-flex" style="width: fit-content;margin: 0 auto;gap: 1rem;"> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
class="active show" data-toggle="tab" href="#tab1" |
|||
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> |
|||
<i class="fa-regular fa-image pr-2" style="color: #fff;"></i> |
|||
Screenshots</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
data-toggle="tab" href="#tab2" |
|||
style="color: #fff;font-weight: 500; text-decoration: none;"><i |
|||
class="fa-solid fa-star pr-2" style="color: #fff;"></i>Features</a></li> |
|||
<li class="col text-center py-2 text-nowrap " |
|||
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"><a |
|||
data-toggle="tab" href="#tab3" |
|||
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i |
|||
class="fa-solid fa-book-open pr-2" style="color: #fff;"></i>Released Notes</a></li> |
|||
</ul> |
|||
<div class="tab-content" style="background-color: rgba(121, 113, 119, 0.04);"> |
|||
<div id="tab1" class="tab-pane fade in active show"> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/ss1.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Enable option from settings</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important">Enable Customer Screen Allow option from Settings, also enable methods to show customer screen</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/ss2.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Customer screen Option in systray</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"></h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-lg-12 py-2" style="padding: 1rem 4rem !important;"> |
|||
<div |
|||
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="row justify-content-center p-3 w-100 m-0"> |
|||
<img src="assets/screenshots/ss3.png" class="img-responsive" width="100%" height="auto"> |
|||
</div> |
|||
<div class="px-3"> |
|||
<h4 class="mt-2" |
|||
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
|||
Customer Screen</h4> |
|||
<h6 class="mt-2" |
|||
style=" font-weight:300 !important; color:#282F33 !important; font-size:0.7rem !important"> |
|||
The View of Customer Screen with Order lines and a button to open the Modal of Review Section</h6> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div id="tab2" class="tab-pane fade"> |
|||
<div class="col-mg-12" style="padding: 1rem 4rem;"> |
|||
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Order details in the second screen |
|||
</li> |
|||
<li class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<span style="margin-right: 12px;"><img src="assets/misc/star (1) 2.svg" alt="" |
|||
width="16px"></span>Real time updation of the order |
|||
</li> |
|||
</ul> |
|||
</div> |
|||
</div> |
|||
<div id="tab3" class="tab-pane fade"> |
|||
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> |
|||
<div class="py-3" |
|||
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
|||
<div class="d-flex mb-3" style="font-size: 0.8rem; font-weight: 500;"><span>Version |
|||
17.0.1.0.0</span><span class="px-2">|</span><span |
|||
style="color: #714B67;font-weight: 600;">Released on:27th Mar 2024</span> |
|||
</div> |
|||
<p class="m-0" |
|||
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
|||
Odoo 17 Customer Screen POS </p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Related Products</p> |
|||
</div> |
|||
</div> |
|||
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/invoice_format_editor/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/m1.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Invoice Format Editor</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/inventory_barcode_scanning/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/m2.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Barcode scanning in Inventory</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/whatsapp_redirect/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/m3.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Send Whatsapp Message</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item"> |
|||
<div class="row p-4"> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/base_account_budget/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px; "> |
|||
<img src="assets/modules/m4.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Budget Management</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/product_barcode/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/m5.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Product Barcode Generator</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="col"> |
|||
<div class="p-3"> |
|||
<a href="https://apps.odoo.com/apps/modules/17.0/export_stockinfo_xls/" |
|||
style="color: #000; text-decoration: none;"> |
|||
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
|||
<div style="width: 300px;"> |
|||
<img src="assets/modules/m6.png" |
|||
alt="" width="100%" |
|||
height="auto"> |
|||
</div> |
|||
<p class="text-center pt-2 text-black font-weight-bold"> |
|||
Export Product Stock in Excel</p> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<a class="carousel-control-prev" href="#myCarousel" |
|||
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="#myCarousel" |
|||
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 class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Services</p> |
|||
|
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row py-3"> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/cogs.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Customization</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/wrench.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/lifebuoy.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/user.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Hire Odoo Developer</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
|||
|
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/puzzle.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Integration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/update.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Migration</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/consultation.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Consultancy</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/training.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Implementation</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-4 col-sm-6 px-4 py-4"> |
|||
<div |
|||
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
|||
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
|||
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
|||
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
|||
<img src="assets/icons/license.png" alt="service-icon" width="38px" height="auto"> |
|||
</div> |
|||
</div> |
|||
<p style="margin-top: 20px; font-weight: bold;">Odoo Licensing Consultancy</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Our Industries</p> |
|||
</div> |
|||
</div> |
|||
<div class="container"> |
|||
<div class="row my-5 py-4"> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100 " |
|||
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/trading-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
|||
<p>Easily procure and sell your products</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/pos-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
|||
<p>Easy configuration and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> |
|||
<img src="assets/icons/education-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Education</p> |
|||
<p>A platform for educational management</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/manufacturing-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Manufacturing</p> |
|||
<p>Plan, track and schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> |
|||
<img src="assets/icons/ecom-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & Website</p> |
|||
<p>Mobile friendly, awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/service-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Service Management</p> |
|||
<p>Keep track of services and invoice</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> |
|||
<img src="assets/icons/restaurant-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Restaurant</p> |
|||
<p>Run your bar or restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-3 col-sm-6 p-0"> |
|||
<div class="d-flex flex-column h-100" |
|||
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> |
|||
<img src="assets/icons/hotel-black.png" width="42px" height="auto" alt=""> |
|||
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
|||
font-size: 1.2rem; margin-bottom: 2px;">Hotel Management</p> |
|||
<p>An all-inclusive hotel management application</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container mt-5"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
|||
<p class="m-0" style="font-weight: 600; font-size: 24px; color:#000 !important">Support</p> |
|||
</div> |
|||
</div> |
|||
<div class="container my-5"> |
|||
<div class="row" style="background-color: #FFFAFE;"> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
|||
style="border-right: 1px solid #D9D9D9;"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/support (1) 1.svg" alt="" width="60px" style="margin-right: 12px;"> |
|||
<div style="padding: 0px 8px;"> |
|||
<span |
|||
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need |
|||
Help?</span> |
|||
<p class="m-0" style="color:#718096;">Got questions or need help? Get in touch.</p> |
|||
<div style="font-weight: 400;"><span><img src="assets/misc/support-email.svg" alt="" |
|||
width="18px" |
|||
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
|||
<div style="padding: 30px;"> |
|||
<div class="d-flex align-items-center"> |
|||
<img src="assets/misc/whatsapp 1.svg" alt="" width="60px" style="margin-right: 12px;"> |
|||
<div> |
|||
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
|||
<p class="m-0" style="color:#718096;">Say hi to us on WhatsApp!</p> |
|||
<div style="font-weight: 400; font-size: 16px;"><span><img src="assets/misc/phone.svg" |
|||
alt="" width="14px" |
|||
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 |
|||
99456767686</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- Optional JavaScript --> |
|||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
|||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
|||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,100 @@ |
|||
.pos_orderlines_list { |
|||
box-shadow: 0 0.1vh 0.1vh #aaaaaa; |
|||
color: #3E3E3E; |
|||
background-color: white; |
|||
height: 100%; |
|||
overflow-y: scroll; |
|||
} |
|||
.pos_orderlines { |
|||
padding-right: 1.5vw; |
|||
position: relative; |
|||
background-color: blue; |
|||
height: 100%; |
|||
overflow-y: scroll; |
|||
|
|||
} |
|||
table.pos_orderlines_items.pos_orderlines_header { |
|||
margin-left: auto; |
|||
} |
|||
|
|||
/* star */ |
|||
*{ |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
.rate { |
|||
float: left; |
|||
height: 46px; |
|||
padding: 0 10px; |
|||
} |
|||
.rate:not(:checked) > input { |
|||
position: absolute; |
|||
top: -9999px; |
|||
} |
|||
.rate:not(:checked) > label { |
|||
float: right; |
|||
width: 1em; |
|||
overflow: hidden; |
|||
white-space: nowrap; |
|||
cursor: pointer; |
|||
font-size: 30px; |
|||
color: #ccc; |
|||
} |
|||
.rate:not(:checked) > label:before { |
|||
content: '★ '; |
|||
} |
|||
.rate > input:checked ~ label { |
|||
color: #ffc700; |
|||
} |
|||
.rate:not(:checked) > label:hover, |
|||
.rate:not(:checked) > label:hover ~ label { |
|||
color: #deb217; |
|||
} |
|||
.rate > input:checked + label:hover, |
|||
.rate > input:checked + label:hover ~ label, |
|||
.rate > input:checked ~ label:hover, |
|||
.rate > input:checked ~ label:hover ~ label, |
|||
.rate > label:hover ~ input:checked ~ label { |
|||
color: #c59b08; |
|||
} |
|||
/* star */ |
|||
|
|||
/* The Modal (background) */ |
|||
.modal { |
|||
display: none; /* Hidden by default */ |
|||
position: fixed; /* Stay in place */ |
|||
z-index: 1; /* Sit on top */ |
|||
left: 0; |
|||
top: 0; |
|||
width: 100%; |
|||
height: 100%; |
|||
background-color: rgba(0, 0, 0, 0.5); /* Black background with |
|||
opacity */ |
|||
} |
|||
|
|||
/* Modal Content */ |
|||
.modal-content { |
|||
background-color: #fefefe; |
|||
margin: 15% auto; |
|||
padding: 20px; |
|||
border: 1px solid #888; |
|||
width: 30%; |
|||
} |
|||
|
|||
/* Close Button */ |
|||
.close { |
|||
color: #aaa; |
|||
float: right; |
|||
font-size: 28px; |
|||
font-weight: bold; |
|||
} |
|||
.close:hover, |
|||
.close:focus { |
|||
color: black; |
|||
text-decoration: none; |
|||
cursor: pointer; |
|||
} |
|||
|
|||
.cust_scrn #wrapwrap { |
|||
display: none; |
|||
} |
@ -0,0 +1,72 @@ |
|||
body{ |
|||
background-color: #eee; |
|||
} |
|||
|
|||
div.stars { |
|||
|
|||
width: 270px; |
|||
|
|||
display: inline-block; |
|||
|
|||
} |
|||
|
|||
.mt-200{ |
|||
margin-top:200px; |
|||
} |
|||
|
|||
input.star { display: none; } |
|||
|
|||
|
|||
|
|||
label.star { |
|||
|
|||
float: right; |
|||
|
|||
padding: 10px; |
|||
|
|||
font-size: 36px; |
|||
|
|||
color: #4A148C; |
|||
|
|||
transition: all .2s; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
input.star:checked ~ label.star:before { |
|||
|
|||
content: '\f005'; |
|||
|
|||
color: #FD4; |
|||
|
|||
transition: all .25s; |
|||
|
|||
} |
|||
|
|||
|
|||
input.star-5:checked ~ label.star:before { |
|||
|
|||
color: #FE7; |
|||
|
|||
text-shadow: 0 0 20px #952; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
input.star-1:checked ~ label.star:before { color: #F62; } |
|||
|
|||
|
|||
|
|||
label.star:hover { transform: rotate(-15deg) scale(1.3); } |
|||
|
|||
|
|||
|
|||
label.star:before { |
|||
|
|||
content: '\f006'; |
|||
|
|||
font-family: FontAwesome; |
|||
|
|||
} |
@ -0,0 +1,53 @@ |
|||
var modal = document.getElementById("myModal"); |
|||
var openModalBtn = document.getElementById("openModalBtn"); |
|||
var closeModal = document.getElementById("closeModal"); |
|||
|
|||
openModalBtn.addEventListener("click", function() { |
|||
modal.style.display = "block"; |
|||
}); |
|||
closeModal.addEventListener("click", function() { |
|||
modal.style.display = "none"; |
|||
}); |
|||
window.addEventListener("click", function(event) { |
|||
if (event.target == modal) { |
|||
modal.style.display = "none"; |
|||
} |
|||
}); |
|||
var review_star; |
|||
|
|||
function getStar() { |
|||
const starInputs = document.querySelectorAll('.stars input[type="radio"]'); |
|||
let selectedValue; |
|||
starInputs.forEach((input) => { |
|||
if (input.checked) { |
|||
selectedValue = input.value; |
|||
} |
|||
}); |
|||
review_star = selectedValue |
|||
} |
|||
|
|||
function myFunction() { |
|||
var pos_order = [] |
|||
var review_text = document.getElementById("productRating").value; |
|||
pos_order.push({ |
|||
'review_text': review_text, |
|||
'review_star': review_star, |
|||
'session': document.querySelector('.session_id').value, |
|||
'partner_id': document.querySelector('.partner_id').value, |
|||
'order_name': document.querySelector('.order_name').value |
|||
}) |
|||
var review = JSON.stringify(pos_order) |
|||
$.ajax({ |
|||
url: '/customer/review/' + review, |
|||
type: 'post', |
|||
contentType: 'Application/json', |
|||
dataType: 'Application/json', |
|||
data: JSON.stringify({ |
|||
main: review |
|||
}), |
|||
success: function(data) {}, |
|||
error: function(data) {} |
|||
}) |
|||
modal.style.display = "none"; |
|||
} |
|||
|
@ -0,0 +1,51 @@ |
|||
/** @odoo-module */ |
|||
import { Navbar } from "@point_of_sale/app/navbar/navbar"; |
|||
import { jsonrpc } from "@web/core/network/rpc_service"; |
|||
import { patch } from "@web/core/utils/patch"; |
|||
|
|||
patch(Navbar.prototype, { |
|||
onClick() { |
|||
var self = this; |
|||
var total = 0 |
|||
var totalvalues = this.pos.selectedOrder.orderlines |
|||
totalvalues.forEach(function (totalvalues) { |
|||
total = total + (totalvalues.price * totalvalues.quantity) |
|||
}) |
|||
var orderlines = this.pos.selectedOrder.orderlines |
|||
var orderlinelist = []; |
|||
orderlines.forEach(function(orderline) { |
|||
// Perform operations with each orderline here
|
|||
if (!orderlinelist.includes(orderline.product.display_name)) { |
|||
orderlinelist.push({ |
|||
'id' : orderline.product.id, |
|||
'name' : orderline.product.display_name, |
|||
'price' : (orderline.price * orderline.quantity), |
|||
'qty' : orderline.quantity, |
|||
'session': self.pos.selectedOrder.pos_session_id, |
|||
'partner_id': self.pos.selectedOrder.partner ? self.pos.selectedOrder.partner.id : null, |
|||
'order_name': self.pos.selectedOrder.name, |
|||
'total': total |
|||
}); |
|||
} |
|||
}); |
|||
jsonrpc('/add/my/review', {'orderlinelist': orderlinelist, 'total': total}) |
|||
.then(function (result) { |
|||
var encodedResult = result |
|||
var url = "/customer/screen/"; |
|||
fetch(url) |
|||
.then(function (response) { |
|||
return response.text(); |
|||
}) |
|||
.then(function (data) { |
|||
var modifiedData = data.replace('<body>', '<body>' + encodedResult); |
|||
var newWindow = window.open("", 'Customer Display Screen', 'height=500,width=900'); |
|||
newWindow.document.open(); |
|||
newWindow.document.write(modifiedData); |
|||
newWindow.document.close(); |
|||
}) |
|||
.catch(function (error) { |
|||
}); |
|||
}) |
|||
return this.pos.selectedOrder; |
|||
} |
|||
}); |
@ -0,0 +1,66 @@ |
|||
/** @odoo-module **/ |
|||
|
|||
/** |
|||
Function for generating customer screen when selecting a product to order |
|||
lines |
|||
*/ |
|||
import { patch } from "@web/core/utils/patch"; |
|||
import { Order } from "@point_of_sale/app/store/models"; |
|||
import { PosStore } from "@point_of_sale/app/store/pos_store"; |
|||
import { jsonrpc } from "@web/core/network/rpc_service"; |
|||
var encodedResult |
|||
|
|||
patch(PosStore.prototype, { |
|||
/** |
|||
In here we get order-line records from pos and pass to controller for |
|||
creating template for customer screen using records, |
|||
In ajax then function we get customer screen template body then we merge |
|||
it with a demo template |
|||
*/ |
|||
async addProductToCurrentOrder(product, options = {}) { |
|||
await super.addProductToCurrentOrder(product, options = {}) |
|||
|
|||
var self = this |
|||
var total = 0 |
|||
var totalvalues = self.selectedOrder.orderlines |
|||
totalvalues.forEach(function (totalvalues) { |
|||
total = total + (totalvalues.price * totalvalues.quantity)}) |
|||
var orderlines = this.selectedOrder.orderlines |
|||
var orderlinelist = []; |
|||
orderlines.forEach(function(orderline) { |
|||
|
|||
// Perform operations with each orderline here
|
|||
if (!orderlinelist.includes(orderline.product.display_name)) { |
|||
orderlinelist.push({ |
|||
'id' : orderline.product.id, |
|||
'name' : orderline.product.display_name, |
|||
'price' : (orderline.price * orderline.quantity), |
|||
'qty' : orderline.quantity, |
|||
'session': self.selectedOrder.pos_session_id, |
|||
'partner_id': self.selectedOrder.partner ? self.selectedOrder.partner.id : null, |
|||
'order_name': self.selectedOrder.name, |
|||
'total': total |
|||
}); |
|||
} |
|||
}); |
|||
jsonrpc('/add/my/review', {'orderlinelist': orderlinelist, 'total': total}) |
|||
.then(function (result) { |
|||
encodedResult = result |
|||
var url = "/customer/screen/"; |
|||
fetch(url) |
|||
.then(function (response) { |
|||
return response.text(); |
|||
}) |
|||
.then(function (data) { |
|||
var modifiedData = data.replace('<body>', '<body>' + encodedResult + '</body>'); |
|||
var newWindow = window.open("", 'Customer Display Screen', 'height=500,width=900'); |
|||
newWindow.document.open(); |
|||
newWindow.document.write(modifiedData); |
|||
newWindow.document.close(); |
|||
}) |
|||
.catch(function (error) { |
|||
}); |
|||
}) |
|||
return this.selectedOrder; |
|||
} |
|||
}); |
@ -0,0 +1,18 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<templates id="template" xml:space="preserve"> |
|||
<t t-inherit="point_of_sale.Navbar" t-inherit-mode="extension"> |
|||
<xpath expr="//div[hasclass('status-buttons')]" position="inside"> |
|||
<t t-if="this.pos.config"> |
|||
<t t-if="this.pos.config.allow_systray_icon"> |
|||
<div class="ticket-button" style="color:red"> |
|||
<div class="with-badge" t-att-badge="count"> |
|||
<i class="fa fa-desktop" aria-hidden="true" |
|||
t-on-click="() => this.onClick()"/> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</t> |
|||
</xpath> |
|||
</t> |
|||
</templates> |
@ -0,0 +1,15 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<!-- Inheriting POS order view for add custom fields --> |
|||
<record id="view_pos_pos_form" model="ir.ui.view"> |
|||
<field name="name">pos.order.view.form.inherit.customer.screen.pos</field> |
|||
<field name="model">pos.order</field> |
|||
<field name="inherit_id" ref="point_of_sale.view_pos_pos_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='pos_reference']" position="after"> |
|||
<field name="rating" widget="priority"/> |
|||
<field name="rating_text"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,140 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<template id="customer_pos_screen" name="POS Customer Screen"> |
|||
<!-- Template of Customer Screen --> |
|||
<div style='background-color:lightblue'> |
|||
<h3> |
|||
<center>POS Order Lines</center> |
|||
</h3> |
|||
</div> |
|||
<body style="overflow: auto; |
|||
background: #f2f2f2; |
|||
font-family: 'Open Sans', sans-serif;"> |
|||
<div class="container row" id="customer_facing_display" |
|||
style="width: 100%; display: contents; align-items: center; justify-content: center; overflow:auto;"> |
|||
<center style="width:100%"> |
|||
<div class="pos_orderlines col-md-10"> |
|||
<table class="table table-striped table-light"> |
|||
<thead> |
|||
<tr> |
|||
<th scope="col" colspan="2">Name</th> |
|||
<th scope="col">Quantity</th> |
|||
<th scope="col">Price</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="orderlinelist" |
|||
t-as="orderline"> |
|||
<tr> |
|||
<th colspan="2"> |
|||
<t t-esc="orderline['name']"/> |
|||
<input type="hidden" name="session" |
|||
class="session_id" |
|||
t-att-value="orderline['session']"/> |
|||
<input type="hidden" name="partner" |
|||
class="partner_id" |
|||
t-att-value="orderline['partner_id']"/> |
|||
<input type="hidden" |
|||
name="order_name" |
|||
class="order_name" |
|||
t-att-value="orderline['order_name']"/> |
|||
</th> |
|||
<td> |
|||
<t t-esc="orderline['qty']"/> |
|||
</td> |
|||
<td> |
|||
<t t-esc="orderline['price']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
<tr> |
|||
<td colspan="2"/> |
|||
<td/> |
|||
<th> |
|||
<t t-esc="total"/> |
|||
</th> |
|||
</tr> |
|||
</tbody> |
|||
</table> |
|||
<div class="row" t-if="orderlinelist"> |
|||
<div class="col" |
|||
style="align-items: flex-start; display: flex;"> |
|||
<button id="openModalBtn" class="btn btn-secondary"> |
|||
Add Review |
|||
</button> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</center> |
|||
</div> |
|||
<!-- Review Modal --> |
|||
<div id="myModal" class="modal"> |
|||
<div class="modal-content"> |
|||
<span class="close" id="closeModal">×</span> |
|||
<div id="review-form-container"> |
|||
<h2 id="add-review-header">Add Review</h2> |
|||
<form id="review-form"> |
|||
<div class="popup five-star-rating-popup"> |
|||
<header class="title">Rate Our Service</header> |
|||
<main class="body content"> |
|||
<div class="rate_this_prod mars_hide" |
|||
style="align-items: center;text-align: center; margin-top:40px; margin-bottom:40px;"> |
|||
<div class="rate stars"> |
|||
<input type="radio" id="star1" |
|||
class="o_priority_star fa fa-star" |
|||
name="rate" value="star1" |
|||
onclick="getStar()"/> |
|||
<input type="radio" id="star2" |
|||
class="o_priority_star fa fa-star" |
|||
name="rate" value="star2" |
|||
onclick="getStar()"/> |
|||
<input type="radio" id="star3" |
|||
class="o_priority_star fa fa-star" |
|||
name="rate" value="star3" |
|||
onclick="getStar()"/> |
|||
<input type="radio" id="star4" |
|||
class="o_priority_star fa fa-star" |
|||
name="rate" value="star4" |
|||
onclick="getStar()"/> |
|||
<input type="radio" id="star5" |
|||
class="o_priority_star fa fa-star" |
|||
name="rate" value="star5" |
|||
onclick="getStar()"/> |
|||
</div> |
|||
</div> |
|||
<textarea |
|||
name="textarea" |
|||
t-on-change="review_text" |
|||
class="review_text" |
|||
id="productRating" |
|||
rows="4" |
|||
placeholder="'Write a message...'"/> |
|||
</main> |
|||
<footer class="footer"> |
|||
<button type="button" onclick="myFunction()"> |
|||
Submit |
|||
</button> |
|||
</footer> |
|||
</div> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">--> |
|||
|
|||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" |
|||
crossorigin="anonymous"/> |
|||
<script type="text/javascript" |
|||
src="/customer_screen_pos/static/src/js/customer_screen_pos.js"/> |
|||
</template> |
|||
<template id="customer_screen_pos_main_page" name="Customer Screen"> |
|||
<!-- Parent Template for merge Customer Screen --> |
|||
<t t-call="web.frontend_layout"> |
|||
<t t-set="no_header" t-value="True"/> |
|||
<t t-set="no_footer" t-value="True"/> |
|||
</t> |
|||
</template> |
|||
<template id="layout_edit" name="Main layout " inherit_id="portal.frontend_layout"> |
|||
</template> |
|||
</odoo> |
@ -0,0 +1,35 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<!-- Inheriting res config settings view for add custom fields --> |
|||
<record id="res_config_settings_view_form" model="ir.ui.view"> |
|||
<field name="name"> |
|||
res.config.settings.view.form.inherit.customer.screen.pos |
|||
</field> |
|||
<field name="model">res.config.settings</field> |
|||
<field name="inherit_id" |
|||
ref="point_of_sale.res_config_settings_view_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//block[@id='pos_connected_devices_section']" |
|||
position="after"> |
|||
<block title="Customer Screen POS" |
|||
id="pos_connected_customer_screen"> |
|||
<setting id="pos_other_screen" |
|||
string="Allow Customer Screen" |
|||
help="Enable This Will Allow Customer Screen"> |
|||
<field name="allow_customer_screen"/> |
|||
</setting> |
|||
<setting id="allow_systray_icon" |
|||
string="Allow Systray Buttons" |
|||
help="Enable This Will Show Systray Buttons"> |
|||
<field name="allow_systray_icon"/> |
|||
</setting> |
|||
<setting id="allow_product_click" |
|||
string="Allow Product Click" |
|||
help="Enable This Will Allow to Open Customer Screen When Product Click"> |
|||
<field name="allow_product_click"/> |
|||
</setting> |
|||
</block> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</odoo> |