Browse Source

July 4: [ADD] Initial commit 'pdf_report_action'

pull/254/merge
RisvanaCybro 10 months ago
parent
commit
dc6e61983e
  1. 47
      pdf_report_action/README.rst
  2. 22
      pdf_report_action/__init__.py
  3. 55
      pdf_report_action/__manifest__.py
  4. 6
      pdf_report_action/doc/RELEASE_NOTES.md
  5. 2
      pdf_report_action/security/ir.model.access.csv
  6. BIN
      pdf_report_action/static/description/assets/icons/check.png
  7. BIN
      pdf_report_action/static/description/assets/icons/chevron.png
  8. BIN
      pdf_report_action/static/description/assets/icons/cogs.png
  9. BIN
      pdf_report_action/static/description/assets/icons/consultation.png
  10. BIN
      pdf_report_action/static/description/assets/icons/ecom-black.png
  11. BIN
      pdf_report_action/static/description/assets/icons/education-black.png
  12. BIN
      pdf_report_action/static/description/assets/icons/hotel-black.png
  13. BIN
      pdf_report_action/static/description/assets/icons/license.png
  14. BIN
      pdf_report_action/static/description/assets/icons/lifebuoy.png
  15. BIN
      pdf_report_action/static/description/assets/icons/logo.png
  16. BIN
      pdf_report_action/static/description/assets/icons/manufacturing-black.png
  17. BIN
      pdf_report_action/static/description/assets/icons/pos-black.png
  18. BIN
      pdf_report_action/static/description/assets/icons/puzzle.png
  19. BIN
      pdf_report_action/static/description/assets/icons/restaurant-black.png
  20. BIN
      pdf_report_action/static/description/assets/icons/service-black.png
  21. BIN
      pdf_report_action/static/description/assets/icons/trading-black.png
  22. BIN
      pdf_report_action/static/description/assets/icons/training.png
  23. BIN
      pdf_report_action/static/description/assets/icons/update.png
  24. BIN
      pdf_report_action/static/description/assets/icons/user.png
  25. BIN
      pdf_report_action/static/description/assets/icons/wrench.png
  26. BIN
      pdf_report_action/static/description/assets/misc/categories.png
  27. BIN
      pdf_report_action/static/description/assets/misc/check-box.png
  28. BIN
      pdf_report_action/static/description/assets/misc/compass.png
  29. BIN
      pdf_report_action/static/description/assets/misc/corporate.png
  30. BIN
      pdf_report_action/static/description/assets/misc/customer-support.png
  31. BIN
      pdf_report_action/static/description/assets/misc/cybrosys-logo.png
  32. BIN
      pdf_report_action/static/description/assets/misc/features.png
  33. BIN
      pdf_report_action/static/description/assets/misc/logo.png
  34. BIN
      pdf_report_action/static/description/assets/misc/pictures.png
  35. BIN
      pdf_report_action/static/description/assets/misc/pie-chart.png
  36. BIN
      pdf_report_action/static/description/assets/misc/right-arrow.png
  37. BIN
      pdf_report_action/static/description/assets/misc/star.png
  38. BIN
      pdf_report_action/static/description/assets/misc/support.png
  39. BIN
      pdf_report_action/static/description/assets/misc/whatsapp.png
  40. BIN
      pdf_report_action/static/description/assets/modules/m1.png
  41. BIN
      pdf_report_action/static/description/assets/modules/m2.png
  42. BIN
      pdf_report_action/static/description/assets/modules/m3.png
  43. BIN
      pdf_report_action/static/description/assets/modules/m4.jpg
  44. BIN
      pdf_report_action/static/description/assets/modules/m5.jpg
  45. BIN
      pdf_report_action/static/description/assets/modules/m6.jpg
  46. BIN
      pdf_report_action/static/description/assets/screenshots/1.png
  47. BIN
      pdf_report_action/static/description/assets/screenshots/2.png
  48. BIN
      pdf_report_action/static/description/assets/screenshots/3.png
  49. BIN
      pdf_report_action/static/description/assets/screenshots/4.png
  50. BIN
      pdf_report_action/static/description/assets/screenshots/5.png
  51. BIN
      pdf_report_action/static/description/assets/screenshots/6.png
  52. BIN
      pdf_report_action/static/description/assets/screenshots/7.png
  53. BIN
      pdf_report_action/static/description/assets/screenshots/8.png
  54. BIN
      pdf_report_action/static/description/assets/screenshots/hero.gif
  55. BIN
      pdf_report_action/static/description/banner.png
  56. BIN
      pdf_report_action/static/description/icon.png
  57. 666
      pdf_report_action/static/description/index.html
  58. 9
      pdf_report_action/static/src/css/report_action.css
  59. 8
      pdf_report_action/static/src/js/report_action.js
  60. 24
      pdf_report_action/static/src/js/report_action_systray.js
  61. 16
      pdf_report_action/static/src/xml/report_action_systray.xml
  62. 22
      pdf_report_action/wizard/__init__.py
  63. 222
      pdf_report_action/wizard/dynamic_action.py
  64. 45
      pdf_report_action/wizard/dynamic_action_views.xml

