diff --git a/products_to_transfer/README.rst b/products_to_transfer/README.rst new file mode 100644 index 000000000..1c7d3f5df --- /dev/null +++ b/products_to_transfer/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Add Multiple Products to Inventory Transfer +=========================================== +Easily add multiple products to a picking directly from the product list view with this new features. + +Configuration +============= +No additional configuration is needed to use this module. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers:(V16)- Jumana Jabin MP , 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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/products_to_transfer/__init__.py b/products_to_transfer/__init__.py new file mode 100644 index 000000000..6566fee9f --- /dev/null +++ b/products_to_transfer/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# 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 wizard diff --git a/products_to_transfer/__manifest__.py b/products_to_transfer/__manifest__.py new file mode 100644 index 000000000..2d23cda04 --- /dev/null +++ b/products_to_transfer/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# 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': 'Add Multiple Products to Inventory Transfer', + 'version': '16.0.1.0.0', + 'category': 'Warehouse', + 'summary': 'Easily add multiple products to a picking directly from the' + ' product list view with this new feature', + 'description': """This module allow you to add multiple products to the + corresponding inventory transfer. You can see all products in kanban,list + and form view.You can also view the recent transfer history of the + selected product along with the option to update the quantity, Inventory, + Add Multiple Products""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['stock'], + 'data': [ + 'security/ir.model.access.csv', + 'views/stock_picking_views.xml', + 'views/product_product_views.xml', + 'wizard/transfer_products_details_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/products_to_transfer/doc/RELEASE_NOTES.md b/products_to_transfer/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ed8c51dea --- /dev/null +++ b/products_to_transfer/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 01.11.2023 +#### Version 16.0.1.0.0 +##### ADD +- Initial commit for Add Multiple Products to Inventory Transfer diff --git a/products_to_transfer/models/__init__.py b/products_to_transfer/models/__init__.py new file mode 100644 index 000000000..8f980f402 --- /dev/null +++ b/products_to_transfer/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# 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_product +from . import stock_picking diff --git a/products_to_transfer/models/product_product.py b/products_to_transfer/models/product_product.py new file mode 100644 index 000000000..f8fd8f04d --- /dev/null +++ b/products_to_transfer/models/product_product.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# 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 Command, models, _ +from odoo.exceptions import ValidationError + + +class ProductProduct(models.Model): + """This class extends the 'product.product' model to enhance its + functionality. It adds features for adding the current product to a + stock picking and viewing product details in transfer.products.details + model.""" + _inherit = 'product.product' + + def action_add_to_picking(self): + """Add the current product to the stock picking.""" + self.ensure_one() + if not self._context.get('active_id'): + raise ValidationError( + _("There are no current stock picks available. Unable to add " + "product.")) + picking_id = self.env['stock.picking'].browse( + self._context.get('active_id')) + existing_move = picking_id.move_ids_without_package.filtered( + lambda move: move.product_id == self) + if existing_move: + existing_move[0].product_uom_qty += 1 + else: + picking_id.write({ + 'move_ids_without_package': [Command.create( + {'name': self.name, + 'product_id': self.id, + 'product_uom': self.uom_id.id, + 'product_uom_qty': 1, + 'location_id': picking_id.location_id.id, + 'location_dest_id': picking_id.location_dest_id.id, })], + }) + + def action_view_details(self): + """Open a new window to display product details.""" + return { + 'name': 'Product Details', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'transfer.products.details', + 'type': 'ir.actions.act_window', + 'target': 'new', + 'context': { + 'picking_id': self.env['stock.picking'].browse( + self._context.get('active_id')).id, + 'default_product': self.name, + } + } diff --git a/products_to_transfer/models/stock_picking.py b/products_to_transfer/models/stock_picking.py new file mode 100644 index 000000000..d85742613 --- /dev/null +++ b/products_to_transfer/models/stock_picking.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP() +# +# 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 + + +class StockPicking(models.Model): + """This class extends the base 'stock.picking' model to provide enhanced + functionality. It introduces a function to open a new window for viewing + products associated with a picking""" + _inherit = 'stock.picking' + + def action_view_products(self): + """Open a new window to view products.""" + return { + 'name': 'View Products', + 'view_type': 'form', + 'view_mode': 'kanban,tree,form', + 'res_model': 'product.product', + 'type': 'ir.actions.act_window', + 'domain': [('type', 'in', ['product', 'consu'])], + } diff --git a/products_to_transfer/security/ir.model.access.csv b/products_to_transfer/security/ir.model.access.csv new file mode 100644 index 000000000..7d2614a7c --- /dev/null +++ b/products_to_transfer/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_transfer_products_details_user,access.transfer.products.details.user,model_transfer_products_details,base.group_user,1,1,1,1 +access_product_transfer_history_user,access.product.transfer.history.user,model_product_transfer_history,base.group_user,1,1,1,1 diff --git a/products_to_transfer/static/description/assets/icons/check.png b/products_to_transfer/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/check.png differ diff --git a/products_to_transfer/static/description/assets/icons/chevron.png b/products_to_transfer/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/chevron.png differ diff --git a/products_to_transfer/static/description/assets/icons/cogs.png b/products_to_transfer/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/cogs.png differ diff --git a/products_to_transfer/static/description/assets/icons/consultation.png b/products_to_transfer/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/consultation.png differ diff --git a/products_to_transfer/static/description/assets/icons/ecom-black.png b/products_to_transfer/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/ecom-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/education-black.png b/products_to_transfer/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/education-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/hotel-black.png b/products_to_transfer/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/hotel-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/license.png b/products_to_transfer/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/license.png differ diff --git a/products_to_transfer/static/description/assets/icons/lifebuoy.png b/products_to_transfer/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/lifebuoy.png differ diff --git a/products_to_transfer/static/description/assets/icons/manufacturing-black.png b/products_to_transfer/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/manufacturing-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/pos-black.png b/products_to_transfer/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/pos-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/puzzle.png b/products_to_transfer/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/puzzle.png differ diff --git a/products_to_transfer/static/description/assets/icons/restaurant-black.png b/products_to_transfer/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/restaurant-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/service-black.png b/products_to_transfer/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/service-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/trading-black.png b/products_to_transfer/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/trading-black.png differ diff --git a/products_to_transfer/static/description/assets/icons/training.png b/products_to_transfer/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/training.png differ diff --git a/products_to_transfer/static/description/assets/icons/update.png b/products_to_transfer/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/update.png differ diff --git a/products_to_transfer/static/description/assets/icons/user.png b/products_to_transfer/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/user.png differ diff --git a/products_to_transfer/static/description/assets/icons/wrench.png b/products_to_transfer/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/wrench.png differ diff --git a/products_to_transfer/static/description/assets/misc/categories.png b/products_to_transfer/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/categories.png differ diff --git a/products_to_transfer/static/description/assets/misc/check-box.png b/products_to_transfer/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/check-box.png differ diff --git a/products_to_transfer/static/description/assets/misc/compass.png b/products_to_transfer/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/compass.png differ diff --git a/products_to_transfer/static/description/assets/misc/corporate.png b/products_to_transfer/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/corporate.png differ diff --git a/products_to_transfer/static/description/assets/misc/customer-support.png b/products_to_transfer/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/customer-support.png differ diff --git a/products_to_transfer/static/description/assets/misc/cybrosys-logo.png b/products_to_transfer/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/cybrosys-logo.png differ diff --git a/products_to_transfer/static/description/assets/misc/features.png b/products_to_transfer/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/features.png differ diff --git a/products_to_transfer/static/description/assets/misc/logo.png b/products_to_transfer/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/logo.png differ diff --git a/products_to_transfer/static/description/assets/misc/pictures.png b/products_to_transfer/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/pictures.png differ diff --git a/products_to_transfer/static/description/assets/misc/pie-chart.png b/products_to_transfer/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/pie-chart.png differ diff --git a/products_to_transfer/static/description/assets/misc/right-arrow.png b/products_to_transfer/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/right-arrow.png differ diff --git a/products_to_transfer/static/description/assets/misc/star.png b/products_to_transfer/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/star.png differ diff --git a/products_to_transfer/static/description/assets/misc/support.png b/products_to_transfer/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/support.png differ diff --git a/products_to_transfer/static/description/assets/misc/whatsapp.png b/products_to_transfer/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/whatsapp.png differ diff --git a/products_to_transfer/static/description/assets/modules/barcode.png b/products_to_transfer/static/description/assets/modules/barcode.png new file mode 100644 index 000000000..a29119785 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/barcode.png differ diff --git a/products_to_transfer/static/description/assets/modules/brand.png b/products_to_transfer/static/description/assets/modules/brand.png new file mode 100644 index 000000000..e281bd660 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/brand.png differ diff --git a/products_to_transfer/static/description/assets/modules/done.png b/products_to_transfer/static/description/assets/modules/done.png new file mode 100644 index 000000000..cb98ebbd1 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/done.png differ diff --git a/products_to_transfer/static/description/assets/modules/move.png b/products_to_transfer/static/description/assets/modules/move.png new file mode 100644 index 000000000..216c130e0 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/move.png differ diff --git a/products_to_transfer/static/description/assets/modules/stock.png b/products_to_transfer/static/description/assets/modules/stock.png new file mode 100644 index 000000000..956a7e9c7 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/stock.png differ diff --git a/products_to_transfer/static/description/assets/modules/xlsx.png b/products_to_transfer/static/description/assets/modules/xlsx.png new file mode 100644 index 000000000..359d3e4d6 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/xlsx.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/1.png b/products_to_transfer/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..183f50422 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/1.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/2.png b/products_to_transfer/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..06cd6af64 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/2.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/3.png b/products_to_transfer/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..da2c6c2ef Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/3.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/4.png b/products_to_transfer/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..2e9e5041a Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/4.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/5.png b/products_to_transfer/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..aaed5f6dd Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/5.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/6.png b/products_to_transfer/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..482a4ab0b Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/6.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/7.png b/products_to_transfer/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..4294ef7f6 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/7.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/8.png b/products_to_transfer/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..11121a9d0 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/8.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/hero.gif b/products_to_transfer/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..a72c6d7a2 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/hero.gif differ diff --git a/products_to_transfer/static/description/banner.jpg b/products_to_transfer/static/description/banner.jpg new file mode 100644 index 000000000..199aff575 Binary files /dev/null and b/products_to_transfer/static/description/banner.jpg differ diff --git a/products_to_transfer/static/description/icon.png b/products_to_transfer/static/description/icon.png new file mode 100644 index 000000000..bc245e9a6 Binary files /dev/null and b/products_to_transfer/static/description/icon.png differ diff --git a/products_to_transfer/static/description/images/logo.png b/products_to_transfer/static/description/images/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/products_to_transfer/static/description/images/logo.png differ diff --git a/products_to_transfer/static/description/index.html b/products_to_transfer/static/description/index.html new file mode 100644 index 000000000..f3964ea8e --- /dev/null +++ b/products_to_transfer/static/description/index.html @@ -0,0 +1,840 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+

