@ -0,0 +1,42 @@ |
|||||
|
POS All In One Report Generator |
||||
|
=============================== |
||||
|
* POS All In One Dynamic Report For Odoo 14 Community And Enterprise editions |
||||
|
|
||||
|
Installation |
||||
|
============ |
||||
|
- www.odoo.com/documentation/14.0/setup/install.html |
||||
|
- Install our custom addon |
||||
|
|
||||
|
License |
||||
|
------- |
||||
|
General Public License, Version 3 (LGPL v3). |
||||
|
(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* 'Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
* Developer: |
||||
|
(v14) Sreelakshmi @ Cybrosys |
||||
|
|
||||
|
|
||||
|
Contacts |
||||
|
-------- |
||||
|
* Mail Contact : odoo@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 |
||||
|
========== |
||||
|
This module is maintained by Cybrosys Technologies. |
||||
|
|
||||
|
For support and more information, please visit https://www.cybrosys.com |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
||||
|
|
@ -0,0 +1,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 models |
||||
|
from . import report |
||||
|
from . import controllers |
@ -0,0 +1,50 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 All in One Report Generator', |
||||
|
'version': '14.0.1.0.0', |
||||
|
'summary': "POS All In One Dynamic Report For Odoo 14 Community And Enterprise editions", |
||||
|
'description': "POS All In One Dynamic Report For Odoo 14 Community And Enterprise editions", |
||||
|
'category': 'Point of Sale', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'depends': [ |
||||
|
'point_of_sale', |
||||
|
'stock', |
||||
|
], |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'report/pos_order_report.xml', |
||||
|
'views/pos_report.xml', |
||||
|
'views/templates.xml', |
||||
|
], |
||||
|
'qweb': [ |
||||
|
'static/src/xml/pos_report_view.xml', |
||||
|
], |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'license': 'AGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 |
@ -0,0 +1,56 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 content_disposition, request |
||||
|
from odoo.addons.web.controllers.main import _serialize_exception |
||||
|
from odoo.tools import html_escape |
||||
|
|
||||
|
|
||||
|
class TBXLSXReportController(http.Controller): |
||||
|
@http.route('/pos_dynamic_xlsx_reports', type='http', auth='user', methods=['POST'], csrf=False) |
||||
|
def get_report_xlsx(self, model, options, output_format, token, report_data, report_name, dfr_data, **kw): |
||||
|
|
||||
|
uid = request.session.uid |
||||
|
report_obj = request.env[model].with_user(uid) |
||||
|
dfr_data = dfr_data |
||||
|
options = options |
||||
|
try: |
||||
|
if output_format == 'xlsx': |
||||
|
response = request.make_response( |
||||
|
None, |
||||
|
headers=[ |
||||
|
('Content-Type', 'application/vnd.ms-excel'), |
||||
|
('Content-Disposition', content_disposition(report_name + '.xlsx')) |
||||
|
] |
||||
|
) |
||||
|
report_obj.get_pos_xlsx_report(options, response, report_data, dfr_data) |
||||
|
response.set_cookie('fileToken', token) |
||||
|
return response |
||||
|
except Exception as e: |
||||
|
se = _serialize_exception(e) |
||||
|
error = { |
||||
|
'code': 200, |
||||
|
'message': 'Odoo Server Error', |
||||
|
'data': se |
||||
|
} |
||||
|
return request.make_response(html_escape(json.dumps(error))) |
@ -0,0 +1,6 @@ |
|||||
|
## Module <pos_report_generator> |
||||
|
|
||||
|
#### 15.12.2022 |
||||
|
#### Version 15.0.1.0.0 |
||||
|
##### ADD |
||||
|
- Initial commit for pos_report_generator |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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_report |
@ -0,0 +1,567 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 models, fields, api |
||||
|
|
||||
|
import io |
||||
|
import json |
||||
|
|
||||
|
try: |
||||
|
from odoo.tools.misc import xlsxwriter |
||||
|
except ImportError: |
||||
|
import xlsxwriter |
||||
|
|
||||
|
|
||||
|
class PosReportGenerator(models.Model): |
||||
|
_name = "pos.report" |
||||
|
|
||||
|
pos_report = fields.Char(string="PoS Report") |
||||
|
date_from = fields.Datetime(string="Date From") |
||||
|
date_to = fields.Datetime(string="Date to") |
||||
|
report_type = fields.Selection([('report_by_order', 'Report By Order'), |
||||
|
('report_by_order_detail', 'Report By Order Detail'), |
||||
|
('report_by_product', 'Report By Product'), |
||||
|
('report_by_categories', 'Report By Categories'), |
||||
|
('report_by_salesman', 'Report By Salesman'), |
||||
|
('report_by_payment', 'Report By Payment')], |
||||
|
default='report_by_order') |
||||
|
|
||||
|
@api.model |
||||
|
def pos_report(self, option): |
||||
|
orders = self.env['pos.order'].search([]) |
||||
|
report_values = self.env['pos.report'].search([('id', '=', option[0])]) |
||||
|
data = { |
||||
|
'report_type': report_values.report_type, |
||||
|
'model': self, |
||||
|
} |
||||
|
|
||||
|
if report_values.date_from: |
||||
|
data.update({ |
||||
|
'date_from': report_values.date_from, |
||||
|
}) |
||||
|
if report_values.date_to: |
||||
|
data.update({ |
||||
|
'date_to': report_values.date_to, |
||||
|
}) |
||||
|
# print("reports",reports) |
||||
|
filters = self.get_filter(option) |
||||
|
report = self._get_report_values(data) |
||||
|
lines = self._get_report_values(data).get('POS') |
||||
|
main_line = self._get_report_values(data).get('pos_main') |
||||
|
|
||||
|
return { |
||||
|
'name': "PoS Orders", |
||||
|
'type': 'ir.actions.client', |
||||
|
'tag': 'p_r', |
||||
|
'orders': data, |
||||
|
'filters': filters, |
||||
|
'report_lines': lines, |
||||
|
'report_main_line': main_line, |
||||
|
} |
||||
|
|
||||
|
def get_filter(self, option): |
||||
|
data = self.get_filter_data(option) |
||||
|
filters = {} |
||||
|
if data.get('report_type') == 'report_by_order': |
||||
|
filters['report_type'] = 'Report By Order' |
||||
|
elif data.get('report_type') == 'report_by_order_detail': |
||||
|
filters['report_type'] = 'Report By Order Detail' |
||||
|
elif data.get('report_type') == 'report_by_product': |
||||
|
filters['report_type'] = 'Report By Product' |
||||
|
elif data.get('report_type') == 'report_by_categories': |
||||
|
filters['report_type'] = 'Report By Categories' |
||||
|
elif data.get('report_type') == 'report_by_salesman': |
||||
|
filters['report_type'] = 'Report By Salesman' |
||||
|
elif data.get('report_type') == 'report_by_payment': |
||||
|
filters['report_type'] = 'Report By Payment' |
||||
|
else: |
||||
|
filters['report_type'] = 'report_by_order' |
||||
|
|
||||
|
return filters |
||||
|
|
||||
|
def get_filter_data(self, option): |
||||
|
r = self.env['pos.report'].search([('id', '=', option[0])]) |
||||
|
default_filters = {} |
||||
|
|
||||
|
|
||||
|
filter_dict = { |
||||
|
'report_type': r.report_type, |
||||
|
} |
||||
|
filter_dict.update(default_filters) |
||||
|
return filter_dict |
||||
|
|
||||
|
@api.model |
||||
|
def create(self, vals): |
||||
|
print("vals", vals) |
||||
|
|
||||
|
res = super(PosReportGenerator, self).create(vals) |
||||
|
return res |
||||
|
|
||||
|
def write(self, vals): |
||||
|
|
||||
|
|
||||
|
res = super(PosReportGenerator, self).write(vals) |
||||
|
return res |
||||
|
|
||||
|
def _get_report_sub_lines(self, data, report, date_from, date_to): |
||||
|
report_sub_lines = [] |
||||
|
new_filter = None |
||||
|
|
||||
|
if data.get('report_type') == 'report_by_order': |
||||
|
query = ''' |
||||
|
select l.name,l.date_order,l.partner_id,l.amount_total,l.note,l.user_id,res_partner.name,l.name as shop,pos_session.name as session, |
||||
|
res_users.partner_id as user_partner,sum(pos_order_line.qty),l.id as id, |
||||
|
(SELECT res_partner.name as salesman FROM res_partner WHERE res_partner.id = res_users.partner_id) |
||||
|
from pos_order as l |
||||
|
left join pos_session on l.session_id = pos_session.id |
||||
|
left join res_partner on l.partner_id = res_partner.id |
||||
|
left join res_users on l.user_id = res_users.id |
||||
|
left join pos_order_line on l.id = pos_order_line.order_id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where l.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "l.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by l.user_id,res_users.partner_id,res_partner.name,l.partner_id,l.date_order,pos_session.name,l.session_id,l.name,l.amount_total,l.note,l.id" |
||||
|
self._cr.execute(query) |
||||
|
report_by_order = self._cr.dictfetchall() |
||||
|
report_sub_lines.append(report_by_order) |
||||
|
elif data.get('report_type') == 'report_by_order_detail': |
||||
|
query = ''' |
||||
|
|
||||
|
select l.name,l.date_order,l.partner_id,l.amount_total,l.note,l.user_id,res_partner.name,l.name as shop,pos_session.name as session, |
||||
|
res_users.partner_id as user_partner,sum(pos_order_line.qty), pos_order_line.full_product_name, pos_order_line.price_unit,pos_order_line.price_subtotal,pos_order_line.price_subtotal_incl,pos_order_line.product_id,product_product.default_code, |
||||
|
(SELECT res_partner.name as salesman FROM res_partner WHERE res_partner.id = res_users.partner_id) |
||||
|
from pos_order as l |
||||
|
left join pos_session on l.session_id = pos_session.id |
||||
|
left join res_partner on l.partner_id = res_partner.id |
||||
|
left join res_users on l.user_id = res_users.id |
||||
|
left join pos_order_line on l.id = pos_order_line.order_id |
||||
|
left join product_product on pos_order_line.product_id = product_product.id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where l.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "l.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by l.user_id,res_users.partner_id,res_partner.name,l.partner_id,l.date_order,pos_session.name,l.session_id,l.name,l.amount_total,l.note,pos_order_line.full_product_name,pos_order_line.price_unit,pos_order_line.price_subtotal,pos_order_line.price_subtotal_incl,pos_order_line.product_id,product_product.default_code" |
||||
|
self._cr.execute(query) |
||||
|
report_by_order_details = self._cr.dictfetchall() |
||||
|
report_sub_lines.append(report_by_order_details) |
||||
|
elif data.get('report_type') == 'report_by_product': |
||||
|
query =''' |
||||
|
select l.amount_total,l.amount_paid,sum(pos_order_line.qty) as qty, pos_order_line.full_product_name, pos_order_line.price_unit,product_product.default_code,product_category.name |
||||
|
from pos_order as l |
||||
|
left join pos_order_line on l.id = pos_order_line.order_id |
||||
|
left join product_product on pos_order_line.product_id = product_product.id |
||||
|
left join product_template on pos_order_line.product_id = product_template.id |
||||
|
left join product_category on product_category.id = product_template.categ_id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where l.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "l.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by l.amount_total,l.amount_paid,pos_order_line.full_product_name,pos_order_line.price_unit,pos_order_line.product_id,product_product.default_code,product_template.categ_id,product_category.name" |
||||
|
self._cr.execute(query) |
||||
|
report_by_product = self._cr.dictfetchall() |
||||
|
report_sub_lines.append(report_by_product) |
||||
|
elif data.get('report_type') == 'report_by_categories': |
||||
|
query =''' |
||||
|
select product_category.name,sum(l.qty) as qty,sum(l.price_subtotal) as amount_total,sum(price_subtotal_incl) as total_incl |
||||
|
from pos_order_line as l |
||||
|
left join product_template on l.product_id = product_template.id |
||||
|
left join product_category on product_category.id = product_template.categ_id |
||||
|
left join pos_order on l.order_id = pos_order.id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where pos_order.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "pos_order.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by product_category.name" |
||||
|
self._cr.execute(query) |
||||
|
report_by_categories = self._cr.dictfetchall() |
||||
|
report_sub_lines.append(report_by_categories) |
||||
|
elif data.get('report_type') == 'report_by_salesman': |
||||
|
query =''' |
||||
|
select res_partner.name,sum(pos_order_line.qty) as qty,sum(pos_order_line.price_subtotal) as amount,count(l.id) as order |
||||
|
from pos_order as l |
||||
|
left join res_users on l.user_id = res_users.id |
||||
|
left join res_partner on res_users.partner_id = res_partner.id |
||||
|
left join pos_order_line on l.id = pos_order_line.order_id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where l.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "l.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by res_partner.name" |
||||
|
self._cr.execute(query) |
||||
|
report_by_salesman = self._cr.dictfetchall() |
||||
|
report_sub_lines.append(report_by_salesman) |
||||
|
elif data.get('report_type') == 'report_by_payment': |
||||
|
query =''' |
||||
|
select pos_payment_method.name,sum(l.amount_total),pos_session.name as session,pos_config.name as config |
||||
|
from pos_order as l |
||||
|
left join pos_payment on l.id = pos_payment.pos_order_id |
||||
|
left join pos_payment_method on pos_payment.payment_method_id = pos_payment_method.id |
||||
|
left join pos_session on l.session_id = pos_session.id |
||||
|
left join pos_config on pos_session.config_id = pos_config.id |
||||
|
''' |
||||
|
term = 'Where ' |
||||
|
if data.get('date_from'): |
||||
|
query += "Where l.date_order >= '%s' " % data.get('date_from') |
||||
|
term = 'AND ' |
||||
|
if data.get('date_to'): |
||||
|
query += term + "l.date_order <= '%s' " % data.get('date_to') |
||||
|
query += "group by pos_payment_method.name,pos_session.name,pos_config.name" |
||||
|
self._cr.execute(query) |
||||
|
report_by_payment = self._cr.dictfetchall() |
||||
|
|
||||
|
report_sub_lines.append(report_by_payment) |
||||
|
return report_sub_lines |
||||
|
|
||||
|
def _get_report_total_value(self, data, report): |
||||
|
report_main_lines = [] |
||||
|
if data.get('report_type') == 'report_by_order': |
||||
|
self._cr.execute(''' |
||||
|
select count(l.id) as order,sum(l.amount_total) as amount |
||||
|
from pos_order as l |
||||
|
''') |
||||
|
report_by_order = self._cr.dictfetchall() |
||||
|
report_main_lines.append(report_by_order) |
||||
|
elif data.get('report_type') == 'report_by_order_detail': |
||||
|
self._cr.execute(''' |
||||
|
select count(line.id) as order,sum(line.price_subtotal) as total,sum(line.price_subtotal_incl) |
||||
|
from pos_order_line as line |
||||
|
''') |
||||
|
report_by_order_detail = self._cr.dictfetchall() |
||||
|
report_main_lines.append(report_by_order_detail) |
||||
|
elif data.get('report_type') == 'report_by_product': |
||||
|
self._cr.execute(''' |
||||
|
select count(l.product_id) as order,sum(l.price_subtotal) as amount |
||||
|
from pos_order_line as l |
||||
|
''') |
||||
|
report_by_product = self._cr.dictfetchall() |
||||
|
report_main_lines.append(report_by_product) |
||||
|
|
||||
|
else: |
||||
|
report_main_lines = False |
||||
|
|
||||
|
return report_main_lines |
||||
|
|
||||
|
def _get_report_values(self, data): |
||||
|
docs = data['model'] |
||||
|
date_from = data.get('date_from') |
||||
|
date_to = data.get('date_to') |
||||
|
if data['report_type'] == 'report_by_order_detail': |
||||
|
report = ['Report By Order Detail'] |
||||
|
elif data['report_type'] == 'report_by_product': |
||||
|
report = ['Report By Product'] |
||||
|
elif data['report_type'] == 'report_by_categories': |
||||
|
report = ['Report By Categories'] |
||||
|
elif data['report_type'] == 'report_by_salesman': |
||||
|
report = ['Report By Salesman'] |
||||
|
elif data['report_type'] == 'report_by_payment': |
||||
|
report = ['Report By Payment'] |
||||
|
else: |
||||
|
report = ['Report By Order'] |
||||
|
|
||||
|
report_res_total = self._get_report_total_value(data, report) |
||||
|
if data.get('report_type'): |
||||
|
report_res = self._get_report_sub_lines(data, report, date_from, date_to)[0] |
||||
|
else: |
||||
|
report_res = self._get_report_sub_lines(data, report, date_from, date_to) |
||||
|
|
||||
|
if data.get('report_type') == 'report_by_order': |
||||
|
report_res_total = self._get_report_total_value(data, report)[0] |
||||
|
|
||||
|
return { |
||||
|
'doc_ids': self.ids, |
||||
|
'docs': docs, |
||||
|
'POS': report_res, |
||||
|
'pos_main': report_res_total, |
||||
|
|
||||
|
} |
||||
|
|
||||
|
def get_pos_xlsx_report(self, data, response, report_data, dfr_data): |
||||
|
report_data_main = json.loads(report_data) |
||||
|
output = io.BytesIO() |
||||
|
|
||||
|
filters = json.loads(data) |
||||
|
|
||||
|
workbook = xlsxwriter.Workbook(output, {'in_memory': True}) |
||||
|
sheet = workbook.add_worksheet() |
||||
|
head = workbook.add_format({'align': 'center', 'bold': True, |
||||
|
'font_size': '20px'}) |
||||
|
sub_heading = workbook.add_format( |
||||
|
{'align': 'center', 'bold': True, 'font_size': '10px', |
||||
|
'border': 1, |
||||
|
'border_color': 'black'}) |
||||
|
heading = workbook.add_format( |
||||
|
{'align': 'center', 'bold': True, 'font_size': '10px', |
||||
|
'border': 2, |
||||
|
'border_color': 'black'}) |
||||
|
txt = workbook.add_format({'font_size': '10px', 'border': 1}) |
||||
|
txt_l = workbook.add_format( |
||||
|
{'font_size': '10px', 'border': 1, 'bold': True}) |
||||
|
txt_v = workbook.add_format( |
||||
|
{'align': 'right', 'font_size': '10px', 'border': 1}) |
||||
|
sheet.merge_range('A2:H3', |
||||
|
'Point of Sale Report', |
||||
|
head) |
||||
|
date_head = workbook.add_format({'align': 'center', 'bold': True, |
||||
|
'font_size': '10px'}) |
||||
|
date_style = workbook.add_format({'align': 'center', |
||||
|
'font_size': '10px'}) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_order': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'PoS', heading) |
||||
|
sheet.write('B7', 'Order', heading) |
||||
|
sheet.write('C7', 'Date Order', heading) |
||||
|
sheet.write('D7', 'Customer', heading) |
||||
|
sheet.write('E7', 'Salesman', heading) |
||||
|
sheet.write('F7', 'Total Qty', heading) |
||||
|
sheet.write('G7', 'Amount Total', heading) |
||||
|
sheet.write('H7', 'Note', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
sheet.set_column(7, 4, 15) |
||||
|
sheet.set_column(8, 5, 15) |
||||
|
sheet.set_column(9, 6, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['shop'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['session'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['date_order'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 4, rec_data['salesman'], txt_l) |
||||
|
sheet.write(row, col + 5, rec_data['sum'], txt_l) |
||||
|
sheet.write(row, col + 6, rec_data['amount_total'], txt_l) |
||||
|
sheet.write(row, col + 7, rec_data['note'], txt_l) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_order_detail': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'PoS', heading) |
||||
|
sheet.write('B7', 'Order', heading) |
||||
|
sheet.write('C7', 'Date Order', heading) |
||||
|
sheet.write('D7', 'Customer', heading) |
||||
|
sheet.write('E7', 'Salesman', heading) |
||||
|
sheet.write('F7', 'Product Code', heading) |
||||
|
sheet.write('G7', 'Product Name', heading) |
||||
|
sheet.write('H7', 'Price unit', heading) |
||||
|
sheet.write('I7', 'Qty', heading) |
||||
|
sheet.write('J7', 'Price Subtotal', heading) |
||||
|
sheet.write('K7', 'Price Subtotal Incl', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
sheet.set_column(7, 4, 15) |
||||
|
sheet.set_column(8, 5, 15) |
||||
|
sheet.set_column(9, 6, 15) |
||||
|
sheet.set_column(10, 7, 15) |
||||
|
sheet.set_column(11, 8, 15) |
||||
|
sheet.set_column(12, 9, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['shop'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['session'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['date_order'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 4, rec_data['salesman'], txt_l) |
||||
|
sheet.write(row, col + 5, rec_data['default_code'], txt_l) |
||||
|
sheet.write(row, col + 6, rec_data['full_product_name'], txt_l) |
||||
|
sheet.write(row, col + 7, rec_data['price_unit'], txt_l) |
||||
|
sheet.write(row, col + 8, rec_data['sum'], txt_l) |
||||
|
sheet.write(row, col + 9, rec_data['price_subtotal'], txt_l) |
||||
|
sheet.write(row, col + 10, rec_data['price_subtotal_incl'], txt_l) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_product': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'Category', heading) |
||||
|
sheet.write('B7', 'Product Code', heading) |
||||
|
sheet.write('C7', 'Product Name', heading) |
||||
|
sheet.write('D7', 'Qty', heading) |
||||
|
sheet.write('E7', 'Amount Total', heading) |
||||
|
sheet.write('F7', 'Amount Total Incl', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
sheet.set_column(7, 4, 15) |
||||
|
sheet.set_column(8, 5, 15) |
||||
|
# sheet.set_column(9, 6, 15) |
||||
|
# sheet.set_column(10, 7, 15) |
||||
|
# sheet.set_column(11, 8, 15) |
||||
|
# sheet.set_column(12, 9, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['default_code'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['full_product_name'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['qty'], txt_l) |
||||
|
sheet.write(row, col + 4, rec_data['amount_total'], txt_l) |
||||
|
sheet.write(row, col + 5, rec_data['amount_paid'], txt_l) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_categories': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'Category', heading) |
||||
|
sheet.write('B7', 'Qty', heading) |
||||
|
sheet.write('C7', 'Amount Total', heading) |
||||
|
sheet.write('D7', 'Amount Total Incl', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['qty'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['amount_total'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['total_incl'], txt_l) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_salesman': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'Salesman', heading) |
||||
|
sheet.write('B7', 'Total Order', heading) |
||||
|
sheet.write('C7', 'Total Qty', heading) |
||||
|
sheet.write('D7', 'Total Amount', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['order'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['qty'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['amount'], txt_l) |
||||
|
|
||||
|
if filters.get('report_type') == 'report_by_payment': |
||||
|
|
||||
|
sheet.merge_range('B5:D5', 'Report Type: ' + |
||||
|
filters.get('report_type'), txt_l) |
||||
|
|
||||
|
sheet.write('A7', 'Point of Sale', heading) |
||||
|
sheet.write('B7', 'PoS Session', heading) |
||||
|
sheet.write('C7', 'Payment', heading) |
||||
|
sheet.write('D7', 'Total Amount', heading) |
||||
|
|
||||
|
lst = [] |
||||
|
for rec in report_data_main[0]: |
||||
|
lst.append(rec) |
||||
|
row = 6 |
||||
|
col = 0 |
||||
|
sheet.set_column(3, 0, 15) |
||||
|
sheet.set_column(4, 1, 15) |
||||
|
sheet.set_column(5, 2, 15) |
||||
|
sheet.set_column(6, 3, 15) |
||||
|
|
||||
|
for rec_data in report_data_main: |
||||
|
one_lst = [] |
||||
|
two_lst = [] |
||||
|
print("iiii", rec_data) |
||||
|
row += 1 |
||||
|
sheet.write(row, col, rec_data['config'], txt_l) |
||||
|
sheet.write(row, col + 1, rec_data['session'], txt_l) |
||||
|
sheet.write(row, col + 2, rec_data['name'], txt_l) |
||||
|
sheet.write(row, col + 3, rec_data['sum'], txt_l) |
||||
|
|
||||
|
workbook.close() |
||||
|
output.seek(0) |
||||
|
response.stream.write(output.read()) |
||||
|
output.close() |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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_order_report |
@ -0,0 +1,37 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################# |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.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 api, models, _ |
||||
|
|
||||
|
|
||||
|
class PosOrder(models.AbstractModel): |
||||
|
_name = 'report.pos_report_generator.pos_order_report' |
||||
|
|
||||
|
@api.model |
||||
|
def _get_report_values(self, docids, data=None): |
||||
|
if self.env.context.get('pos_order_report'): |
||||
|
|
||||
|
if data.get('report_data'): |
||||
|
data.update({'report_main_line_data': data.get('report_data')['report_lines'], |
||||
|
'Filters': data.get('report_data')['filters'], |
||||
|
'company': self.env.company, |
||||
|
}) |
||||
|
return data |
@ -0,0 +1,478 @@ |
|||||
|
<odoo> |
||||
|
<template id="pos_order_report"> |
||||
|
<t t-call="web.html_container"> |
||||
|
<t t-call="web.internal_layout"> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Order'"> |
||||
|
<t t-call="pos_report_generator.report_order"/> |
||||
|
</t> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Order Detail'"> |
||||
|
<t t-call="pos_report_generator.report_order_detail"/> |
||||
|
</t> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Product'"> |
||||
|
<t t-call="pos_report_generator.report_product"/> |
||||
|
</t> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Categories'"> |
||||
|
<t t-call="pos_report_generator.report_category"/> |
||||
|
</t> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Salesman'"> |
||||
|
<t t-call="pos_report_generator.report_salesman"/> |
||||
|
</t> |
||||
|
<t t-if="Filters.get('report_type')=='Report By Payment'"> |
||||
|
<t t-call="pos_report_generator.report_payment"/> |
||||
|
</t> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
<template id="report_order"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr class="text-right"> |
||||
|
<th>PoS</th> |
||||
|
<th colspan="6">Order</th> |
||||
|
<th colspan="6">Date Order</th> |
||||
|
<th colspan="6">Customer</th> |
||||
|
<th colspan="6">Salesman</th> |
||||
|
<th colspan="6">Total Qty</th> |
||||
|
<th colspan="6">Amount Total</th> |
||||
|
<th colspan="6">Note</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="main"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['shop']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['session']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['date_order']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['salesman']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['sum']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['amount_total']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['note']"/> |
||||
|
</td> |
||||
|
|
||||
|
|
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<template id="report_order_detail"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr class="text-right"> |
||||
|
<th>PoS</th> |
||||
|
<th colspan="6">Order</th> |
||||
|
<th colspan="6">Date Order</th> |
||||
|
<th colspan="6">Customer</th> |
||||
|
<th colspan="6">Salesman</th> |
||||
|
<th colspan="6">Product Code</th> |
||||
|
<th colspan="6">Product Name</th> |
||||
|
<th colspan="6">Price unit</th> |
||||
|
<th colspan="6">Qty</th> |
||||
|
<th colspan="6">Price Subtotal</th> |
||||
|
<th colspan="6">Price Subtotal Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="main"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['shop']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['session']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['date_order']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['salesman']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['default_code']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['full_product_name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['price_unit']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['sum']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['price_subtotal']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['price_subtotal_incl']"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<template id="report_product"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr class="text-right"> |
||||
|
<th>Category</th> |
||||
|
<th colspan="6">Product Code</th> |
||||
|
<th colspan="6">Product Name</th> |
||||
|
<th colspan="6">Qty</th> |
||||
|
<th colspan="6">Amount Total</th> |
||||
|
<th colspan="6">Amount Total Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="main"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['default_code']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['full_product_name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['qty']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['amount_total']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['amount_total']"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
|
||||
|
<template id="report_category"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th colspan="6">Category</th> |
||||
|
<th colspan="6">Qty</th> |
||||
|
<th colspan="6">Amount Total</th> |
||||
|
<th colspan="6">Amount Total Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="pos_category"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="pos_category['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="pos_category['qty']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="pos_category['amount_total']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="pos_category['total_incl']"/> |
||||
|
</td> |
||||
|
|
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<template id="report_salesman"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>Salesman</th> |
||||
|
<th colspan="6">Total Order</th> |
||||
|
<th colspan="6">Total Qty</th> |
||||
|
<th colspan="6">Total Amount</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="main"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td> |
||||
|
<span t-esc="main['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['order']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['qty']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['amount']"/> |
||||
|
</td> |
||||
|
|
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<template id="report_payment"> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<span t-if="Filters.get('date_from')"> |
||||
|
<strong>From:</strong> |
||||
|
<t t-esc="Filters['date_from']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<span t-if="Filters.get('date_to')"> |
||||
|
<strong>To:</strong> |
||||
|
<t t-esc="Filters['date_to']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
<div> |
||||
|
<div style="width:100%;"> |
||||
|
<div style="text-align:centre;" class="row"> |
||||
|
|
||||
|
<div class="col-2"> |
||||
|
<strong>Report Type:</strong> |
||||
|
<t t-esc="Filters.get('report_type')"/> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<br></br> |
||||
|
<table class="table table-sm table-reports"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>Point of Sale</th> |
||||
|
<th colspan="6">PoS Session</th> |
||||
|
<th colspan="6">Payment</th> |
||||
|
<th colspan="6">Total Amount</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="report_main_line_data" t-as="main"> |
||||
|
<tr style="font-weight: bold;"> |
||||
|
<td> |
||||
|
<span t-esc="main['config']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['session']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['name']"/> |
||||
|
</td> |
||||
|
<td colspan="6"> |
||||
|
<span t-esc="main['sum']"/> |
||||
|
</td> |
||||
|
|
||||
|
</tr> |
||||
|
|
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
|
||||
|
<record id="action_report_pos_all_in_one" model="ir.actions.report"> |
||||
|
<field name="name">POS All In One Report</field> |
||||
|
<field name="model">pos.report</field> |
||||
|
<field name="report_type">qweb-pdf</field> |
||||
|
<field name="report_name">pos_report_generator.pos_order_report</field> |
||||
|
<field name="report_file">pos_report_generator.pos_order_report</field> |
||||
|
</record> |
||||
|
|
||||
|
</odoo> |
|
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.2 KiB |
After Width: | Height: | Size: 3.4 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: 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: 135 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 184 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 183 KiB |
After Width: | Height: | Size: 188 KiB |
After Width: | Height: | Size: 156 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 92 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,629 @@ |
|||||
|
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;"> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" style="border-bottom: 1px solid #d5d5d5;"> |
||||
|
<div class="my-3"> |
||||
|
<img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;"> |
||||
|
</div> |
||||
|
<div class="my-3 d-flex align-items-center"> |
||||
|
<div |
||||
|
style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
||||
|
<i class="fa fa-check mr-1"></i>Community |
||||
|
</div> |
||||
|
<div |
||||
|
style="background-color: #875A7B !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
||||
|
<i class="fa fa-check mr-1"></i>Enterprise |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="container" style="padding: 0rem 1.5rem 4rem !important"> |
||||
|
<div class="row" style="height: 900px !important;"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12" |
||||
|
style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;"> |
||||
|
<h1 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important; font-size: 3.5rem !important; text-align: center !important;"> |
||||
|
POS All In One Report Generator</h1> |
||||
|
<p |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important; font-size: 1.4rem !important; text-align: center !important;"> |
||||
|
POS All In One Dynamic Report For Odoo 14 Community And Enterprise editions |
||||
|
</p> |
||||
|
<img src="./assets/screenshots/hero(1).gif" class="img-responsive" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="row"> |
||||
|
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important"> |
||||
|
<h2 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
||||
|
<i class="fa fa-compass mr-2"></i>Explore this module |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="col-md-6"> |
||||
|
<a href="#overview" style="text-decoration: none !important;"> |
||||
|
<div class="row" |
||||
|
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
||||
|
<div class="col-8"> |
||||
|
<h3 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
||||
|
Overview</h3> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
||||
|
Learn more about this module</p> |
||||
|
</div> |
||||
|
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
||||
|
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-md-6"> |
||||
|
<a href="#features" style="text-decoration: none !important;"> |
||||
|
<div class="row" |
||||
|
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
||||
|
<div class="col-8"> |
||||
|
<h3 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
||||
|
Features</h3> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
||||
|
View features of this module</p> |
||||
|
</div> |
||||
|
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
||||
|
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="col-md-6"> |
||||
|
<a href="#screenshots" style="text-decoration: none !important;"> |
||||
|
<div class="row" |
||||
|
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
||||
|
<div class="col-8"> |
||||
|
<h3 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
||||
|
Screenshots</h3> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
||||
|
See key screenshots of this module</p> |
||||
|
</div> |
||||
|
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
||||
|
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
||||
|
</div> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="row" id="overview"> |
||||
|
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
||||
|
<h2 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
||||
|
<i class="fa fa-pie-chart mr-2"></i>Overview |
||||
|
</h2> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-mg-12 pl-3"> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> |
||||
|
This app useful to provide different PoS Reports to do analysis. It shows the PoS sales analysis of a company in many aspects such as by order,order details, payment,salesman and so on. It can be filtered out based on different date ranges too.</p> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="row" id="features"> |
||||
|
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
||||
|
<h2 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
||||
|
<i class="fa fa-star mr-2"></i>Features |
||||
|
</h2> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-6 pl-3 py-3 d-flex"> |
||||
|
<div> |
||||
|
<img src="assets/icons/check.png"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4 |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Community & Enterprise Support</h4> |
||||
|
<p |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
||||
|
Available in Odoo 14.0 Community and Enterprise.</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 pl-3 py-3 d-flex"> |
||||
|
<div> |
||||
|
<img src="assets/icons/check.png"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4 |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Generates Report for a specific date range.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-6 pl-3 py-3 d-flex"> |
||||
|
<div> |
||||
|
<img src="assets/icons/check.png"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4 |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Filtering based on different aspects</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-6 pl-3 py-3 d-flex"> |
||||
|
<div> |
||||
|
<img src="assets/icons/check.png"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4 |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Print Reports in both PDF and XLSX format.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-md-6 pl-3 py-3 d-flex"> |
||||
|
<div> |
||||
|
<img src="assets/icons/check.png"> |
||||
|
</div> |
||||
|
<div> |
||||
|
<h4 |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Drilled on approach</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
<div class="row" id="screenshots"> |
||||
|
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
||||
|
<h2 |
||||
|
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
||||
|
<i class="fa fa-image mr-2"></i>Screenshots |
||||
|
</h2> |
||||
|
</div> |
||||
|
<div class="col-lg-12 my-2"> |
||||
|
<h4 class="mt-2" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
All In One POS Report Menu</h4> |
||||
|
<img src="assets/screenshots/pos_report_menu.png" class="img-responsive img-thumbnail border" width="100%" |
||||
|
height="auto" /> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Orders</h4> |
||||
|
<img src="assets/screenshots/pos_report1.png" class="img-responsive img-thumbnail border" width="100%" |
||||
|
height="auto" /> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Order Details</h4> |
||||
|
|
||||
|
<img src="assets/screenshots/pos_report2.png" class="img-responsive img-thumbnail border" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
|
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Product</h4> |
||||
|
<img src="assets/screenshots/pos_report3.png" class="img-responsive img-thumbnail border" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Categories</h4> |
||||
|
<img src="assets/screenshots/pos_report4.png" class="img-responsive img-thumbnail border" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Salesman</h4> |
||||
|
<img src="assets/screenshots/pos_report5.png" class="img-responsive img-thumbnail border" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
<div class="col-lg-12 my-3"> |
||||
|
<h4 class="mt-3" |
||||
|
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
||||
|
Point Of Sale Report Based On Payment</h4> |
||||
|
<img src="assets/screenshots/pos_report6.png" class="img-responsive img-thumbnail border" width="100%" height="auto" /> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
<!-- SUGGESTED PRODUCTS--> |
||||
|
<section class="container" style="margin-top: 6rem !important; background-color: #fff !important;"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
||||
|
<h2 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #000 !important; font-weight: 800 !important; font-size: 2rem !important; width: 80%;"> |
||||
|
Suggested Products</h2> |
||||
|
<p class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #1a1a1a !important; font-weight: 300 !important; font-size: 1.3rem !important;"> |
||||
|
Check out our other products</p> |
||||
|
</div> |
||||
|
<div class="col-lg-12 my-4"> |
||||
|
<div id="suggestedSlider" class="row carousel slide" data-ride="carousel"> |
||||
|
<!-- The slideshow --> |
||||
|
<div class="carousel-inner"> |
||||
|
<div class="carousel-item" style="min-height: 191px;"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/14.0/sale_discount_total/" 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/sale_discount.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/14.0/inventory_barcode_scanning/" |
||||
|
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/barcode_scanning.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/14.0/barcode_scanning_sale_purchase/" |
||||
|
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/barcode_scanning_support.png"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="carousel-item active" style="min-height: 191px;"> |
||||
|
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/14.0/support_package/" 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/support_package.jpg"> |
||||
|
</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/14.0/invoice_format_editor/" |
||||
|
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/invoice.jpg"> |
||||
|
</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/14.0/whatsapp_mail_messaging/" |
||||
|
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/whatsapp-mail-messaging.jpg"> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!-- Left and right controls --> |
||||
|
<a class="carousel-control-prev" href="#suggestedSlider" 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="#suggestedSlider" 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> |
||||
|
<!-- END OF SUGGESTED PRODUCTS --> |
||||
|
|
||||
|
<!-- OUR SERVICES --> |
||||
|
<section class="container" style="margin-top: 6rem !important; background-color: #fff !important;"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
||||
|
<h2 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #000 !important; font-weight: 800 !important; font-size: 2rem !important; width: 80%;"> |
||||
|
Our Services</h2> |
||||
|
<p class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #1a1a1a !important; font-weight: 300 !important; font-size: 1.3rem !important;"> |
||||
|
We provide following services</p> |
||||
|
</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: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
||||
|
<img src="assets/icons/cogs.png" 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="assets/icons/wrench.png" 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="assets/icons/lifebuoy.png" 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="assets/icons/user.png" 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="assets/icons/puzzle.png" 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="assets/icons/update.png" 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="assets/icons/consultation.png" 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="assets/icons/training.png" 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="assets/icons/license.png" 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> |
||||
|
</section> |
||||
|
<!-- END OF END OF OUR SERVICES --> |
||||
|
|
||||
|
<!-- OUR INDUSTRIES --> |
||||
|
<section class="container" style="margin-top: 6rem !important; background-color: #fff !important;"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
||||
|
<h2 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #000 !important; font-weight: 800 !important; font-size: 2rem !important; width: 80%;"> |
||||
|
Our Industries</h2> |
||||
|
<p class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #1a1a1a !important; font-weight: 300 !important; font-size: 1.3rem !important;"> |
||||
|
Our industry specifics and process segments to solve your complex business barriers.</p> |
||||
|
</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="./assets/icons/trading-black.png" 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="./assets/icons/pos-black.png" 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="./assets/icons/education-black.png" 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="./assets/icons/manufacturing-black.png" 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="./assets/icons/ecom-black.png" 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="./assets/icons/service-black.png" 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="./assets/icons/restaurant-black.png" 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="./assets/icons/hotel-black.png" 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> |
||||
|
|
||||
|
<!-- END OF END OF OUR INDUSTRIES --> |
||||
|
|
||||
|
<!-- FOOTER --> |
||||
|
<!-- Footer Section --> |
||||
|
<section class="container" style="margin: 5rem auto 2rem; background-color: #fff !important;"> |
||||
|
<div class="row" style="max-width:1540px;"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
||||
|
<h2 class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #000 !important; font-weight: 800 !important; font-size: 2rem !important; width: 80%;"> |
||||
|
Need Help?</h2> |
||||
|
<p class="text-center" |
||||
|
style="font-family: Montserrat, 'sans-serif'; color: #1a1a1a !important; font-weight: 300 !important; font-size: 1.3rem !important;"> |
||||
|
Do you have any queries regarding our products & services? Let us know.</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!-- Contact Cards --> |
||||
|
<div class="row d-flex justify-content-center align-items-center" |
||||
|
style="max-width:1540px; margin: 0 auto 2rem auto;"> |
||||
|
|
||||
|
<div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; "> |
||||
|
|
||||
|
<div class="row mt-4"> |
||||
|
<div class="col-lg-4"> |
||||
|
<a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover" |
||||
|
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i |
||||
|
class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a> |
||||
|
</div> |
||||
|
<div class="col-lg-4"> |
||||
|
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" |
||||
|
class="btn btn-block mb-2 deep_hover" |
||||
|
style="text-decoration: none; background-color: #25D366; color: #FFF; border-radius: 4px;"><i |
||||
|
class="fa fa-whatsapp mr-2"></i>WhatsApp</a> |
||||
|
</div> |
||||
|
<div class="col-lg-4"> |
||||
|
<a href="skype:cybrosystechnologies?chat" target="_blank" class="btn btn-block deep_hover" |
||||
|
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i |
||||
|
class="fa fa-envelope mr-2"></i>cybrosystechnologies</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
<!-- End of Contact Cards --> |
||||
|
</section> |
||||
|
<!-- Footer --> |
||||
|
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
||||
|
<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 class="col-lg-12"> |
||||
|
<hr |
||||
|
style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;"> |
||||
|
<!-- End of Footer Section --> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<!-- END OF FOOTER --> |
||||
|
</div> |
@ -0,0 +1,53 @@ |
|||||
|
.time_range_pos { |
||||
|
width: 125px; |
||||
|
border: 2px solid #ccc; |
||||
|
border-radius: 5px; |
||||
|
padding: 10px; |
||||
|
} |
||||
|
a.dropdown-toggle.report-type { |
||||
|
margin: 10px; |
||||
|
} |
||||
|
.search-Result-Selection { |
||||
|
border: 2px solid #ccc; |
||||
|
width: 257px; |
||||
|
margin-right: 10px; |
||||
|
margin-left: 10px; |
||||
|
border-radius: 5px; |
||||
|
} |
||||
|
.table_pos_head { |
||||
|
background-color: #7c7bad; |
||||
|
color: #fff; |
||||
|
padding: 20px; |
||||
|
margin: 20px; |
||||
|
height: 57px; |
||||
|
width: 100%; |
||||
|
border: 1px solid #000; |
||||
|
} |
||||
|
element.style { |
||||
|
top: 0px; |
||||
|
height: 42px; |
||||
|
color: white; |
||||
|
background-color: #7c7bad; |
||||
|
border-color: #7c7bad; |
||||
|
width: 100px; |
||||
|
} |
||||
|
tr.ps-line { |
||||
|
height: 48px; |
||||
|
} |
||||
|
tr.table_pos_head th { |
||||
|
font-size: 18px; |
||||
|
text-align: center; |
||||
|
} |
||||
|
ul.dropdown-menu.show { |
||||
|
height: 40px; |
||||
|
background-color: #eeeeee; |
||||
|
width: 200px; |
||||
|
} |
||||
|
ul.dropdown-menu.show li { |
||||
|
margin-left: 10px; |
||||
|
} |
||||
|
|
||||
|
ul.dropdown-menu.show a{ |
||||
|
|
||||
|
color: #221c1c; |
||||
|
} |
@ -0,0 +1,44 @@ |
|||||
|
odoo.define('pos_report_generator.action_manager', function (require) { |
||||
|
"use strict"; |
||||
|
/** |
||||
|
* The purpose of this file is to add the actions of type |
||||
|
* 'xlsx' to the ActionManager. |
||||
|
*/ |
||||
|
var ActionManager = require('web.ActionManager'); |
||||
|
var framework = require('web.framework'); |
||||
|
var session = require('web.session'); |
||||
|
ActionManager.include({ |
||||
|
/** |
||||
|
* Executes actions of type 'ir.actions.report'. |
||||
|
* @private |
||||
|
* @param {Object} action the description of the action to execute |
||||
|
* @param {Object} options @see doAction for details |
||||
|
* @returns {Promise} resolved when the action has been executed |
||||
|
*/ |
||||
|
_executeposdynamicxlsxReportDownloadAction: function (action) { |
||||
|
framework.blockUI(); |
||||
|
var def = $.Deferred(); |
||||
|
session.get_file({ |
||||
|
url: '/pos_dynamic_xlsx_reports', |
||||
|
data: action.data, |
||||
|
success: def.resolve.bind(def), |
||||
|
error: (error) => this.call('crash_manager', 'rpc_error', error), |
||||
|
complete: framework.unblockUI, |
||||
|
}); |
||||
|
return def; |
||||
|
}, |
||||
|
/** |
||||
|
* Overrides to handle the 'ir.actions.report' actions. |
||||
|
* @override |
||||
|
* @private |
||||
|
*/ |
||||
|
_handleAction: function (action, options) { |
||||
|
|
||||
|
if (action.type === 'ir_actions_pos_dynamic_xlsx_download') { |
||||
|
return this._executeposdynamicxlsxReportDownloadAction(action, options); |
||||
|
} |
||||
|
return this._super.apply(this, arguments); |
||||
|
}, |
||||
|
}); |
||||
|
|
||||
|
}); |
@ -0,0 +1,225 @@ |
|||||
|
odoo.define('pos_report_generator.pos_report', function(require) { |
||||
|
'use strict'; |
||||
|
var AbstractAction = require('web.AbstractAction'); |
||||
|
var core = require('web.core'); |
||||
|
var rpc = require('web.rpc'); |
||||
|
var QWeb = core.qweb; |
||||
|
var _t = core._t; |
||||
|
var datepicker = require('web.datepicker'); |
||||
|
var time = require('web.time'); |
||||
|
|
||||
|
var PosReport = AbstractAction.extend({ |
||||
|
template: 'PosReport', |
||||
|
events: { |
||||
|
'click #apply_filter': 'apply_filter', |
||||
|
'click #pdf': 'print_pdf', |
||||
|
'click #xlsx': 'print_xlsx', |
||||
|
'click .view_pos_order': 'button_view_order', |
||||
|
'mousedown div.input-group.date[data-target-input="nearest"]': '_onCalendarIconClick', |
||||
|
|
||||
|
|
||||
|
}, |
||||
|
|
||||
|
|
||||
|
init: function(parent, action) { |
||||
|
this._super(parent, action); |
||||
|
this.report_lines = action.report_lines; |
||||
|
this.wizard_id = action.context.wizard | null; |
||||
|
|
||||
|
}, |
||||
|
start: function() { |
||||
|
var self = this; |
||||
|
self.initial_render = true; |
||||
|
|
||||
|
rpc.query({ |
||||
|
model: 'pos.report', |
||||
|
method: 'create', |
||||
|
args: [{ |
||||
|
|
||||
|
}] |
||||
|
}).then(function(res) { |
||||
|
self.wizard_id = res; |
||||
|
self.load_data(self.initial_render); |
||||
|
self.apply_filter(); |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
_onCalendarIconClick: function(ev) { |
||||
|
var $calendarInputGroup = $(ev.currentTarget); |
||||
|
|
||||
|
var calendarOptions = { |
||||
|
|
||||
|
minDate: moment({ |
||||
|
y: 1000 |
||||
|
}), |
||||
|
maxDate: moment().add(200, 'y'), |
||||
|
calendarWeeks: true, |
||||
|
defaultDate: moment().format(), |
||||
|
sideBySide: true, |
||||
|
buttons: { |
||||
|
showClear: true, |
||||
|
showClose: true, |
||||
|
showToday: true, |
||||
|
}, |
||||
|
|
||||
|
icons: { |
||||
|
date: 'fa fa-calendar', |
||||
|
|
||||
|
}, |
||||
|
locale: moment.locale(), |
||||
|
format: time.getLangDateFormat(), |
||||
|
widgetParent: 'body', |
||||
|
allowInputToggle: true, |
||||
|
}; |
||||
|
|
||||
|
$calendarInputGroup.datetimepicker(calendarOptions); |
||||
|
}, |
||||
|
|
||||
|
|
||||
|
load_data: function(initial_render = true) { |
||||
|
var self = this; |
||||
|
self._rpc({ |
||||
|
model: 'pos.report', |
||||
|
method: 'pos_report', |
||||
|
args: [ |
||||
|
[this.wizard_id] |
||||
|
], |
||||
|
}).then(function(datas) { |
||||
|
if (initial_render) { |
||||
|
self.$('.filter_view_pr').html(QWeb.render('posFilterView', { |
||||
|
filter_data: datas['filters'], |
||||
|
|
||||
|
})); |
||||
|
self.$el.find('.report_type').select2({ |
||||
|
placeholder: ' Report Type...', |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
if (datas['orders']) |
||||
|
self.$('.table_view_pr').html(QWeb.render('PosOrderTable', { |
||||
|
filter: datas['filters'], |
||||
|
order: datas['orders'], |
||||
|
report_lines: datas['report_lines'], |
||||
|
main_lines: datas['report_main_line'] |
||||
|
|
||||
|
})); |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
print_pdf: function(e) { |
||||
|
e.preventDefault(); |
||||
|
var self = this; |
||||
|
var action_title = self._title; |
||||
|
self._rpc({ |
||||
|
model: 'pos.report', |
||||
|
method: 'pos_report', |
||||
|
args: [ |
||||
|
[self.wizard_id] |
||||
|
], |
||||
|
}).then(function(data) { |
||||
|
var action = { |
||||
|
'type': 'ir.actions.report', |
||||
|
'report_type': 'qweb-pdf', |
||||
|
'report_name': 'pos_report_generator.pos_order_report', |
||||
|
'report_file': 'pos_report_generator.pos_order_report', |
||||
|
'data': { |
||||
|
'report_data': data |
||||
|
}, |
||||
|
'context': { |
||||
|
'active_model': 'pos.report', |
||||
|
'landscape': 1, |
||||
|
'pos_order_report': true |
||||
|
|
||||
|
}, |
||||
|
'display_name': 'PoS Order', |
||||
|
}; |
||||
|
return self.do_action(action); |
||||
|
}); |
||||
|
|
||||
|
}, |
||||
|
print_xlsx: function() { |
||||
|
var self = this; |
||||
|
self._rpc({ |
||||
|
model: 'pos.report', |
||||
|
method: 'pos_report', |
||||
|
args: [ |
||||
|
[self.wizard_id] |
||||
|
], |
||||
|
}).then(function(data) { |
||||
|
|
||||
|
var action = { |
||||
|
'type': 'ir_actions_pos_dynamic_xlsx_download', |
||||
|
'data': { |
||||
|
'model': 'pos.report', |
||||
|
'options': JSON.stringify(data['orders']), |
||||
|
'output_format': 'xlsx', |
||||
|
'report_data': JSON.stringify(data['report_lines']), |
||||
|
'report_name': 'PoS Report', |
||||
|
'dfr_data': JSON.stringify(data), |
||||
|
}, |
||||
|
}; |
||||
|
return self.do_action(action).then(function(data) { |
||||
|
}); |
||||
|
}); |
||||
|
}, |
||||
|
|
||||
|
button_view_order: function(event) { |
||||
|
event.preventDefault(); |
||||
|
var self = this; |
||||
|
var context = {}; |
||||
|
this.do_action({ |
||||
|
name: _t("PoS Order"), |
||||
|
type: 'ir.actions.act_window', |
||||
|
res_model: 'pos.order', |
||||
|
view_type: 'form', |
||||
|
domain: [ |
||||
|
['id', '=', $(event.target).closest('.view_pos_order').attr('id')] |
||||
|
], |
||||
|
views: [ |
||||
|
[false, 'list'], |
||||
|
[false, 'form'] |
||||
|
], |
||||
|
target: 'current' |
||||
|
}); |
||||
|
}, |
||||
|
//
|
||||
|
apply_filter: function() { |
||||
|
// event.preventDefault();
|
||||
|
var self = this; |
||||
|
self.initial_render = false; |
||||
|
|
||||
|
var filter_data_selected = {}; |
||||
|
|
||||
|
if (this.$el.find('.datetimepicker-input[name="date_from"]').val()) { |
||||
|
filter_data_selected.date_from = moment(this.$el.find('.datetimepicker-input[name="date_from"]').val(), time.getLangDateFormat()).locale('en').format('YYYY-MM-DD'); |
||||
|
} |
||||
|
|
||||
|
if (this.$el.find('.datetimepicker-input[name="date_to"]').val()) { |
||||
|
filter_data_selected.date_to = moment(this.$el.find('.datetimepicker-input[name="date_to"]').val(), time.getLangDateFormat()).locale('en').format('YYYY-MM-DD'); |
||||
|
} |
||||
|
if ($(".report_type").length) { |
||||
|
var report_res = document.getElementById("report_res") |
||||
|
filter_data_selected.report_type = $(".report_type")[1].value |
||||
|
report_res.value = $(".report_type")[1].value |
||||
|
report_res.innerHTML = report_res.value; |
||||
|
if ($(".report_type")[1].value == "") { |
||||
|
report_res.innerHTML = "report_by_order"; |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
rpc.query({ |
||||
|
model: 'pos.report', |
||||
|
method: 'write', |
||||
|
args: [ |
||||
|
self.wizard_id, filter_data_selected |
||||
|
], |
||||
|
}).then(function(res) { |
||||
|
self.initial_render = false; |
||||
|
self.load_data(self.initial_render); |
||||
|
}); |
||||
|
}, |
||||
|
|
||||
|
}); |
||||
|
core.action_registry.add("p_r", PosReport); |
||||
|
return PosReport; |
||||
|
}); |
@ -0,0 +1,490 @@ |
|||||
|
<templates> |
||||
|
<t t-name="PosReport"> |
||||
|
<div class=""> |
||||
|
<div> |
||||
|
<center> |
||||
|
<h1 style="margin: 20px;">Point of Sale Report</h1> |
||||
|
</center> |
||||
|
</div> |
||||
|
<div> |
||||
|
<div class="filter_view_pr"/> |
||||
|
</div> |
||||
|
<div> |
||||
|
<div class="table_view_pr" style="width: 95%; margin: auto;"/> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</t> |
||||
|
|
||||
|
<t t-name="posFilterView"> |
||||
|
<div class="row" style="margin-right: 10px; margin-left: 10px;"> |
||||
|
<div class="sub_container_left" style="width: 285px; margin-left: 36px;"> |
||||
|
<div class="report_print"> |
||||
|
<button type="button" class="btn btn-primary" id="pdf" |
||||
|
style="top: 0px; height: 42px; color: white; background-color: #7c7bad; border-color: #7c7bad; width: 127px;"> |
||||
|
Print (PDF) |
||||
|
</button> |
||||
|
<button type="button" class="btn btn-primary" id="xlsx" |
||||
|
style="top: 0px; height: 42px; color: white; background-color: #7c7bad; border-color: #7c7bad; width: 127px;"> |
||||
|
Export (XLSX) |
||||
|
</button> |
||||
|
</div> |
||||
|
</div> |
||||
|
<br></br> |
||||
|
|
||||
|
<div class="sub_container_right row" |
||||
|
style="width: 30%; height: 3%; top: 0px; position: relative; display: flex; justify-content: end; margin-bottom: 20px;"> |
||||
|
<div class="time_range_pos" style=""> |
||||
|
<a type="button" class="dropdown-toggle" data-toggle="dropdown"> |
||||
|
<span class="fa fa-calendar" title="Dates" role="img" aria-label="Dates"/> |
||||
|
Date Range |
||||
|
</a> |
||||
|
<div class="dropdown-menu" role="menu"> |
||||
|
<div class="form-group"> |
||||
|
<label class="" for="date_from">Start Date :</label> |
||||
|
<div class="input-group date" id="date_from" data-target-input="nearest"> |
||||
|
<input type="text" name="date_from" class="form-control datetimepicker-input" |
||||
|
data-target="#date_from" t-att-name="prefix"/> |
||||
|
<div class="input-group-append" data-target="#date_from" data-toggle="datetimepicker"> |
||||
|
<span class="input-group-text"> |
||||
|
<span class="fa fa-calendar" role="img" aria-label="Calendar"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<label class="" for="date_to">End Date :</label> |
||||
|
<div class="input-group date" id="date_to" data-target-input="nearest"> |
||||
|
|
||||
|
<input type="text" name="date_to" class="form-control datetimepicker-input" |
||||
|
data-target="#date_to" t-att-name="prefix"/> |
||||
|
<div class="input-group-append" data-target="#date_to" data-toggle="datetimepicker"> |
||||
|
<span class="input-group-text"> |
||||
|
<span class="fa fa-calendar" role="img" aria-label="Calendar"/> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="search-Result-Selection" style=""> |
||||
|
<a type="button" class="dropdown-toggle report-type" data-toggle="dropdown"> |
||||
|
<span class="fa fa-book"/> |
||||
|
Report Type: |
||||
|
</a> |
||||
|
<select id="selection" class="dropdown-menu report_type" name="states[]"> |
||||
|
<div role="separator" class="dropdown-divider"/> |
||||
|
<option value="report_by_order" selected="">Report By Order</option> |
||||
|
<option value="report_by_order_detail">Report By Order Detail</option> |
||||
|
<option value="report_by_product">Report By Product</option> |
||||
|
<option value="report_by_categories">Report By Categories</option> |
||||
|
<option value="report_by_salesman">Report By Salesman</option> |
||||
|
<option value="report_by_payment">Report By Payment</option> |
||||
|
</select> |
||||
|
<span id="report_res"/> |
||||
|
</div> |
||||
|
<div style=""> |
||||
|
<button type="button" id="apply_filter" class="btn btn-primary" |
||||
|
style="top: 0px; height: 42px; color: white; background-color: #7c7bad; border-color: #7c7bad; width: 100px;"> |
||||
|
Apply |
||||
|
</button> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
|
||||
|
<t t-name="PosOrderTable"> |
||||
|
<!-- <t t-esc="order.report_type"/>--> |
||||
|
<div t-if="order.report_type == 'report_by_order'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>PoS</th> |
||||
|
<th class="mon_fld">Order</th> |
||||
|
<th class="mon_fld">Date Order</th> |
||||
|
<th class="mon_fld">Customer</th> |
||||
|
<th class="mon_fld">Salesman</th> |
||||
|
<th class="mon_fld">Total Qty</th> |
||||
|
<th class="mon_fld">Amount Total</th> |
||||
|
|
||||
|
<th class="mon_fld">Note</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
|
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
|
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td> |
||||
|
<t t-if="pos_report['id']"> |
||||
|
<div class="dropdown dropdown-toggle"> |
||||
|
<a data-toggle="dropdown" href="#"> |
||||
|
<span class="caret"/> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['shop']"/> |
||||
|
</span> |
||||
|
</a> |
||||
|
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"> |
||||
|
<li> |
||||
|
<a class="view_pos_order" tabindex="-1" href="#" |
||||
|
t-att-id="pos_report['id']"> |
||||
|
View PoS Order |
||||
|
</a> |
||||
|
</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
</t> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['session']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['date_order']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['salesman']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['sum']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['amount_total']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['note']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
<!-- </t>--> |
||||
|
<!-- Report for order detail--> |
||||
|
|
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div t-if="order.report_type == 'report_by_order_detail'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>PoS</th> |
||||
|
<th class="mon_fld">Order</th> |
||||
|
<th class="mon_fld">Date Order</th> |
||||
|
<th class="mon_fld">Customer</th> |
||||
|
<th class="mon_fld">Salesman</th> |
||||
|
<th class="mon_fld">Product Code</th> |
||||
|
<th class="mon_fld">Product Name</th> |
||||
|
<th class="mon_fld">Price unit</th> |
||||
|
<th class="mon_fld">Qty</th> |
||||
|
<th class="mon_fld">Price Subtotal</th> |
||||
|
<th class="mon_fld">Price Subtotal Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
|
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
data-toggle="collapse" |
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td style="border: 0px solid black;"> |
||||
|
<i class="fa fa-caret-down" role="img" aria-label="Unfolded" title="Unfolded"/> |
||||
|
|
||||
|
<span> |
||||
|
<t t-esc="pos_report['shop']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['session']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['date_order']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['salesman']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['default_code']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['full_product_name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['price_unit']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
|
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['sum']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['price_subtotal']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['price_subtotal_incl']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!--Report for product--> |
||||
|
<div t-if="order.report_type == 'report_by_product'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>Category</th> |
||||
|
<th class="mon_fld">Product Code</th> |
||||
|
<th class="mon_fld">Product Name</th> |
||||
|
<th class="mon_fld">Qty</th> |
||||
|
<th class="mon_fld">Amount Total</th> |
||||
|
<th class="mon_fld">Amount Total Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
|
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
data-toggle="collapse" |
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td style="border: 0px solid black;"> |
||||
|
<i class="fa fa-caret-down" role="img" aria-label="Unfolded" title="Unfolded"/> |
||||
|
|
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
|
||||
|
|
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['default_code']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['full_product_name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['qty']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['amount_total']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['amount_paid']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!--Report for Categories--> |
||||
|
|
||||
|
<div t-if="order.report_type == 'report_by_categories'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>Category</th> |
||||
|
<th class="mon_fld">Qty</th> |
||||
|
<th class="mon_fld">Amount Total</th> |
||||
|
<th class="mon_fld">Amount Total Incl</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
data-toggle="collapse" |
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td style="border: 0px solid black;"> |
||||
|
<i class="fa fa-caret-down" role="img" aria-label="Unfolded" title="Unfolded"/> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['qty']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['amount_total']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['total_incl']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
<!--Report for Salesman--> |
||||
|
|
||||
|
<div t-if="order.report_type == 'report_by_salesman'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>Salesman</th> |
||||
|
<th class="mon_fld">Total Order</th> |
||||
|
<th class="mon_fld">Total Qty</th> |
||||
|
<th class="mon_fld">Total Amount</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
data-toggle="collapse" |
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td style="border: 0px solid black;"> |
||||
|
<i class="fa fa-caret-down" role="img" aria-label="Unfolded" title="Unfolded"/> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['order']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['qty']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['amount']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<!--Report for Payment--> |
||||
|
|
||||
|
<div t-if="order.report_type == 'report_by_payment'"> |
||||
|
<div class="table_main_view"> |
||||
|
<table cellspacing="0" width="100%"> |
||||
|
|
||||
|
<thead> |
||||
|
<tr class="table_pos_head"> |
||||
|
<th>Point of Sale</th> |
||||
|
<th class="mon_fld">PoS Session</th> |
||||
|
<th class="mon_fld">Payment</th> |
||||
|
<th class="mon_fld">Total Amount</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<!-- <t t-if="order['report_type']='report_by_order'">--> |
||||
|
<t t-foreach="report_lines" t-as="pos_report"> |
||||
|
<tr style="border: 1.5px solid black;" class="ps-line" |
||||
|
data-toggle="collapse" |
||||
|
t-att-data-account-id="pos_report['id']" |
||||
|
t-attf-data-target=".a{{pos_report['id']}}"> |
||||
|
<td style="border: 0px solid black;"> |
||||
|
<i class="fa fa-caret-down" role="img" aria-label="Unfolded" title="Unfolded"/> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['config']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['session']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['name']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
<td style="text-align:center;"> |
||||
|
<span> |
||||
|
<t t-esc="pos_report['sum']"/> |
||||
|
</span> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,12 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<record id="pos_all_report_action" model="ir.actions.client"> |
||||
|
<field name="name">Pos Report</field> |
||||
|
<field name="tag">p_r</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem action="pos_all_report_action" parent="point_of_sale.menu_point_rep" |
||||
|
id="pos_report_sub_menu" |
||||
|
name="PoS Report"/> |
||||
|
|
||||
|
</odoo> |
@ -0,0 +1,16 @@ |
|||||
|
<odoo> |
||||
|
<data> |
||||
|
|
||||
|
<template id="assets" inherit_id="web.assets_backend"> |
||||
|
<xpath expr="." position="inside"> |
||||
|
<link rel="stylesheet" |
||||
|
href="/pos_report_generator/static/src/css/pos_report.css" |
||||
|
id="reports-stylesheet"/> |
||||
|
<script type="text/javascript" src="/pos_report_generator/static/src/js/pos_report.js"/> |
||||
|
<script type="text/javascript" src="/pos_report_generator/static/src/js/action_manager.js"/> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
|
||||
|
|
||||
|
</data> |
||||
|
</odoo> |