diff --git a/product_stock_details/README.rst b/product_stock_details/README.rst new file mode 100755 index 000000000..fb35c501b --- /dev/null +++ b/product_stock_details/README.rst @@ -0,0 +1,41 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Product Stock Details +======================= +This module is developed to list and print the product stock by location. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: VYSHNAV AR @cybrosys + +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 `__ + +Further information +=================== +HTML Description: ``__ diff --git a/product_stock_details/__init__.py b/product_stock_details/__init__.py new file mode 100644 index 000000000..699b8bc32 --- /dev/null +++ b/product_stock_details/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import models +from . import report diff --git a/product_stock_details/__manifest__.py b/product_stock_details/__manifest__.py new file mode 100644 index 000000000..4807d0b14 --- /dev/null +++ b/product_stock_details/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +{ + 'name': "Product Stock Details", + 'version': '16.0.1.0.0', + 'summary': """List And Print the Stock Details of Product""", + 'description': """This module has been developed for listing and printing product stock by location. + Get an overview of Available, Forecasted, Incoming and Outgoing quantity of product from the + product form. The user can print these details in a PDF report.""", + 'author': "Cybrosys Techno Solutions", + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'category': 'Inventory/Inventory', + 'depends': ['stock', 'account'], + 'data': [ + 'report/report.xml', + 'report/template.xml', + 'views/product_view.xml', + ], + 'license': 'LGPL-3', + 'images': ['static/description/banner.png'], + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/product_stock_details/doc/RELEASE_NOTES.md b/product_stock_details/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..9cad1c0a9 --- /dev/null +++ b/product_stock_details/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.03.2023 +#### Version 16.0.1.0.0 +##### ADD +- Initial Commit for Product Stock Details diff --git a/product_stock_details/models/__init__.py b/product_stock_details/models/__init__.py new file mode 100644 index 000000000..0bd1994cd --- /dev/null +++ b/product_stock_details/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import product +from . import stock_quant diff --git a/product_stock_details/models/product.py b/product_stock_details/models/product.py new file mode 100644 index 000000000..a1a8cd61a --- /dev/null +++ b/product_stock_details/models/product.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + product_stock_location_ids = fields.One2many('stock.quant', 'product_id') + + def get_wo_description(self): + """Method for print button""" + return self.env.ref( + 'product_stock_details.action_report_product_stock_details').report_action( + self, data='') diff --git a/product_stock_details/models/stock_quant.py b/product_stock_details/models/stock_quant.py new file mode 100755 index 000000000..3391d31e8 --- /dev/null +++ b/product_stock_details/models/stock_quant.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields + + +class ProductStockLocation(models.Model): + _inherit = "stock.quant" + + virtual_available = fields.Float('Forecasted Quantity', + compute="_compute_location_qty") + incoming_qty = fields.Float('Incoming', compute="_compute_location_qty") + outgoing_qty = fields.Float('Outgoing', compute="_compute_location_qty") + + def _compute_location_qty(self): + """Method to compute the quantity of incoming and outgoing stock.""" + for rec in self: + product = rec.product_id + rec.virtual_available = product.with_context( + {'location': rec.location_id.id}).virtual_available + rec.incoming_qty = product.with_context( + {'location': rec.location_id.id}).incoming_qty + rec.outgoing_qty = product.with_context( + {'location': rec.location_id.id}).outgoing_qty diff --git a/product_stock_details/report/__init__.py b/product_stock_details/report/__init__.py new file mode 100644 index 000000000..3ebc3d03f --- /dev/null +++ b/product_stock_details/report/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import report diff --git a/product_stock_details/report/report.py b/product_stock_details/report/report.py new file mode 100644 index 000000000..7881299e3 --- /dev/null +++ b/product_stock_details/report/report.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import api, models + + +class ProductStockDetails(models.AbstractModel): + _name = 'report.product_stock_details.report_product_stock_template' + + @api.model + def _get_report_values(self, docids, data): + """Method for getting report values.""" + docs = self.env.context.get('active_ids') + if docs is None: + docs = docids + return { + 'data': self.env['product.product'].search([('id', 'in', docs)]) + } diff --git a/product_stock_details/report/report.xml b/product_stock_details/report/report.xml new file mode 100644 index 000000000..2b9de21a8 --- /dev/null +++ b/product_stock_details/report/report.xml @@ -0,0 +1,10 @@ + + + + Stock Details + product.product + qweb-pdf + product_stock_details.report_product_stock_template + product_stock_details.report_product_stock_template + + \ No newline at end of file diff --git a/product_stock_details/report/template.xml b/product_stock_details/report/template.xml new file mode 100644 index 000000000..8ced7d5c6 --- /dev/null +++ b/product_stock_details/report/template.xml @@ -0,0 +1,118 @@ + + + + \ No newline at end of file diff --git a/product_stock_details/static/description/assets/icons/check.png b/product_stock_details/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_stock_details/static/description/assets/icons/check.png differ diff --git a/product_stock_details/static/description/assets/icons/chevron.png b/product_stock_details/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/chevron.png differ diff --git a/product_stock_details/static/description/assets/icons/cogs.png b/product_stock_details/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/cogs.png differ diff --git a/product_stock_details/static/description/assets/icons/consultation.png b/product_stock_details/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_stock_details/static/description/assets/icons/consultation.png differ diff --git a/product_stock_details/static/description/assets/icons/ecom-black.png b/product_stock_details/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/ecom-black.png differ diff --git a/product_stock_details/static/description/assets/icons/education-black.png b/product_stock_details/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_stock_details/static/description/assets/icons/education-black.png differ diff --git a/product_stock_details/static/description/assets/icons/hotel-black.png b/product_stock_details/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_stock_details/static/description/assets/icons/hotel-black.png differ diff --git a/product_stock_details/static/description/assets/icons/license.png b/product_stock_details/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_stock_details/static/description/assets/icons/license.png differ diff --git a/product_stock_details/static/description/assets/icons/lifebuoy.png b/product_stock_details/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_stock_details/static/description/assets/icons/lifebuoy.png differ diff --git a/product_stock_details/static/description/assets/icons/manufacturing-black.png b/product_stock_details/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_stock_details/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_stock_details/static/description/assets/icons/pos-black.png b/product_stock_details/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/pos-black.png differ diff --git a/product_stock_details/static/description/assets/icons/puzzle.png b/product_stock_details/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/puzzle.png differ diff --git a/product_stock_details/static/description/assets/icons/restaurant-black.png b/product_stock_details/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/restaurant-black.png differ diff --git a/product_stock_details/static/description/assets/icons/service-black.png b/product_stock_details/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_stock_details/static/description/assets/icons/service-black.png differ diff --git a/product_stock_details/static/description/assets/icons/trading-black.png b/product_stock_details/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_stock_details/static/description/assets/icons/trading-black.png differ diff --git a/product_stock_details/static/description/assets/icons/training.png b/product_stock_details/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_stock_details/static/description/assets/icons/training.png differ diff --git a/product_stock_details/static/description/assets/icons/update.png b/product_stock_details/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_stock_details/static/description/assets/icons/update.png differ diff --git a/product_stock_details/static/description/assets/icons/user.png b/product_stock_details/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_stock_details/static/description/assets/icons/user.png differ diff --git a/product_stock_details/static/description/assets/icons/wrench.png b/product_stock_details/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_stock_details/static/description/assets/icons/wrench.png differ diff --git a/product_stock_details/static/description/assets/misc/categories.png b/product_stock_details/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/categories.png differ diff --git a/product_stock_details/static/description/assets/misc/check-box.png b/product_stock_details/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/check-box.png differ diff --git a/product_stock_details/static/description/assets/misc/compass.png b/product_stock_details/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/product_stock_details/static/description/assets/misc/compass.png differ diff --git a/product_stock_details/static/description/assets/misc/corporate.png b/product_stock_details/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/product_stock_details/static/description/assets/misc/corporate.png differ diff --git a/product_stock_details/static/description/assets/misc/customer-support.png b/product_stock_details/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/product_stock_details/static/description/assets/misc/customer-support.png differ diff --git a/product_stock_details/static/description/assets/misc/cybrosys-logo.png b/product_stock_details/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/product_stock_details/static/description/assets/misc/cybrosys-logo.png differ diff --git a/product_stock_details/static/description/assets/misc/features.png b/product_stock_details/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/features.png differ diff --git a/product_stock_details/static/description/assets/misc/logo.png b/product_stock_details/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_stock_details/static/description/assets/misc/logo.png differ diff --git a/product_stock_details/static/description/assets/misc/pictures.png b/product_stock_details/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/pictures.png differ diff --git a/product_stock_details/static/description/assets/misc/pie-chart.png b/product_stock_details/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/pie-chart.png differ diff --git a/product_stock_details/static/description/assets/misc/right-arrow.png b/product_stock_details/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/right-arrow.png differ diff --git a/product_stock_details/static/description/assets/misc/star.png b/product_stock_details/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/product_stock_details/static/description/assets/misc/star.png differ diff --git a/product_stock_details/static/description/assets/misc/support.png b/product_stock_details/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/support.png differ diff --git a/product_stock_details/static/description/assets/misc/whatsapp.png b/product_stock_details/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_stock_details/static/description/assets/misc/whatsapp.png differ diff --git a/product_stock_details/static/description/assets/modules/1.png b/product_stock_details/static/description/assets/modules/1.png new file mode 100644 index 000000000..a000df6d7 Binary files /dev/null and b/product_stock_details/static/description/assets/modules/1.png differ diff --git a/product_stock_details/static/description/assets/modules/2.png b/product_stock_details/static/description/assets/modules/2.png new file mode 100644 index 000000000..b21837312 Binary files /dev/null and b/product_stock_details/static/description/assets/modules/2.png differ diff --git a/product_stock_details/static/description/assets/modules/3.png b/product_stock_details/static/description/assets/modules/3.png new file mode 100644 index 000000000..a9c4ec82c Binary files /dev/null and b/product_stock_details/static/description/assets/modules/3.png differ diff --git a/product_stock_details/static/description/assets/modules/4.png b/product_stock_details/static/description/assets/modules/4.png new file mode 100644 index 000000000..17ba4d75f Binary files /dev/null and b/product_stock_details/static/description/assets/modules/4.png differ diff --git a/product_stock_details/static/description/assets/modules/5.png b/product_stock_details/static/description/assets/modules/5.png new file mode 100644 index 000000000..a3194264c Binary files /dev/null and b/product_stock_details/static/description/assets/modules/5.png differ diff --git a/product_stock_details/static/description/assets/modules/6.png b/product_stock_details/static/description/assets/modules/6.png new file mode 100644 index 000000000..e64a5b55c Binary files /dev/null and b/product_stock_details/static/description/assets/modules/6.png differ diff --git a/product_stock_details/static/description/assets/screenshots/hero.gif b/product_stock_details/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..38781cf61 Binary files /dev/null and b/product_stock_details/static/description/assets/screenshots/hero.gif differ diff --git a/product_stock_details/static/description/assets/screenshots/ss_2.png b/product_stock_details/static/description/assets/screenshots/ss_2.png new file mode 100644 index 000000000..c0c8a3ec2 Binary files /dev/null and b/product_stock_details/static/description/assets/screenshots/ss_2.png differ diff --git a/product_stock_details/static/description/assets/screenshots/ss_3.png b/product_stock_details/static/description/assets/screenshots/ss_3.png new file mode 100644 index 000000000..33345ff1b Binary files /dev/null and b/product_stock_details/static/description/assets/screenshots/ss_3.png differ diff --git a/product_stock_details/static/description/assets/screenshots/ss_4.png b/product_stock_details/static/description/assets/screenshots/ss_4.png new file mode 100644 index 000000000..8c31cc097 Binary files /dev/null and b/product_stock_details/static/description/assets/screenshots/ss_4.png differ diff --git a/product_stock_details/static/description/banner.png b/product_stock_details/static/description/banner.png new file mode 100644 index 000000000..cee74e9c5 Binary files /dev/null and b/product_stock_details/static/description/banner.png differ diff --git a/product_stock_details/static/description/icon.png b/product_stock_details/static/description/icon.png new file mode 100644 index 000000000..2f4e2748e Binary files /dev/null and b/product_stock_details/static/description/icon.png differ diff --git a/product_stock_details/static/description/index.html b/product_stock_details/static/description/index.html new file mode 100644 index 000000000..0365aa08b --- /dev/null +++ b/product_stock_details/static/description/index.html @@ -0,0 +1,640 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Product Stock Details

+

+ List and print product stock by location in Odoo16

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module has been developed for listing and printing product stock by location. Get an overview of + Available, Forecasted, Incoming and Outgoing quantity of product from the product form. The user can + print these details in a PDF report. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & + Enterprise Support. +
+
+ + Get product quantity reviews for each stock location from the product form. +
+
+ + Print PDF report from product. +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Stock By Location +

+

+ Go to Product Variants > Inventory tab

+ +
+ +
+

+ Print PDF option

+

+ User can print the details.

+ +
+ +
+

+ PDF Report

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

+ Related + 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

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/product_stock_details/views/product_view.xml b/product_stock_details/views/product_view.xml new file mode 100644 index 000000000..dd014b5c6 --- /dev/null +++ b/product_stock_details/views/product_view.xml @@ -0,0 +1,27 @@ + + + + product.product.product_stock_details.view + + product.product + + + + +