diff --git a/multiple_product_selection/README.rst b/multiple_product_selection/README.rst new file mode 100644 index 000000000..18feeb4f3 --- /dev/null +++ b/multiple_product_selection/README.rst @@ -0,0 +1,47 @@ +.. 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 + +Multiple Product Selection +========================== +This module help you to select multiple products while creating a sale order or purchase order. +We can add the selected products in to the corresponding order line. + +Configuration +============= +No additional configurations needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V17) Dhanya B, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +License +------- +General Public License, Version 3 (LGPL v3). +(http://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +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/multiple_product_selection/__init__.py b/multiple_product_selection/__init__.py new file mode 100644 index 000000000..9e924f82e --- /dev/null +++ b/multiple_product_selection/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Dhanya B (odoo@cybrosys.com) +# +# 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 wizard diff --git a/multiple_product_selection/__manifest__.py b/multiple_product_selection/__manifest__.py new file mode 100644 index 000000000..c9bdc67e0 --- /dev/null +++ b/multiple_product_selection/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Dhanya B (odoo@cybrosys.com) +# +# 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': "Multiple Product Selection", + 'version': '17.0.1.0.0', + 'category': 'Purchases,Sales', + 'summary': 'Multiple product selection for creating sale and' + ' purchase order', + 'description': 'This module help you to select multiple products while ' + 'creating a sale order or purchase order.We can add the ' + 'selected products in to the corresponding order line.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['purchase', 'sale_management'], + 'data': [ + 'security/ir.model.access.csv', + 'wizard/multiple_product_views.xml', + 'views/sale_order_views.xml', + 'views/purchase_order_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/multiple_product_selection/doc/RELEASE_NOTES.md b/multiple_product_selection/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e6bb8375b --- /dev/null +++ b/multiple_product_selection/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 29.02.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Multiple Product Selection diff --git a/multiple_product_selection/security/ir.model.access.csv b/multiple_product_selection/security/ir.model.access.csv new file mode 100644 index 000000000..47b6fea67 --- /dev/null +++ b/multiple_product_selection/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_multiple_product,access.multiple.product,model_multiple_product,base.group_user,1,1,1,1 diff --git a/multiple_product_selection/static/description/assets/icons/check.png b/multiple_product_selection/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/check.png differ diff --git a/multiple_product_selection/static/description/assets/icons/chevron.png b/multiple_product_selection/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/chevron.png differ diff --git a/multiple_product_selection/static/description/assets/icons/cogs.png b/multiple_product_selection/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/cogs.png differ diff --git a/multiple_product_selection/static/description/assets/icons/consultation.png b/multiple_product_selection/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/consultation.png differ diff --git a/multiple_product_selection/static/description/assets/icons/ecom-black.png b/multiple_product_selection/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/ecom-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/education-black.png b/multiple_product_selection/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/education-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/hotel-black.png b/multiple_product_selection/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/hotel-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/license.png b/multiple_product_selection/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/license.png differ diff --git a/multiple_product_selection/static/description/assets/icons/lifebuoy.png b/multiple_product_selection/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/lifebuoy.png differ diff --git a/multiple_product_selection/static/description/assets/icons/manufacturing-black.png b/multiple_product_selection/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/manufacturing-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/pos-black.png b/multiple_product_selection/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/pos-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/puzzle.png b/multiple_product_selection/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/puzzle.png differ diff --git a/multiple_product_selection/static/description/assets/icons/restaurant-black.png b/multiple_product_selection/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/restaurant-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/service-black.png b/multiple_product_selection/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/service-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/trading-black.png b/multiple_product_selection/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/trading-black.png differ diff --git a/multiple_product_selection/static/description/assets/icons/training.png b/multiple_product_selection/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/training.png differ diff --git a/multiple_product_selection/static/description/assets/icons/update.png b/multiple_product_selection/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/update.png differ diff --git a/multiple_product_selection/static/description/assets/icons/user.png b/multiple_product_selection/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/user.png differ diff --git a/multiple_product_selection/static/description/assets/icons/wrench.png b/multiple_product_selection/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/multiple_product_selection/static/description/assets/icons/wrench.png differ diff --git a/multiple_product_selection/static/description/assets/misc/Cybrosys R.png b/multiple_product_selection/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/Cybrosys R.png differ diff --git a/multiple_product_selection/static/description/assets/misc/categories.png b/multiple_product_selection/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/categories.png differ diff --git a/multiple_product_selection/static/description/assets/misc/check-box.png b/multiple_product_selection/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/check-box.png differ diff --git a/multiple_product_selection/static/description/assets/misc/compass.png b/multiple_product_selection/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/compass.png differ diff --git a/multiple_product_selection/static/description/assets/misc/corporate.png b/multiple_product_selection/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/corporate.png differ diff --git a/multiple_product_selection/static/description/assets/misc/customer-support.png b/multiple_product_selection/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/customer-support.png differ diff --git a/multiple_product_selection/static/description/assets/misc/cybrosys-logo.png b/multiple_product_selection/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/cybrosys-logo.png differ diff --git a/multiple_product_selection/static/description/assets/misc/features.png b/multiple_product_selection/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/features.png differ diff --git a/multiple_product_selection/static/description/assets/misc/logo.png b/multiple_product_selection/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/logo.png differ diff --git a/multiple_product_selection/static/description/assets/misc/pictures.png b/multiple_product_selection/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/pictures.png differ diff --git a/multiple_product_selection/static/description/assets/misc/pie-chart.png b/multiple_product_selection/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/pie-chart.png differ diff --git a/multiple_product_selection/static/description/assets/misc/right-arrow.png b/multiple_product_selection/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/right-arrow.png differ diff --git a/multiple_product_selection/static/description/assets/misc/star.png b/multiple_product_selection/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/star.png differ diff --git a/multiple_product_selection/static/description/assets/misc/support.png b/multiple_product_selection/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/support.png differ diff --git a/multiple_product_selection/static/description/assets/misc/whatsapp.png b/multiple_product_selection/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/multiple_product_selection/static/description/assets/misc/whatsapp.png differ diff --git a/multiple_product_selection/static/description/assets/modules/1.png b/multiple_product_selection/static/description/assets/modules/1.png new file mode 100644 index 000000000..2cd293552 Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/1.png differ diff --git a/multiple_product_selection/static/description/assets/modules/2.jpg b/multiple_product_selection/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/2.jpg differ diff --git a/multiple_product_selection/static/description/assets/modules/3.png b/multiple_product_selection/static/description/assets/modules/3.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/3.png differ diff --git a/multiple_product_selection/static/description/assets/modules/4.png b/multiple_product_selection/static/description/assets/modules/4.png new file mode 100644 index 000000000..eba886e6a Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/4.png differ diff --git a/multiple_product_selection/static/description/assets/modules/6.jpg b/multiple_product_selection/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..7c7ff14be Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/6.jpg differ diff --git a/multiple_product_selection/static/description/assets/modules/banner.jpg b/multiple_product_selection/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/banner.jpg differ diff --git a/multiple_product_selection/static/description/assets/modules/banner.png b/multiple_product_selection/static/description/assets/modules/banner.png new file mode 100644 index 000000000..69d47fc7d Binary files /dev/null and b/multiple_product_selection/static/description/assets/modules/banner.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/hero.gif b/multiple_product_selection/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..cc2e0e0cd Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/hero.gif differ diff --git a/multiple_product_selection/static/description/assets/screenshots/kk.png b/multiple_product_selection/static/description/assets/screenshots/kk.png new file mode 100644 index 000000000..056692abe Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/kk.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/lll.png b/multiple_product_selection/static/description/assets/screenshots/lll.png new file mode 100644 index 000000000..9957bca76 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/lll.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/mm.png b/multiple_product_selection/static/description/assets/screenshots/mm.png new file mode 100644 index 000000000..69f55fbde Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/mm.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple-10.png b/multiple_product_selection/static/description/assets/screenshots/multiple-10.png new file mode 100644 index 000000000..32eb90e38 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple-10.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple-11.png b/multiple_product_selection/static/description/assets/screenshots/multiple-11.png new file mode 100644 index 000000000..bff3405e1 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple-11.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple-9.png b/multiple_product_selection/static/description/assets/screenshots/multiple-9.png new file mode 100644 index 000000000..927178fb4 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple-9.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple2.png b/multiple_product_selection/static/description/assets/screenshots/multiple2.png new file mode 100644 index 000000000..80c5f2058 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple2.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple3.png b/multiple_product_selection/static/description/assets/screenshots/multiple3.png new file mode 100644 index 000000000..1bcd1a2eb Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple3.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple4.png b/multiple_product_selection/static/description/assets/screenshots/multiple4.png new file mode 100644 index 000000000..2ccea1c40 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple4.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiple5.png b/multiple_product_selection/static/description/assets/screenshots/multiple5.png new file mode 100644 index 000000000..b1aea1cc4 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiple5.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiplepo-12.png b/multiple_product_selection/static/description/assets/screenshots/multiplepo-12.png new file mode 100644 index 000000000..d431cbe31 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiplepo-12.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiplepo-7.png b/multiple_product_selection/static/description/assets/screenshots/multiplepo-7.png new file mode 100644 index 000000000..9bdbec79b Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiplepo-7.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multiplepo-8.png b/multiple_product_selection/static/description/assets/screenshots/multiplepo-8.png new file mode 100644 index 000000000..6a7b959fc Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multiplepo-8.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multipleso-14.png b/multiple_product_selection/static/description/assets/screenshots/multipleso-14.png new file mode 100644 index 000000000..8291b2e58 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multipleso-14.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/multplepo6.png b/multiple_product_selection/static/description/assets/screenshots/multplepo6.png new file mode 100644 index 000000000..fba36fcee Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/multplepo6.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/nnn.png b/multiple_product_selection/static/description/assets/screenshots/nnn.png new file mode 100644 index 000000000..b321c449b Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/nnn.png differ diff --git a/multiple_product_selection/static/description/assets/screenshots/selection.png b/multiple_product_selection/static/description/assets/screenshots/selection.png new file mode 100644 index 000000000..419a9f423 Binary files /dev/null and b/multiple_product_selection/static/description/assets/screenshots/selection.png differ diff --git a/multiple_product_selection/static/description/banner.jpg b/multiple_product_selection/static/description/banner.jpg new file mode 100644 index 000000000..f76ea9f43 Binary files /dev/null and b/multiple_product_selection/static/description/banner.jpg differ diff --git a/multiple_product_selection/static/description/icon.png b/multiple_product_selection/static/description/icon.png new file mode 100644 index 000000000..b59d8636a Binary files /dev/null and b/multiple_product_selection/static/description/icon.png differ diff --git a/multiple_product_selection/static/description/index.html b/multiple_product_selection/static/description/index.html new file mode 100755 index 000000000..def5ca249 --- /dev/null +++ b/multiple_product_selection/static/description/index.html @@ -0,0 +1,885 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Multiple Product Selection

+

+ Multiple products can be selected for creating sales and purchase order. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

Can Select Multiple Products in Sale + Order.

+
+
+
+
+
+
+ +
+
+

Can Select Multiple Products in Purchase + Order. +

+
+
+
+
+
+
+ +
+
+

Available in Odoo 17.0 + Community, Odoo.sh and Enterprise. +

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

+ While we open a + sale order we can see the button 'Product List' near to order line. Click on the + button. +

+
+
+
+
+
+
+ +
+
+

+ When we click on the + 'Product List' we can see a wizard is opened. From the wizard click on the 'Add a + line' button.

+
+
+
+
+
+
+ +
+
+

+ From the wizard we can + select multiple products that we needed to add to the sale order line. Click on the + 'Select' button +

+
+
+
+
+
+
+ + +
+
+

+ We can see all the + selected product. After confirming the list click on the 'Add to Line' button.

+
+
+
+
+
+
+ +
+
+

+ We can see all the + selected products in the sale order line. When we select a product that is present + in the order line, + then the quantity of that product is increased by 1

+
+
+
+
+
+
+ +
+
+

+ While we open a + purchase order we can see the button 'Product List' near to order line. Click on the + button.

+
+
+
+
+
+
+ +
+
+

+ When we click on the + 'Product List' we can see a wizard is opened. From the wizard click on the 'Add a + line' button. +

+
+
+
+
+
+
+ +
+
+

+ From the wizard we can + select multiple products that we needed to add to the purchase order line. Click on + the 'Select' + button. +

+
+
+
+
+
+
+ +
+
+

+ In purchase order,We can see all the + selected product. After confirming the list click on the 'Add to Line' button + .

+
+
+
+ +
+
+
+ +
+
+

+ We can see all the + selected products are added to the purchase order line. When we select a product + that is present in the + order line, then the quantity of that product is increased by 1 +

+
+
+
+
+
+
+ +
+
+

+ Added one more quantity of product + +

+
+
+
+ +
+
+
+ +
+
+

+ Added one more quantity .

+
+
+
+
+
+
+
    +
  • + Community & Enterprise Support +
  • +
  • + Can Select Multiple Products while creating a sale order + or purchase order. +
  • +
  • + We can add the selected products in to the + corresponding order line. +
  • +
+
+
+
+
+
+
Version 17.0.1.0.0|Released on:15th January 2024 +
+

+ + Initial Commit for Hide Create|Delete|Archive|Export Options - Model Wise.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+ + + + + + diff --git a/multiple_product_selection/views/purchase_order_views.xml b/multiple_product_selection/views/purchase_order_views.xml new file mode 100644 index 000000000..8701051cc --- /dev/null +++ b/multiple_product_selection/views/purchase_order_views.xml @@ -0,0 +1,16 @@ + + + + + purchase.order.view.form.inherit.multiple.product.selection + + purchase.order + + +