diff --git a/products_to_transfer/README.rst b/products_to_transfer/README.rst new file mode 100644 index 000000000..013b07c4f --- /dev/null +++ b/products_to_transfer/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-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 +------- +* Developer:(V15)- Jumana Jabin MP ,Contact: odoo@cybrosys.com + +Contact us +-------- +* 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..f0039d8c0 --- /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': '15.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..d1ffd78f0 --- /dev/null +++ b/products_to_transfer/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 18.08.2023 +#### Version 15.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..fa59d6f8d --- /dev/null +++ b/products_to_transfer/models/product_product.py @@ -0,0 +1,72 @@ +# -*- 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, _ +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')) + move_vals = { + '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, + } + 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': [(0, 0, move_vals)], + }) + + 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..750147517 --- /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..5a8d9dd73 --- /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,access.transfer.products.details,model_transfer_products_details,base.group_user,1,1,1,1 +access_product_transfer_history,access.product.transfer.history,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/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/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/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/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/company.png b/products_to_transfer/static/description/assets/modules/company.png new file mode 100644 index 000000000..65a3645b0 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/company.png differ diff --git a/products_to_transfer/static/description/assets/modules/dashboard.png b/products_to_transfer/static/description/assets/modules/dashboard.png new file mode 100644 index 000000000..f1a1c82cd Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/dashboard.png differ diff --git a/products_to_transfer/static/description/assets/modules/export_image.png b/products_to_transfer/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/export_image.png differ diff --git a/products_to_transfer/static/description/assets/modules/invoice.png b/products_to_transfer/static/description/assets/modules/invoice.png new file mode 100644 index 000000000..5ea3578dd Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/invoice.png differ diff --git a/products_to_transfer/static/description/assets/modules/publish.png b/products_to_transfer/static/description/assets/modules/publish.png new file mode 100644 index 000000000..bf93d4f80 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/publish.png differ diff --git a/products_to_transfer/static/description/assets/modules/quotation_image.png b/products_to_transfer/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/quotation_image.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/add-form.png b/products_to_transfer/static/description/assets/screenshots/add-form.png new file mode 100644 index 000000000..832f0f883 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/add-form.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/add-kanban.png b/products_to_transfer/static/description/assets/screenshots/add-kanban.png new file mode 100644 index 000000000..ab6e583e0 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/add-kanban.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/add-list.png b/products_to_transfer/static/description/assets/screenshots/add-list.png new file mode 100644 index 000000000..bb5e2ad7e Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/add-list.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/add-products-button.png b/products_to_transfer/static/description/assets/screenshots/add-products-button.png new file mode 100644 index 000000000..0306a0885 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/add-products-button.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..6b0484123 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/hero.gif differ diff --git a/products_to_transfer/static/description/assets/screenshots/history-wizard.png b/products_to_transfer/static/description/assets/screenshots/history-wizard.png new file mode 100644 index 000000000..b81c39d40 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/history-wizard.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/update-form.png b/products_to_transfer/static/description/assets/screenshots/update-form.png new file mode 100644 index 000000000..132ee3dbb Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/update-form.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/update-kanban.png b/products_to_transfer/static/description/assets/screenshots/update-kanban.png new file mode 100644 index 000000000..7cf14c6a9 Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/update-kanban.png differ diff --git a/products_to_transfer/static/description/assets/screenshots/update-list.png b/products_to_transfer/static/description/assets/screenshots/update-list.png new file mode 100644 index 000000000..35fe06bee Binary files /dev/null and b/products_to_transfer/static/description/assets/screenshots/update-list.png 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..5dd504562 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..5bfb046bb 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..b9ff6a35f --- /dev/null +++ b/products_to_transfer/static/description/index.html @@ -0,0 +1,815 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+ +

+ Add Multiple Products To Inventory Transfer +

+

+ This module lets you include Multiple Products in the + related Inventory Transfer. +

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

+ Explore This Module

+
+ + + + + + +
+
+

+ Overview +

+
+ +
+

+ Add Multiple Products to Inventory Transfer module provides + an + easy way to add multiple products to the + corresponding inventory transfer. Also ,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 + picking. +

+ +
+ +
+

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

+ +
+ +
+ + +
+
+

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

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need + help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on + WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ 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..678da9de1 --- /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 + + + +