diff --git a/products_to_transfer/README.rst b/products_to_transfer/README.rst new file mode 100644 index 000000000..da0ac5a5e --- /dev/null +++ b/products_to_transfer/README.rst @@ -0,0 +1,46 @@ +.. 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 + +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 configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Ammu Raj, Contacts: 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 `__ + +Further information +=================== +HTML Description: ``__ diff --git a/products_to_transfer/__init__.py b/products_to_transfer/__init__.py new file mode 100644 index 000000000..ccbb0a7d1 --- /dev/null +++ b/products_to_transfer/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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..e659fe422 --- /dev/null +++ b/products_to_transfer/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +{ + 'name': 'Add Multiple Products to Inventory Transfer', + 'version': '17.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.png'], + 'license': 'AGPL-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..a4c04d34e --- /dev/null +++ b/products_to_transfer/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 20.04.2024 +#### Version 17.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..99dc06df2 --- /dev/null +++ b/products_to_transfer/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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..411671e5b --- /dev/null +++ b/products_to_transfer/models/product_product.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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..a73a637e9 --- /dev/null +++ b/products_to_transfer/models/stock_picking.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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/capture (1).png b/products_to_transfer/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/capture (1).png differ 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/img.png b/products_to_transfer/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/img.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/photo-capture.png b/products_to_transfer/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/products_to_transfer/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/products_to_transfer/static/description/assets/misc/Cybrosys R.png differ diff --git a/products_to_transfer/static/description/assets/misc/email.svg b/products_to_transfer/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/phone.svg b/products_to_transfer/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/products_to_transfer/static/description/assets/misc/star (1) 2.svg b/products_to_transfer/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/support (1) 1.svg b/products_to_transfer/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/support-email.svg b/products_to_transfer/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/tick-mark.svg b/products_to_transfer/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/whatsapp 1.svg b/products_to_transfer/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/misc/whatsapp.svg b/products_to_transfer/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/products_to_transfer/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/products_to_transfer/static/description/assets/modules/1.png b/products_to_transfer/static/description/assets/modules/1.png new file mode 100644 index 000000000..60a64c999 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/1.png differ diff --git a/products_to_transfer/static/description/assets/modules/2.png b/products_to_transfer/static/description/assets/modules/2.png new file mode 100644 index 000000000..3ca41271f Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/2.png differ diff --git a/products_to_transfer/static/description/assets/modules/3.png b/products_to_transfer/static/description/assets/modules/3.png new file mode 100644 index 000000000..601ea32f5 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/3.png differ diff --git a/products_to_transfer/static/description/assets/modules/4.png b/products_to_transfer/static/description/assets/modules/4.png new file mode 100644 index 000000000..7ffaf0151 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/4.png differ diff --git a/products_to_transfer/static/description/assets/modules/5.png b/products_to_transfer/static/description/assets/modules/5.png new file mode 100644 index 000000000..937948a65 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/5.png differ diff --git a/products_to_transfer/static/description/assets/modules/6.png b/products_to_transfer/static/description/assets/modules/6.png new file mode 100644 index 000000000..1180ebcea Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/6.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..11d747bb1 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..a722e5718 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..cc53e3d73 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..a299ede65 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..ff13e79fd 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..0a75af06e 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..9b76f03fe 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..82831ca69 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..dc53e78ec 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.png b/products_to_transfer/static/description/banner.png new file mode 100644 index 000000000..215a6451b Binary files /dev/null and b/products_to_transfer/static/description/banner.png 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..2e97b1cd3 Binary files /dev/null and b/products_to_transfer/static/description/icon.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..fb7b1aeb8 --- /dev/null +++ b/products_to_transfer/static/description/index.html @@ -0,0 +1,605 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Add Multiple Products To Inventory Transfer

+

+ Add Multiple Products To Picking In Inventory. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Displays Recent Transfer History.

+

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

+
+
+
+
+
+
+ +
+
+

Provision to Add Product Details.

+

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

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

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

+ 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, which will add the product to the corresponding picking.

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+
    +
  • + Help Odoo users to change their Login Password and help admin to change users Login Password without Login into Odoo. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:18 April 2024 +
+

+ Initial Commit for Password Reset Manager

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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