diff --git a/mrp_work_order_print/README.rst b/mrp_work_order_print/README.rst new file mode 100644 index 000000000..b2de71f51 --- /dev/null +++ b/mrp_work_order_print/README.rst @@ -0,0 +1,38 @@ +Print Work Order Details +======================== +Generate PDF Report of Work Order + +Depends +======= +[mrp] addon Odoo + +Installation +============ +- www.odoo.com/documentation/15.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. + +Authors +------- +* Faslu + +Credits +------- +* Developers: Faslu @cybrosys + Version 14: Minhaj T @cybrosys + Version 15: Sagarika B @cybrosys + +Maintainer +---------- + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com. diff --git a/mrp_work_order_print/__init__.py b/mrp_work_order_print/__init__.py new file mode 100644 index 000000000..633f86615 --- /dev/null +++ b/mrp_work_order_print/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- + diff --git a/mrp_work_order_print/__manifest__.py b/mrp_work_order_print/__manifest__.py new file mode 100644 index 000000000..61cad023e --- /dev/null +++ b/mrp_work_order_print/__manifest__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: faslu() +# +# 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': 'Print Work Order Details', + 'summary': """Generate PDF Report of Work Order""", + 'summary': """Generate PDF Report of Work Order, Odoo 15, Odoo""", + 'version': '15.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://cybrosys.com/", + 'category': 'Manufacturing', + 'depends': ['mrp'], + 'license': 'AGPL-3', + 'data': [ + 'views/report_work_order.xml', + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'auto_install': False, +} diff --git a/mrp_work_order_print/doc/RELEASE_NOTES.md b/mrp_work_order_print/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..de96d219f --- /dev/null +++ b/mrp_work_order_print/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 16.10.2021 +#### Version 15.0.1.0.0 +#### ADD +- Initial Commit for mrp_work_order_print diff --git a/mrp_work_order_print/static/description/assets/icons/check.png b/mrp_work_order_print/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/check.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/chevron.png b/mrp_work_order_print/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/chevron.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/cogs.png b/mrp_work_order_print/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/cogs.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/consultation.png b/mrp_work_order_print/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/consultation.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/ecom-black.png b/mrp_work_order_print/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/ecom-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/education-black.png b/mrp_work_order_print/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/education-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/hotel-black.png b/mrp_work_order_print/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/hotel-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/license.png b/mrp_work_order_print/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/license.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/lifebuoy.png b/mrp_work_order_print/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/lifebuoy.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/logo.png b/mrp_work_order_print/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/logo.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/manufacturing-black.png b/mrp_work_order_print/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/manufacturing-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/pos-black.png b/mrp_work_order_print/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/pos-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/puzzle.png b/mrp_work_order_print/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/puzzle.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/restaurant-black.png b/mrp_work_order_print/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/restaurant-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/service-black.png b/mrp_work_order_print/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/service-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/trading-black.png b/mrp_work_order_print/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/trading-black.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/training.png b/mrp_work_order_print/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/training.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/update.png b/mrp_work_order_print/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/update.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/user.png b/mrp_work_order_print/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/user.png differ diff --git a/mrp_work_order_print/static/description/assets/icons/wrench.png b/mrp_work_order_print/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/mrp_work_order_print/static/description/assets/icons/wrench.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/approval_image.png b/mrp_work_order_print/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/approval_image.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/budget_image.png b/mrp_work_order_print/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/budget_image.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/export_image.png b/mrp_work_order_print/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/export_image.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/magento_image.png b/mrp_work_order_print/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/magento_image.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/pos_image.png b/mrp_work_order_print/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/pos_image.png differ diff --git a/mrp_work_order_print/static/description/assets/modules/shopify_image.png b/mrp_work_order_print/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/mrp_work_order_print/static/description/assets/modules/shopify_image.png differ diff --git a/mrp_work_order_print/static/description/assets/screenshots/hero.png b/mrp_work_order_print/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..78dc2f66c Binary files /dev/null and b/mrp_work_order_print/static/description/assets/screenshots/hero.png differ diff --git a/mrp_work_order_print/static/description/assets/screenshots/mo.png b/mrp_work_order_print/static/description/assets/screenshots/mo.png new file mode 100644 index 000000000..25358831a Binary files /dev/null and b/mrp_work_order_print/static/description/assets/screenshots/mo.png differ diff --git a/mrp_work_order_print/static/description/assets/screenshots/wo.png b/mrp_work_order_print/static/description/assets/screenshots/wo.png new file mode 100644 index 000000000..166de78d1 Binary files /dev/null and b/mrp_work_order_print/static/description/assets/screenshots/wo.png differ diff --git a/mrp_work_order_print/static/description/banner.png b/mrp_work_order_print/static/description/banner.png new file mode 100644 index 000000000..8d5c3ea3f Binary files /dev/null and b/mrp_work_order_print/static/description/banner.png differ diff --git a/mrp_work_order_print/static/description/icon.png b/mrp_work_order_print/static/description/icon.png new file mode 100644 index 000000000..a5889694b Binary files /dev/null and b/mrp_work_order_print/static/description/icon.png differ diff --git a/mrp_work_order_print/static/description/index.html b/mrp_work_order_print/static/description/index.html new file mode 100644 index 000000000..143f9319d --- /dev/null +++ b/mrp_work_order_print/static/description/index.html @@ -0,0 +1,583 @@ + +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Print Work Order Details

+

+ A Module for generating PDF report of Work order +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Generate a PDF report with all necessary details of a Work Order. It can be used for the + internal purposes of the plant/work center.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Community & Enterprise Support

+

+ Available in Odoo 15.0 Community and Enterprise.

+
+
+
+
+ +
+
+

+ Work order print

+

+ Generate PDF Report of Work Order

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ Manufacturing Order

+

+ Manufacturing Order with Bill Of Materials

+ +
+ +
+

+ Work Order

+

+ Print Work Order Details +

+ +
+ +
+ + +
+
+

Suggested Products

+
+ + +
+
+ + + +
+
+
+

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+ +
+
+ + + + + +
+
+
+

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/mrp_work_order_print/views/report_work_order.xml b/mrp_work_order_print/views/report_work_order.xml new file mode 100644 index 000000000..a60c7968d --- /dev/null +++ b/mrp_work_order_print/views/report_work_order.xml @@ -0,0 +1,101 @@ + + + + + + + Production Order Cost + mrp.workorder + qweb-pdf + mrp_work_order_print.report_workorder + mrp_work_order_print.report_workorder + + report + + +