diff --git a/products_to_transfer/README.rst b/products_to_transfer/README.rst new file mode 100644 index 000000000..f259793ac --- /dev/null +++ b/products_to_transfer/README.rst @@ -0,0 +1,38 @@ +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.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Mehjabin Farsana @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@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 +========== +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..598e01529 --- /dev/null +++ b/products_to_transfer/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +from . import models +from . import wizards + diff --git a/products_to_transfer/__manifest__.py b/products_to_transfer/__manifest__.py new file mode 100644 index 000000000..64ae16be2 --- /dev/null +++ b/products_to_transfer/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +{ + 'name': 'Add Multiple Products to Inventory Transfer', + 'version': '14.0.1.0.0', + '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""", + 'category': 'Stock', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['base', 'stock'], + 'website': 'https://www.cybrosys.com', + 'data': [ + 'security/ir.model.access.csv', + 'wizards/wizard.xml', + 'views/stock_picking_view.xml', + 'views/product_view.xml', + ], + 'images': ['static/description/banner.png'], + '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..4916efdfc --- /dev/null +++ b/products_to_transfer/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 06.08.2021 +#### Version 14.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..a006c792f --- /dev/null +++ b/products_to_transfer/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +from . import stock_picking +from . import product diff --git a/products_to_transfer/models/product.py b/products_to_transfer/models/product.py new file mode 100644 index 000000000..2720ef6a3 --- /dev/null +++ b/products_to_transfer/models/product.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +from odoo import models + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + def action_add_to_picking(self): + active_id = self._context.get('active_id') + picking_id = self.env['stock.picking'].browse(active_id) + picking_id.write({ + 'move_ids_without_package': [(0, 0, { + '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): + active_id = self._context.get('active_id') + picking_id = self.env['stock.picking'].browse(active_id) + res = { + 'name': 'Product Details', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'transfer.products.details.wizard', + 'type': 'ir.actions.act_window', + 'target': 'new', + 'context': { + 'picking_id': picking_id.id, + 'default_product_id': self.name, + } + } + return res diff --git a/products_to_transfer/models/stock_picking.py b/products_to_transfer/models/stock_picking.py new file mode 100644 index 000000000..1664a1528 --- /dev/null +++ b/products_to_transfer/models/stock_picking.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies(). +# Author: Mehjabin Farsana (Contact : odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +from odoo import models + + +class StockPicking(models.Model): + _inherit = 'stock.picking' + + def action_view_products(self): + return { + 'name': 'View Products', + 'view_type': 'form', + 'view_mode': 'kanban,tree,form', + 'res_model': 'product.product', + 'type': 'ir.actions.act_window', + } 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..8074cbc50 --- /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_wizard,access.transfer.products.details.wizard,model_transfer_products_details_wizard,,1,1,1,1 +access_product_transfer_history,access.product.transfer.history,model_product_transfer_history,,1,1,1,1 \ No newline at end of file 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/logo.png b/products_to_transfer/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/products_to_transfer/static/description/assets/icons/logo.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/modules/approval_image.png b/products_to_transfer/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/approval_image.png differ diff --git a/products_to_transfer/static/description/assets/modules/budget_image.png b/products_to_transfer/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/budget_image.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..4e4ea0e51 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/magento_image.png b/products_to_transfer/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/magento_image.png differ diff --git a/products_to_transfer/static/description/assets/modules/pos_image.png b/products_to_transfer/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/pos_image.png differ diff --git a/products_to_transfer/static/description/assets/modules/shopify_image.png b/products_to_transfer/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/products_to_transfer/static/description/assets/modules/shopify_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..fb5ac2f81 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..60f71ff97 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..a9552ac57 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..eb64fcf95 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..4b7318824 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..5a1e9eaee 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..75e9719e2 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..8f42a7e52 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..a0758a829 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.png b/products_to_transfer/static/description/banner.png new file mode 100644 index 000000000..4cad67bd8 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..fa5b91400 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..791fa77d3 --- /dev/null +++ b/products_to_transfer/static/description/index.html @@ -0,0 +1,691 @@ +
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+ +
+
+
+

+ 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 products 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 transfered 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 Prouct 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/products_to_transfer/views/product_view.xml b/products_to_transfer/views/product_view.xml new file mode 100644 index 000000000..6d3763ce2 --- /dev/null +++ b/products_to_transfer/views/product_view.xml @@ -0,0 +1,50 @@ + + + + + + add.products.picking.tree.view.inherit + product.product + + + +