+ Add Multiple Products To Inventory Transfer

+

+ Add Multiple Products To Picking In Inventory +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Add Multiple Products to Inventory Transfer module provides + an + easy way to add Multiple Products to the + corresponding Inventory Transfer. Moreover, You can see all + the + products in list, kanban and also in the + form view. Furthermore, You can see the Recent Transfer + History + of the selected product.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Smart Button in Stock Picking Form View to Select + Products.

+

+ A definite smart button in the form view of the stock + picking operation helps you to select multiple + products to be directly added to the transfer.

+
+
+ +
+
+ +
+
+

+ Displays Products in Multiple Views.

+

+ Displays every product which have been defined in your + platform in kanban, list and form view.

+
+
+ +
+
+ +
+
+

+ Displays Recent Transfer History.

+

+ Displays recent transfer history of the selected + product + in + the wizard window.

+
+
+
+
+ +
+
+

+ Option to Filter Out the Transfer History.

+

+ Option to view recent transfer history based on the + date + selected.

+
+
+ +
+
+ +
+
+

+ Provision to Add Product Details.

+

+ Provision to add product details such as quantity of + the + product to be transferred from the selected + product wizard.

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Smart Button in Inventory Transfer Form View

+

+ Smart button in stock picking form view to select multiple + products directly to the transfer operation. + Moreover, the button will be visible only for transfers in + the + Draft state.