47
pdf_report_action/README.rst

@ -0,0 +1,47 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg
:target: https://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
Dynamic Report Operations
=========================
User can get the different types of operations of report in this module
Configuration
=============
* No additional configurations needed
Company
-------
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__
License
-------
Affero General Public License, Version 3 `(AGPL v3).
<https://www.gnu.org/licenses/agpl-3.0-standalone.html>`__
Credits
-------
* Developer : (V15) Bhagyadev KP
* contact: odoo@cybrosys.com
Contacts
--------
* Mail Contact : odoo@cybrosys.com
* Website : https://cybrosys.com
Bug Tracker
-----------
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
Maintainer
==========
.. image:: https://cybrosys.com/images/logo.png
:target: https://cybrosys.com
This module is maintained by Cybrosys Technologies.
For support and more information, please visit `Our Website <https://cybrosys.com/>`__
Further information
===================
HTML Description: `<static/description/index.html>`__

22
pdf_report_action/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Bhagyadev K P(<https://www.cybrosys.com>)
#
# 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 <https://www.gnu.org/licenses/>.
#
################################################################################
from . import wizard

55
pdf_report_action/__manifest__.py

@ -0,0 +1,55 @@
# -*- coding: utf-8 -*-
################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Bhagyadev K P(<https://www.cybrosys.com>)
#
# 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 <https://www.gnu.org/licenses/>.
#
################################################################################
{
'name': 'Dynamic Report Operations',
'version': '15.0.1.0.0',
'category': 'Productivity',
'summary': """Perform multiple report operations in Sales/Purchase/Inventory
/ Accounting""",
'description': "Users can perform various actions such as printing, "
"downloading, and sharing reports of various records in "
"Sales, Purchase, Inventory, Accounting",
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': 'https://www.cybrosys.com',
'depends': ['sale_management', 'purchase', 'stock', 'account'],
'data': [
'security/ir.model.access.csv',
'wizard/dynamic_action_views.xml',
],
'assets': {
'web.assets_backend': {
'pdf_report_action/static/src/css/report_action.css',
'pdf_report_action/static/src/js/report_action.js',
'pdf_report_action/static/src/js/report_action_systray.js',
},
'web.assets_qweb': {
'pdf_report_action/static/src/xml/report_action_systray.xml',
},
},
'images': ['static/description/banner.png'],
'license': 'AGPL-3',
'installable': True,
'auto_install': False,
'application': False,
}

6
pdf_report_action/doc/RELEASE_NOTES.md

@ -0,0 +1,6 @@
## Module <pdf_report_action>
#### 19.06.2024
#### Version 15.0.1.0.0
##### ADD
- Initial Commit for Dynamic Report Operations

2
pdf_report_action/security/ir.model.access.csv

@ -0,0 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_dynamic_action_user,access.dynamic.action.user,model_dynamic_action,base.group_user,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_dynamic_action_user access.dynamic.action.user model_dynamic_action base.group_user 1 1 1 1

BIN
pdf_report_action/static/description/assets/icons/check.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
pdf_report_action/static/description/assets/icons/chevron.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

BIN
pdf_report_action/static/description/assets/icons/cogs.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
pdf_report_action/static/description/assets/icons/consultation.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
pdf_report_action/static/description/assets/icons/ecom-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 576 B

BIN
pdf_report_action/static/description/assets/icons/education-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 733 B

BIN
pdf_report_action/static/description/assets/icons/hotel-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

BIN
pdf_report_action/static/description/assets/icons/license.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
pdf_report_action/static/description/assets/icons/lifebuoy.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
pdf_report_action/static/description/assets/icons/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
pdf_report_action/static/description/assets/icons/manufacturing-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 B

BIN
pdf_report_action/static/description/assets/icons/pos-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 B

BIN
pdf_report_action/static/description/assets/icons/puzzle.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

BIN
pdf_report_action/static/description/assets/icons/restaurant-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

BIN
pdf_report_action/static/description/assets/icons/service-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

BIN
pdf_report_action/static/description/assets/icons/trading-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

BIN
pdf_report_action/static/description/assets/icons/training.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

BIN
pdf_report_action/static/description/assets/icons/update.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
pdf_report_action/static/description/assets/icons/user.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 988 B

BIN
pdf_report_action/static/description/assets/icons/wrench.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
pdf_report_action/static/description/assets/misc/categories.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
pdf_report_action/static/description/assets/misc/check-box.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
pdf_report_action/static/description/assets/misc/compass.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
pdf_report_action/static/description/assets/misc/corporate.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
pdf_report_action/static/description/assets/misc/customer-support.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
pdf_report_action/static/description/assets/misc/cybrosys-logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
pdf_report_action/static/description/assets/misc/features.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

BIN
pdf_report_action/static/description/assets/misc/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
pdf_report_action/static/description/assets/misc/pictures.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
pdf_report_action/static/description/assets/misc/pie-chart.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
pdf_report_action/static/description/assets/misc/right-arrow.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 967 B

BIN
pdf_report_action/static/description/assets/misc/star.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
pdf_report_action/static/description/assets/misc/support.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
pdf_report_action/static/description/assets/misc/whatsapp.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
pdf_report_action/static/description/assets/modules/m1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
pdf_report_action/static/description/assets/modules/m2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
pdf_report_action/static/description/assets/modules/m3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
pdf_report_action/static/description/assets/modules/m4.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
pdf_report_action/static/description/assets/modules/m5.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
pdf_report_action/static/description/assets/modules/m6.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
pdf_report_action/static/description/assets/screenshots/1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
pdf_report_action/static/description/assets/screenshots/2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

BIN
pdf_report_action/static/description/assets/screenshots/3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

BIN
pdf_report_action/static/description/assets/screenshots/4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
pdf_report_action/static/description/assets/screenshots/5.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
pdf_report_action/static/description/assets/screenshots/6.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
pdf_report_action/static/description/assets/screenshots/7.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
pdf_report_action/static/description/assets/screenshots/8.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
pdf_report_action/static/description/assets/screenshots/hero.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

BIN
pdf_report_action/static/description/banner.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
pdf_report_action/static/description/icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

666
pdf_report_action/static/description/index.html

@ -0,0 +1,666 @@
<div style="background-color: #714B67; height: 810px; width: 100%; padding: 15px; position: relative;">
<!-- TITLE BAR -->
<div class="d-flex align-items-center justify-content-between"
style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;">
<img src="assets/misc/cybrosys-logo.png" width="42" height="42" alt=""
style="width: 42px; height: 42px;"/>
<div>
<div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;"
class="mr-2">
<i class="fa fa-check mr-1"></i>Community
</div>
<div style="color: #875A7B; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;"
class="mr-2">
<i class="fa fa-check mr-1"></i>Enterprise
</div>
<div style="color: #017E84; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;"
class="mr-2">
<i class="fa fa-check mr-1"></i>Odoo.sh
</div>
</div>
</div>
<!-- END OF TITLE BAR -->
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<!-- APP HERO -->
<h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;">Dynamic Report Operations</h1>
<p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;">Different Action Types For PDF Report.</p>
<!-- END OF APP HERO -->
<img src="./assets/screenshots/hero.gif" class="img-responsive"
width="100%" height="auto" alt=""/>
</div>
</div>
</div>
</div>
<!-- NAVIGATION SECTION -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/compass.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Explore This
Module</h2>
</div>
<div class="row my-4" style="font-family: 'Montserrat', sans-serif;">
<div class="col-sm-12 col-md-6 my-3">
<a href="#overview">
<div class="d-flex justify-content-between align-items-center"
style="background-color: #f5f5f5; padding: 30px; width: 100%;">
<div>
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span>
<span
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">Learn
more about this
module</span>
</div>
<img src="assets/misc/right-arrow.png" width="36" height="36" alt=""/>
</div>
</a>
</div>
<div class="col-sm-12 col-md-6 my-3">
<a href="#features">
<div class="d-flex justify-content-between align-items-center"
style="background-color: #f5f5f5; padding: 30px; width: 100%;">
<div>
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span>
<span
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View
features of this
module</span>
</div>
<img src="assets/misc/right-arrow.png" width="36" height="36" alt=""/>
</div>
</a>
</div>
<div class="col-sm-12 col-md-6 my-3">
<a href="#screenshots">
<div class="d-flex justify-content-between align-items-center"
style="background-color: #f5f5f5; padding: 30px; width: 100%;">
<div>
<span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span>
<span
style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33; display: block;">View
screenshots for this
module</span>
</div>
<img src="assets/misc/right-arrow.png" width="36" height="36" alt=""/>
</div>
</a>
</div>
</div>
<!-- END OF NAVIGATION SECTION -->
<!-- OVERVIEW SECTION -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="overview">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/pie-chart.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Overview
</h2>
</div>
<div class="row"
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;">
<div class="col-sm-12 py-4">This module allows users to have different actions for pdf report.
</div>
</div>
<!-- END OF OVERVIEW SECTION -->
<!-- FEATURES SECTION -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="features">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/features.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Features
</h2>
</div>
<div class="row"
style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;">
<div class="col-sm-12 col-md-6">
<div class="d-flex align-items-center"
style="margin-top: 40px; margin-bottom: 40px">
<img src="assets/misc/check-box.png" class="mr-2" alt=""/>
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Define different actions for pdf report.</span>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="d-flex align-items-center"
style="margin-top: 40px; margin-bottom: 40px">
<img src="assets/misc/check-box.png" class="mr-2" alt=""/>
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Print, Download, Open and Share by Email options.</span>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="d-flex align-items-center"
style="margin-top: 40px; margin-bottom: 40px">
<img src="assets/misc/check-box.png" class="mr-2" alt=""/>
<span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Available for Sales, Purchase, Inventory and Invoice modules.</span>
</div>
</div>
</div>
<!-- END OF FEATURES SECTION -->
<!-- SCREENSHOTS SECTION -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;"
id="screenshots">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/pictures.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Screenshots
</h2>
</div>
<div class="row">
<div class="col-sm-12">
<div style="display: block; margin: 30px auto;">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">We can see a Systray icon 'Report Actions'.
</p>
<img src="assets/screenshots/1.png" class="img-thumbnail" alt="">
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">There are four actions Print, Download, Open and Share by Email</p>
<img src="assets/screenshots/2.png"
class="img-responsive img-thumbnail border" width="100%"
height="auto" alt=""/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
We can select the model and records to perform the report actions
</p>
<img src="assets/screenshots/3.png" alt=""
class="img-responsive img-thumbnail border" width="100%"
height="auto"/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
Sale Order Report View.
</p>
<img src="assets/screenshots/4.png" alt=""
class="img-responsive img-thumbnail border" width="100%"
height="auto"/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
Purchase Order Report View.
</p>
<img src="assets/screenshots/5.png" alt=""
class="img-responsive img-thumbnail border" width="100%"
height="auto"/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
Invoice Report View.
</p>
<img src="assets/screenshots/6.png" alt=""
class="img-responsive img-thumbnail border" width="100%"
height="auto"/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
Stock Picking Report View.
</p>
<img src="assets/screenshots/7.png" alt=""
class="img-responsive img-thumbnail border" width="100%"
height="auto"/>
</div>
<div class="col-lg-12 my-2">
<p style="font-weight: 400; font-family: 'Montserrat', sans-serif; font-size: 14px;">
Share Report Via Email.
</p>
<img src="assets/screenshots/8.png"
class="img-responsive img-thumbnail border" width="100%"
height="auto" alt=""/>
</div>
</div>
<!-- END OF SCREENSHOTS SECTION -->
<!-- RELATED PRODUCTS -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/categories.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Related
Products
</h2>
</div>
<div class="row">
<div class="col-sm-12">
<div id="demo1" class="row carousel slide" data-ride="carousel">
<!-- The slideshow -->
<div class="carousel-inner" style="padding: 30px;">
<div class="carousel-item" style="min-height: 198.656px;">
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16"
style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/project_dashboard_odoo"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block" alt=""
style="border-radius: 0px;"
src="assets/modules/m1.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16"
style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/advanced_dynamic_dashboard"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-radius: 0px;" alt=""
src="assets/modules/m2.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16"
style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/statement_report"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-radius: 0px;" alt=""
src="assets/modules/m3.png">
</div>
</a>
</div>
</div>
<div class="carousel-item active"
style="min-height: 198.656px;">
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16"
style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/ocr_data_retrieval"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-radius: 0px;" alt=""
src="assets/modules/m4.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/15.0/fleet_rental_dashboard"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-radius: 0px;" alt=""
src="assets/modules/m6.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/15.0/product_profit_report"
target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-radius: 0px;" alt=""
src="assets/modules/m5.jpg">
</div>
</a>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo1" data-slide="prev"
style="width:35px; color:#000"> <span
class="carousel-control-prev-icon"><i
class="fa fa-chevron-left"
style="font-size:24px"></i></span>
</a> <a class="carousel-control-next" href="#demo1"
data-slide="next" style="width:35px; color:#000">
<span class="carousel-control-next-icon"><i
class="fa fa-chevron-right"
style="font-size:24px"></i></span>
</a>
</div>
</div>
</div>
<!-- END OF RELATED PRODUCTS -->
<!-- OUR SERVICES -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/star.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Our Services
</h2>
</div>
<div class="container my-5">
<div class="row">
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/cogs.png" class="img-responsive"
height="48px" width="48px" alt="">
</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" alt="">
</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" alt="">
</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" alt=""
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" alt="">
</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" alt="">
</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" alt="">
</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" alt="">
</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" alt="">
</div>
<h6 class="text-center"
style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Licensing Consultancy</h6>
</div>
</div>
</div>
<!-- OUR INDUSTRIES -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/corporate.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Our
Industries
</h2>
</div>
<div class="container my-5">
<div class="row">
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/trading-black.png" alt=""
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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/pos-black.png" alt=""
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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/education-black.png" alt=""
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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/manufacturing-black.png"
class="img-responsive mb-3" height="48px"
width="48px" alt="">
<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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/ecom-black.png" alt=""
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 &amp; 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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/service-black.png" alt=""
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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/restaurant-black.png" alt=""
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: 0px; padding: 2rem !important; height: 250px !important;">
<img src="assets/icons/hotel-black.png" alt=""
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>
</div>
<!-- SUPPORT -->
<div class="d-flex align-items-center"
style="border-bottom: 2px solid #714B67; padding: 15px 0px;">
<div class="d-flex justify-content-center align-items-center mr-2"
style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;">
<img src="assets/misc/customer-support.png" alt=""/>
</div>
<h2 class="mt-2"
style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">
Support
</h2>
</div>
<div class="container mt-5">
<div class="row">
<div class="col-sm-12 col-md-6">
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;">
<div class="mr-4"
style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;">
<img src="assets/misc/support.png" height="48" alt=""
width="48"
style="width: 42px; height: 42px;"/>
</div>
<div>
<h4>Need Help?</h4>
<p style="line-height: 100%;">Got questions or need
help?
Get in touch.</p>
<a href="mailto:odoo@cybrosys.com">
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;">
odoo@cybrosys.com</p>
</a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;">
<div class="mr-4"
style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;">
<img src="assets/misc/whatsapp.png" height="52" alt=""
width="52"
style="width: 52px; height: 52px;"/>
</div>
<div>
<h4>WhatsApp</h4>
<p style="line-height: 100%;">Say hi to us on
WhatsApp!</p>
<a href="https://api.whatsapp.com/send?phone=918606827707">
<p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;">
+91 86068
27707</p>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 my-5 d-flex justify-content-center align-items-center">
<img src="assets/misc/logo.png" width="144" height="31" alt=""
style="width:144px; height: 31px; margin-top: 40px;"/>
</div>
</div>
</div>
<!-- END OF SUPPORT -->
</div>

9
pdf_report_action/static/src/css/report_action.css

@ -0,0 +1,9 @@
.wizard_btn {
margin: 12px;
border-radius: 7px;
height: 40px;
width: 150px;
}
.ui-autocomplete-input {
width: 80px !important;
}

8
pdf_report_action/static/src/js/report_action.js

@ -0,0 +1,8 @@
/** @odoo-module*/
import { registry } from "@web/core/registry";
/**
*Action for open the print screen
*/
registry.category("ir.actions.report handlers").add("xlsx", async (action) => {
var printWindow = window.open(action.data).print();
})

24
pdf_report_action/static/src/js/report_action_systray.js

@ -0,0 +1,24 @@
/** @odoo-module **/
import core from 'web.core';
import SystrayMenu from 'web.SystrayMenu';
import Widget from 'web.Widget';
var qweb = core.qweb
//Extended the widget to create custom systray widget
const SystrayWidget = Widget.extend({
template: 'pdf_report_action.IconSystrayDropdown',
events: {
'click .o-dropdown': '_onClick',
},
_onClick: function(ev){ // Function on clicking the systray icon
this.do_action({
type: 'ir.actions.act_window',
name: 'Report Action',
res_model: 'dynamic.action',
views: [[false, 'form']],
target: 'new',
});
},
});
SystrayMenu.Items.push(SystrayWidget);
export default SystrayWidget;

16
pdf_report_action/static/src/xml/report_action_systray.xml

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<templates>
<!-- Template for systray dropdown-->
<t t-name="pdf_report_action.IconSystrayDropdown">
<div class="SystrayMenuContainer">
<div class="o_MessagingMenu dropdown ">
<div class="o-dropdown dropdown o_debug_manager o-dropdown--no-caret" t-on-click="openWizard()">
<a class="o_MessagingMenu_toggler dropdown-toggle o-no-caret o-dropdown--narrow" href="#"
title="Report Actions" role="button" aria-haspopup="true" aria-expanded="">
<i id='create_so' class="fa fa-file-text-o"/>
</a>
</div>
</div>
</div>
</t>
</templates>

22
pdf_report_action/wizard/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Bhagyadev K P(<https://www.cybrosys.com>)
#
# 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 <https://www.gnu.org/licenses/>.
#
################################################################################
from . import dynamic_action

222
pdf_report_action/wizard/dynamic_action.py

@ -0,0 +1,222 @@
# -*- coding: utf-8 -*-
################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Bhagyadev K P(<https://www.cybrosys.com>)
#
# 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 <https://www.gnu.org/licenses/>.
#
################################################################################
import base64
from odoo import api, fields, models, _
from odoo.exceptions import ValidationError
class DynamicAction(models.TransientModel):
"""
The class DynamicAction provides print, share, open and download
reports
in various models .
Methods:
print_report(self):
In this method print the screen of the form.Return a dict.
download_report(self):
In this method download the report of the form.Return a dict.
open_report(self):
In this methode open the print screen of the form.Return a dict.
share_by_email(self):
In this method share email report of the corresponding form.
Return a dict.3.Some misspelled words are there in the doc
string of the function. check it and correct it
"""
_name = "dynamic.action"
_description = "Dynamic Action"
res_model = fields.Char(string='Related Document Model',
help='Model of the related document')
res_id = fields.Integer(string='Related Document ID',
model_field='res_model',
help='ID of the related document')
resource_ref = fields.Reference(string='Record',
selection='_selection_resource_ref',
inverse='_inverse_resource_ref',
help='Reference to the record')
@api.model
def _selection_resource_ref(self):
""" Reference field function"""
domain = [('model', 'in', ['account.move', 'sale.order',
'purchase.order', 'stock.picking'])]
models_with_printing = self.env['ir.model'].sudo().search(domain)
return [(model.model, model.name) for model in models_with_printing]
def _inverse_resource_ref(self):
""" Reference field function"""
for participant in self:
if participant.resource_ref:
participant.res_id = participant.resource_ref.id
participant.res_model = participant.resource_ref._name
def action_print_report(self):
""" print button function"""
form_id = self.res_id
model = self.res_model
server_address = self.env['ir.config_parameter'].sudo().get_param(
'web.base.url')
if model == 'sale.order':
data = (f"{server_address}/report/pdf/sale."
f"report_saleorder/{form_id}")
elif model == 'purchase.order':
data = (f"{server_address}/report/pdf/purchase."
f"report_purchaseorder/{form_id}")
elif model == 'stock.picking':
data = f"{server_address}/report/pdf/stock.report_picking/{form_id}"
elif model == 'account.move':
data = (f"{server_address}/report/pdf/account."
f"report_invoice/{form_id}")
else:
raise ValidationError(_("No record to print!!!"))
return {
'type': 'ir.actions.report',
'data': data,
'report_type': 'xlsx',
}
def action_download_report(self):
"""
Summary:
In this method download the report of the form. Return a dict.
Returns:
type:dict , it contains the data for the download report.
"""
form_id = self.res_id
model = self.res_model
if model == 'sale.order':
report_name = 'sale.report_saleorder'
elif model == 'purchase.order':
report_name = 'purchase.report_purchaseorder'
elif model == 'stock.picking':
report_name = 'stock.report_picking'
elif model == 'account.move':
report_name = 'account.report_invoice'
else:
raise ValidationError(_("Select a record to download!!!"))
report = self.env['ir.actions.report']._get_report_from_name(
report_name)
if not report:
raise ValidationError(_("Report not found!"))
pdf_content, content_type = report._render_qweb_pdf([form_id])
file_name = self.env[model].browse(form_id).name + '.pdf'
attachment = self.env['ir.attachment'].create({
'name': file_name,
'type': 'binary',
'datas': base64.b64encode(pdf_content),
'res_model': model,
'res_id': form_id,
'mimetype': 'application/x-pdf'
})
return {
'type': 'ir.actions.act_url',
'target': 'new',
'url': f"/web/content/{attachment.id}?download=true"
}
def action_open_report(self):
"""
Summary:
In this method open the print screen of the form.Return a dict.
Returns:
type:dict , it contains the data for the open print report.
"""
form_id = self.res_id
model = self.res_model
server_address = self.get_base_url()
if model == 'sale.order':
url = f"{server_address}/report/pdf/sale.report_saleorder/{form_id}"
elif model == 'purchase.order':
url = (f"{server_address}/report/pdf/purchase."
f"report_purchaseorder/{form_id}")
elif model == 'stock.picking':
url = f"{server_address}/report/pdf/stock.report_picking/{form_id}"
elif model == 'account.move':
url = (f"{server_address}/report/pdf/account."
f"report_invoice/{form_id}")
else:
raise ValidationError(_("select any record!!!"))
return {
'type': 'ir.actions.act_url',
'target': 'new',
'url': url
}
def action_share_email(self):
"""
Summary:
In this method share email report of the corresponding form.
Return a dict.
Returns:
type:dict , it contains the data for the email template.
"""
form_id = self.res_id
model = self.res_model
model_name = self.resource_ref
self.ensure_one()
if model == 'sale.order':
if model_name.state not in ('sale', 'done'):
mail_template = self.env.ref('sale.email_template_edi_sale')
else:
mail_template = self.env.ref(
'sale.mail_template_sale_confirmation')
elif model == 'purchase.order':
if model_name.state not in ('purchase', 'done'):
mail_template = self.env.ref(
'purchase.email_template_edi_purchase')
else:
mail_template = self.env.ref(
'purchase.email_template_edi_purchase_done')
elif model == 'account.move':
if model_name.move_type == 'out_refund':
mail_template = self.env.ref(
'account.email_template_edi_credit_note')
else:
mail_template = self.env.ref(
'account.email_template_edi_invoice')
else:
raise ValidationError(_("select a record or selected record does "
"not have a share option!!!!!!"))
ctx = {
'default_model': model,
'default_res_id': form_id,
'default_use_template': bool(mail_template),
'default_template_id': mail_template.id if mail_template else None,
'default_composition_mode': 'comment',
'mark_so_as_sent': True,
'default_email_layout_xmlid': 'mail.mail_notification_layout_with_'
'responsible_signature',
'proforma': self.env.context.get('proforma', False),
'force_email': True,
}
if mail_template:
return {
'type': 'ir.actions.act_window',
'view_mode': 'form',
'res_model': 'mail.compose.message',
'views': [(False, 'form')],
'view_id': False,
'target': 'new',
'context': ctx,
}
raise ValidationError(_("select a record or selected record does not"
" have a share option!!!!!!!!!!!!"))

45
pdf_report_action/wizard/dynamic_action_views.xml

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Action for the form view of the wizard -->
<record id="dynamic_action_view_form" model="ir.ui.view">
<field name="name">dynamic.action.view.form</field>
<field name="model">dynamic.action</field>
<field name="arch" type="xml">
<form name="report">
<center>
<span>Select model and Record :</span>
<field name="resource_ref"/>
<br/>
<br/>
<br/>
<field name="res_model" invisible="1"/>
<button name="action_print_report" type="object"
class="btn btn-primary wizard_btn">
<i class="fa fa-print mr-2"/>
Print
</button>
<button name="action_download_report"
class="btn btn-primary wizard_btn" type="object">
<i class="fa fa-download mr-2"/>
Download
</button>
<button name="action_open_report" type="object"
class="btn btn-primary wizard_btn">
<i class="fa fa-file-text"/>
Open
</button>
<button name="action_share_email"
class="btn btn-primary wizard_btn" type="object"
attrs="{'invisible': [('res_model', '=', 'stock.picking')]}">
<i class="fa fa-envelope fa-fw"/>
Share By Email
</button>
</center>
<footer>
<button class="btn-secondary" string="Cancel"
special="cancel"/>
</footer>
</form>
</field>
</record>
</odoo>
Loading…
Cancel
Save