diff --git a/product_sale_report/README.md b/product_sale_report/README.md deleted file mode 100644 index 78c3a0a7b..000000000 --- a/product_sale_report/README.md +++ /dev/null @@ -1,31 +0,0 @@ -Product Sale Report Graph View -============================== - -Installation -============ -- www.odoo.com/documentation/13.0/setup/install.html -- Install our custom addon - -License -======= -GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) -(http://www.gnu.org/licenses/agpl.html) - -Bug Tracker -=========== -Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. - -Credits -======= -* Cybrosys Techno Solutions - - -Developer: Afras Habis - odoo@cybrosys.com - -Maintainer ----------- - -This module is maintained by Cybrosys Technologies. - -For support and more information, please visit https://www.cybrosys.com. - diff --git a/product_sale_report/__init__.py b/product_sale_report/__init__.py deleted file mode 100644 index 7480ba260..000000000 --- a/product_sale_report/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -################################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2019-TODAY Cybrosys Technologies(). -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -################################################################################### - -from . import models \ No newline at end of file diff --git a/product_sale_report/__manifest__.py b/product_sale_report/__manifest__.py deleted file mode 100644 index 421f11ee0..000000000 --- a/product_sale_report/__manifest__.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- -################################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2019-TODAY Cybrosys Technologies(). -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -###################################################################################. - -{ - 'name': 'Product Sale Report Graph View', - 'version': '13.0.1.0.0', - 'description': "Sale Reports of Individual Products in Graph view", - 'summary': """Sale Report of Individual Products in Graph view""", - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'website': "https://www.cybrosys.com", - 'category': 'Sales', - 'depends': ['sale_management'], - 'license': 'AGPL-3', - 'data': [ - 'views/sale_report_view.xml', - ], - "images": ['static/description/banner.png'], - 'installable': True, - 'application': False, - -} diff --git a/product_sale_report/doc/RELEASE_NOTES.md b/product_sale_report/doc/RELEASE_NOTES.md deleted file mode 100644 index 29291f7ec..000000000 --- a/product_sale_report/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,6 +0,0 @@ -## Module - -#### 06.03.2020 -#### Version 13.0.1.0.0 -#### ADD -Initial Commit diff --git a/product_sale_report/models/__init__.py b/product_sale_report/models/__init__.py deleted file mode 100644 index d637fd19f..000000000 --- a/product_sale_report/models/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -################################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2019-TODAY Cybrosys Technologies(). -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -################################################################################### - -from . import sale_report \ No newline at end of file diff --git a/product_sale_report/models/sale_report.py b/product_sale_report/models/sale_report.py deleted file mode 100644 index 7b1d20948..000000000 --- a/product_sale_report/models/sale_report.py +++ /dev/null @@ -1,60 +0,0 @@ -# -*- coding: utf-8 -*- -################################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2019-TODAY Cybrosys Technologies(). -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -################################################################################### - -from odoo import models, fields, api - - -class SaleProductTemplateReport(models.Model): - _inherit = 'product.template' - - def action_view_sales_report(self): - """ To view the graph view on click of Sales Report Button in product.template model """ - - action = self.env.ref('product_sale_report.report_sales_product_graph').read()[0] - action['domain'] = [('product_tmpl_id', 'in', self.ids)] - action['context'] = { - 'graph_measure': ['product_uom_qty'], - 'active_id': self._context.get('active_id'), - 'active_model': 'sale.report', - 'search_default_Sales': 1, - 'time_ranges': {'field': 'date', 'range': 'last_365_days'}, - 'group_by': 'date', - } - return action - - -class SaleProductReport(models.Model): - _inherit = 'product.product' - - def action_view_sales_report(self): - """ To view the graph view on click of Sales Report Button in product.product model """ - - action = self.env.ref('product_sale_report.report_sales_product_graph').read()[0] - action['domain'] = [('product_id', 'in', self.ids)] - action['context'] = { - 'graph_measure': ['product_uom_qty'], - 'active_id': self._context.get('active_id'), - 'active_model': 'sale.report', - 'search_default_Sales': 1, - 'time_ranges': {'field': 'date', 'range': 'last_365_days'}, - 'group_by': 'date', - } - return action diff --git a/product_sale_report/static/description/banner.png b/product_sale_report/static/description/banner.png deleted file mode 100644 index 9e5f9363b..000000000 Binary files a/product_sale_report/static/description/banner.png and /dev/null differ diff --git a/product_sale_report/static/description/icon.png b/product_sale_report/static/description/icon.png deleted file mode 100644 index 94904d381..000000000 Binary files a/product_sale_report/static/description/icon.png and /dev/null differ diff --git a/product_sale_report/static/description/images/1st.png b/product_sale_report/static/description/images/1st.png deleted file mode 100644 index 26c4aceaf..000000000 Binary files a/product_sale_report/static/description/images/1st.png and /dev/null differ diff --git a/product_sale_report/static/description/images/2nd.png b/product_sale_report/static/description/images/2nd.png deleted file mode 100644 index 0ca062c90..000000000 Binary files a/product_sale_report/static/description/images/2nd.png and /dev/null differ diff --git a/product_sale_report/static/description/images/3rd.png b/product_sale_report/static/description/images/3rd.png deleted file mode 100644 index d256729bc..000000000 Binary files a/product_sale_report/static/description/images/3rd.png and /dev/null differ diff --git a/product_sale_report/static/description/images/4th.png b/product_sale_report/static/description/images/4th.png deleted file mode 100644 index 967c7d49b..000000000 Binary files a/product_sale_report/static/description/images/4th.png and /dev/null differ diff --git a/product_sale_report/static/description/images/bank.png b/product_sale_report/static/description/images/bank.png deleted file mode 100644 index 088d9be88..000000000 Binary files a/product_sale_report/static/description/images/bank.png and /dev/null differ diff --git a/product_sale_report/static/description/images/cash.jpeg b/product_sale_report/static/description/images/cash.jpeg deleted file mode 100644 index b7a48f2f4..000000000 Binary files a/product_sale_report/static/description/images/cash.jpeg and /dev/null differ diff --git a/product_sale_report/static/description/images/checked.png b/product_sale_report/static/description/images/checked.png deleted file mode 100644 index 578cedb80..000000000 Binary files a/product_sale_report/static/description/images/checked.png and /dev/null differ diff --git a/product_sale_report/static/description/images/cybrosys.png b/product_sale_report/static/description/images/cybrosys.png deleted file mode 100644 index d76b5bafb..000000000 Binary files a/product_sale_report/static/description/images/cybrosys.png and /dev/null differ diff --git a/product_sale_report/static/description/images/dynamic.png b/product_sale_report/static/description/images/dynamic.png deleted file mode 100644 index b025b5c48..000000000 Binary files a/product_sale_report/static/description/images/dynamic.png and /dev/null differ diff --git a/product_sale_report/static/description/images/excel.png b/product_sale_report/static/description/images/excel.png deleted file mode 100644 index 60b9433b3..000000000 Binary files a/product_sale_report/static/description/images/excel.png and /dev/null differ diff --git a/product_sale_report/static/description/images/inventory.png b/product_sale_report/static/description/images/inventory.png deleted file mode 100644 index 5aa67e261..000000000 Binary files a/product_sale_report/static/description/images/inventory.png and /dev/null differ diff --git a/product_sale_report/static/description/images/produt_sale_report.png b/product_sale_report/static/description/images/produt_sale_report.png deleted file mode 100644 index 810a03900..000000000 Binary files a/product_sale_report/static/description/images/produt_sale_report.png and /dev/null differ diff --git a/product_sale_report/static/description/images/tax.png b/product_sale_report/static/description/images/tax.png deleted file mode 100644 index fc94d26e6..000000000 Binary files a/product_sale_report/static/description/images/tax.png and /dev/null differ diff --git a/product_sale_report/static/description/index.html b/product_sale_report/static/description/index.html deleted file mode 100644 index bdaa96332..000000000 --- a/product_sale_report/static/description/index.html +++ /dev/null @@ -1,523 +0,0 @@ -
- cybrosys-logo
-
-
-
-

Product Sale Report Graph View

-
-

Key Highlights

-
    -
  • checkSale reports of individual products in graph view -
  • -
-
-
-
-
-
-
-
- -
-
- -

Overview

-
-

- This module is used to get the sale report of individual products in graph view -

-
-
- -

Product Sale Report Graph View

-
-
    -
  • - checkIndividual - product sale report in Line chart -
  • -
-
    -
  • - checkIndividual - product sale report in Bar chart - -
  • -
-
    -
  • - checkIndividual - product sale report in Pie chart - -
  • -
-
- -
-
-

Screenshots

-
-
-
- -
-
-
-
- - - - - - -
-
    -
-
-
-
-
-
-
-

Suggested Products

-
- -
-
-

Our Service

-
- -
-
-
-

Our Industries

-
- -
-
-
-
- Odoo Industry
-
-
-

- - Trading

-

- Easily procure and sell your products.

-
-
-
-
-
- Odoo Industry -
-
-
-

- - Manufacturing

-

- Plan, track and schedule your operations.

-
-
-
-
-
- - Odoo Industry
-
-
-

- - Restaurant

-

- Run your bar or restaurant methodical.

-
-
-
-
-
- Odoo Industry
-
-
-

- - POS

-

- Easy configuring and convivial selling.

-
-
-
-
-
- Odoo Industry
-
-
-

- - E-commerce & Website

-

- Mobile friendly, awe-inspiring product pages.

-
-
-
-
-
- - Odoo Industry
-
-
-

- - Hotel Management

-

- An all-inclusive hotel management application.

-
-
-
-
-
- - Odoo Industry
-
-
-

- - Education

-

- A Collaborative platform for educational management.

-
-
-
-
-
- Odoo Industry
-
-
-

- - Service Management

-

- Keep track of services and invoice accordingly.

-
-
-
-
-
- -
-
-
-

Need Any Help?

-
-

If you have anything to share with us based on your use of this module, please - let us know. We are ready to offer our support.

-
-

Email us

-

odoo@cybrosys.com / info@cybrosys.com

-
-
-

Contact Us

- www.cybrosys.com -
-
-
-
-
-
-
-
-
- -
- - - - - - - -
-
-
- \ No newline at end of file diff --git a/product_sale_report/views/sale_report_view.xml b/product_sale_report/views/sale_report_view.xml deleted file mode 100644 index 52895e1cf..000000000 --- a/product_sale_report/views/sale_report_view.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - product.template.sale.report.button - product.template - - - -
- -
-
-
- - - - - product.product.sale.report.button - product.product - - - -
- -
-
-
- - - - Sales Analysis - sale.report - graph - - -
-
\ No newline at end of file