+ +
+ +
+

+ Display Products in Kanban View

+

+ Add to Transfer button in the Kanban view where the + selected + products will be added to the corresponding + Transfer. +

+ +
+ +
+

+ Display Products in List View

+

+ Display products in the list view and also the Add to + Transfer + button in the view. Selected products + will be added to the corresponding picking. +

+ +
+ + +
+

+ Add to Transfer Button in The Product Form View

+

+ ADD TO TRANSFER button in the product form view, which will + add + the product to the corresponding + picking. +

+ +
+ + +
+

+ Update Quantity Button in The Products Kanban View

+

+ Option to view recent transfer history of the selected + product + by clicking on the Update Quantity button + in the kanban view. +

+ +
+ + +
+

+ Update Quantity Button in The Products List View

+

+ The Update Quantity button in the list view will depict you + with + the transfer history of the selected + products. +

+ +
+ + +
+

+ Update Quantity Button in The Products Form View

+

+ Option to view recent transfer history of the selected + product + by clicking on the UPDATE QUANTITY button + in the form view. +

+ +
+ + +
+

+ Product Recent Transfer History Wizard

+

+ Option to view recent transfer history of the selected + products + along with the ADD TO TRANSFER button. + Additionally, a definite option to update the product + quantity + and view the transfer history based on + the date selected. +

+ +
+ +
+ + +
+
+ +
+

+ 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/products_to_transfer/views/product_product_views.xml b/products_to_transfer/views/product_product_views.xml new file mode 100644 index 000000000..d640bde32 --- /dev/null +++ b/products_to_transfer/views/product_product_views.xml @@ -0,0 +1,58 @@ + + + + + + product.product.view.tree.inherit.products.to.transfer + + product.product + + + +