diff --git a/purchase_multi_picking/README.rst b/purchase_multi_picking/README.rst new file mode 100755 index 000000000..bcffab497 --- /dev/null +++ b/purchase_multi_picking/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 + +Purchase Multi Picking +======================= +This module helps to create multiple picking for product based on he delivery to given for each product + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Configuration +============= +No additional configuration required + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: Sreeshanth V S @cybrosys, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if +your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/purchase_multi_picking/__init__.py b/purchase_multi_picking/__init__.py new file mode 100755 index 000000000..7b2c59c1c --- /dev/null +++ b/purchase_multi_picking/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 diff --git a/purchase_multi_picking/__manifest__.py b/purchase_multi_picking/__manifest__.py new file mode 100755 index 000000000..1380b90d1 --- /dev/null +++ b/purchase_multi_picking/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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": "Purchase Multi Picking", + "version": "16.0.1.0.0", + "category": "Warehouse", + "summary": """Create multiple picking for product based on the delivery to + given for each product""", + "description": """User can able to add multiple operation type for each + product in the purchase order line then multiple transfer will create + based on the delivery to given in the order line""", + "author": "Cybrosys Techno solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "depends": ["stock", "product", "purchase", "purchase_stock"], + "data": ["views/purchase_views.xml", "report/purchase_order_template.xml"], + "images": ["static/description/banner.png"], + "license": "LGPL-3", + "installable": True, + "auto_install": False, + "application": False, +} diff --git a/purchase_multi_picking/doc/RELEASE_NOTES.md b/purchase_multi_picking/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..f8034e259 --- /dev/null +++ b/purchase_multi_picking/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.11.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Purchase Multi Picking diff --git a/purchase_multi_picking/models/__init__.py b/purchase_multi_picking/models/__init__.py new file mode 100755 index 000000000..430fb0791 --- /dev/null +++ b/purchase_multi_picking/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 purchase +from . import stock_picking diff --git a/purchase_multi_picking/models/purchase.py b/purchase_multi_picking/models/purchase.py new file mode 100755 index 000000000..18eac1d17 --- /dev/null +++ b/purchase_multi_picking/models/purchase.py @@ -0,0 +1,233 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 fields, models +from odoo.addons.purchase_stock.models.purchase import PurchaseOrder + + +class PurchaseOrderLine(models.Model): + """ Added picking type for each purchase order line """ + _inherit = 'purchase.order.line' + + picking_type_id = fields.Many2one('stock.picking.type', + string='Deliver To', + help="Mark the picking type", + domain=[('code', '=', 'incoming')]) + picking_name = fields.Char(string='picking name', + help='For identifying picking type name') + + +class PurchaseOrder(PurchaseOrder): + """ create multiple picking for the purchase order based on the deliver + to given in the purchase order line""" + _inherit = 'purchase.order' + + picking_count = fields.Integer(string='Picking Count', + help="count of picking created for the" + " purchase order") + is_picked = fields.Boolean(string="Is picked", + compute="_compute_is_picked", + help="For managing whether product picking is " + "done or not") + + def action_picking_view(self): + """ The function will return tree view for the picking for the current + purchase order""" + return { + 'type': 'ir.actions.act_window', + 'name': 'Transfers', + 'view_mode': 'tree,form', + 'res_model': 'stock.picking', + 'context': {'create': False}, + 'domain': [ + ('is_multi', '=', True), ('origin', '=', self.name)], + } + + def _create_picking(self): + """ Over writing this function to create multiple picking based on the + 'deliver to' given in the purchase order line""" + for order in self.order_line: + picking_id = self.env['stock.picking'].search( + [('is_multi', '=', True), ('origin', '=', self.name), + ('picking_type_id', '=', order.picking_type_id.id)]) + if order.picking_type_id and self.order_line.filtered( + lambda x: x.picking_type_id.id == order.picking_type_id.id + and x.id != order.id): + if picking_id and order.picking_type_id == picking_id.picking_type_id: + picking_id.update({ + 'move_ids': [(fields.Command.create({ + 'product_id': order.product_id.id, + 'product_uom_qty': order.product_qty, + 'location_dest_id': + self._get_destination_location(), + 'location_id': + self.partner_id.property_stock_supplier.id, + 'description_picking': order.product_id.name, + 'name': order.product_id.name, + }))] + }) + if picking_id: + picking_id.action_confirm() + else: + picking_id = self.create_picking(order) + picking_id.update({ + 'move_ids': [(fields.Command.create({ + 'product_id': order.product_id.id, + 'product_uom_qty': order.product_qty, + 'location_dest_id': + self._get_destination_location(), + 'location_id': + self.partner_id.property_stock_supplier.id, + 'description_picking': order.product_id.name, + 'name': order.product_id.name, + }))] + }) + if picking_id: + picking_id.action_confirm() + order.picking_name = \ + picking_id.picking_type_id.warehouse_id.name \ + + ': ' + picking_id.picking_type_id.name + elif order.picking_type_id: + picking_id = self.env['stock.picking'].create({ + 'picking_type_id': order.picking_type_id.id, + 'partner_id': order.order_id.partner_id.id, + 'scheduled_date': fields.Datetime.today(), + 'origin': order.order_id.name, + 'picking_type_code': 'incoming', + 'is_multi': True, + 'company_id': order.picking_type_id.company_id.id, + 'move_ids': [(fields.Command.create({ + 'product_id': order.product_id.id, + 'product_uom_qty': order.product_qty, + 'location_dest_id': self._get_destination_location(), + 'location_id': + self.partner_id.property_stock_supplier.id, + 'description_picking': order.product_id.name, + 'name': order.product_id.name, + }))] + }) + if picking_id: + picking_id.action_confirm() + order.picking_name = \ + picking_id.picking_type_id.warehouse_id.name \ + + ': ' + picking_id.picking_type_id.name + self.picking_count += 1 + elif not order.picking_type_id and self.order_line.filtered( + lambda x: x.picking_type_id.id == self.picking_type_id.id): + picking_id = self.env['stock.picking'].search( + [('is_multi', '=', True), ('origin', '=', self.name), + ('picking_type_id', '=', self.picking_type_id.id)]) + if not picking_id: + picking_id = self.create_picking(order) + picking_id.update({ + 'move_ids': [(fields.Command.create({ + 'product_id': order.product_id.id, + 'product_uom_qty': order.product_qty, + 'location_dest_id': self._get_destination_location(), + 'location_id': self.partner_id.property_stock_supplier.id, + 'description_picking': order.product_id.name, + 'name': order.product_id.name, + }))] + }) + # }) + if picking_id: + picking_id.action_confirm() + order.picking_name = \ + picking_id.picking_type_id.warehouse_id.name \ + + ': ' + picking_id.picking_type_id.name + else: + picking_id = self.env['stock.picking'].create({ + 'picking_type_id': self.picking_type_id.id, + 'partner_id': order.order_id.partner_id.id, + 'scheduled_date': fields.Datetime.today(), + 'origin': order.order_id.name, + 'location_id': self.partner_id.property_stock_supplier.id, + 'location_dest_id': self._get_destination_location(), + 'picking_type_code': 'incoming', + 'is_multi': True, + 'company_id': order.picking_type_id.company_id.id, + 'move_ids': [(fields.Command.create({ + 'product_id': order.product_id.id, + 'product_uom_qty': order.product_qty, + 'location_dest_id': self._get_destination_location(), + 'location_id': self.partner_id.property_stock_supplier.id, + 'description_picking': order.product_id.name, + 'name': order.product_id.name, + }))] + }) + if picking_id: + picking_id.action_confirm() + order.picking_name = \ + picking_id.picking_type_id.warehouse_id.name \ + + ': ' + picking_id.picking_type_id.name + self.picking_count += 1 + return True + + def create_picking(self, order): + """ Function to create picking only """ + if order.picking_type_id: + picking_type_id = order.picking_type_id.id + else: + picking_type_id = self.picking_type_id.id + picking_id = self.env['stock.picking'].create({ + 'picking_type_id': picking_type_id, + 'partner_id': order.order_id.partner_id.id, + 'scheduled_date': fields.Datetime.today(), + 'location_id': self.partner_id.property_stock_supplier.id, + 'location_dest_id': self._get_destination_location(), + 'origin': order.order_id.name, + 'picking_type_code': 'incoming', + 'is_multi': True, + 'company_id': order.picking_type_id.company_id.id, + }) + self.picking_count += 1 + return picking_id + + def action_view_multi_picking(self): + """ Function that to receive product""" + result = self.env["ir.actions.actions"]._for_xml_id( + 'stock.action_picking_tree_all') + result['context'] = {'default_partner_id': self.partner_id.id, + 'default_origin': self.name, + 'default_picking_type_id': self.picking_type_id.id} + result['domain'] = [('is_multi', '=', True), + ('origin', '=', self.name)] + return result + + def button_cancel(self): + """ Cancel the pickings that are created through this module when + purchase order cancel""" + res = super(PurchaseOrder, self).button_cancel() + pickings = self.env['stock.picking'].search([ + ('origin', '=', self.name)]) + for picking in pickings: + picking.action_cancel() + return res + + def _compute_is_picked(self): + """ For computing whether the picking is completed or not""" + picking_ids = self.env['stock.picking'].search( + [('origin', '=', self.name)]) + if picking_ids: + for picking in picking_ids: + self.is_picked = True if picking.state == "done" else False + else: + self.is_picked = False diff --git a/purchase_multi_picking/models/stock_picking.py b/purchase_multi_picking/models/stock_picking.py new file mode 100755 index 000000000..d9032b21a --- /dev/null +++ b/purchase_multi_picking/models/stock_picking.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 fields, models + + +class StockPicking(models.Model): + """ Adding a boolean fields which is to identity the picking is created + because of the picking type given to in the purchase order line""" + + _inherit = 'stock.picking' + + is_multi = fields.Boolean(string="Is multi", + help="True means this picking is created through" + "this modules") diff --git a/purchase_multi_picking/report/purchase_order_template.xml b/purchase_multi_picking/report/purchase_order_template.xml new file mode 100755 index 000000000..ebc2b7933 --- /dev/null +++ b/purchase_multi_picking/report/purchase_order_template.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/purchase_multi_picking/static/description/assets/icons/check.png b/purchase_multi_picking/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/check.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/chevron.png b/purchase_multi_picking/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/chevron.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/cogs.png b/purchase_multi_picking/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/cogs.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/consultation.png b/purchase_multi_picking/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/consultation.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/ecom-black.png b/purchase_multi_picking/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/ecom-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/education-black.png b/purchase_multi_picking/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/education-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/hotel-black.png b/purchase_multi_picking/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/hotel-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/license.png b/purchase_multi_picking/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/license.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/lifebuoy.png b/purchase_multi_picking/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/lifebuoy.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/manufacturing-black.png b/purchase_multi_picking/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/manufacturing-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/pos-black.png b/purchase_multi_picking/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/pos-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/puzzle.png b/purchase_multi_picking/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/puzzle.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/restaurant-black.png b/purchase_multi_picking/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/restaurant-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/service-black.png b/purchase_multi_picking/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/service-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/trading-black.png b/purchase_multi_picking/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/trading-black.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/training.png b/purchase_multi_picking/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/training.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/update.png b/purchase_multi_picking/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/update.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/user.png b/purchase_multi_picking/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/user.png differ diff --git a/purchase_multi_picking/static/description/assets/icons/wrench.png b/purchase_multi_picking/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/purchase_multi_picking/static/description/assets/icons/wrench.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/categories.png b/purchase_multi_picking/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/categories.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/check-box.png b/purchase_multi_picking/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/check-box.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/compass.png b/purchase_multi_picking/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/compass.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/corporate.png b/purchase_multi_picking/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/corporate.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/customer-support.png b/purchase_multi_picking/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/customer-support.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/cybrosys-logo.png b/purchase_multi_picking/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/cybrosys-logo.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/features.png b/purchase_multi_picking/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/features.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/logo.png b/purchase_multi_picking/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/logo.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/pictures.png b/purchase_multi_picking/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/pictures.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/pie-chart.png b/purchase_multi_picking/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/pie-chart.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/right-arrow.png b/purchase_multi_picking/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/right-arrow.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/star.png b/purchase_multi_picking/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/star.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/support.png b/purchase_multi_picking/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/support.png differ diff --git a/purchase_multi_picking/static/description/assets/misc/whatsapp.png b/purchase_multi_picking/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/misc/whatsapp.png differ diff --git a/purchase_multi_picking/static/description/assets/modules/1.png b/purchase_multi_picking/static/description/assets/modules/1.png new file mode 100644 index 000000000..0cc9efd4a Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/1.png differ diff --git a/purchase_multi_picking/static/description/assets/modules/2.png b/purchase_multi_picking/static/description/assets/modules/2.png new file mode 100755 index 000000000..4f9e87f6e Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/2.png differ diff --git a/purchase_multi_picking/static/description/assets/modules/3.png b/purchase_multi_picking/static/description/assets/modules/3.png new file mode 100755 index 000000000..e571015b1 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/3.png differ diff --git a/purchase_multi_picking/static/description/assets/modules/4.png b/purchase_multi_picking/static/description/assets/modules/4.png new file mode 100755 index 000000000..624ef69b7 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/4.png differ diff --git a/purchase_multi_picking/static/description/assets/modules/5.gif b/purchase_multi_picking/static/description/assets/modules/5.gif new file mode 100755 index 000000000..8f40aab85 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/5.gif differ diff --git a/purchase_multi_picking/static/description/assets/modules/6.png b/purchase_multi_picking/static/description/assets/modules/6.png new file mode 100755 index 000000000..31ed46762 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/modules/6.png differ diff --git a/purchase_multi_picking/static/description/assets/screenshots/hero.gif b/purchase_multi_picking/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..391932ee1 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/screenshots/hero.gif differ diff --git a/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_01.png b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_01.png new file mode 100644 index 000000000..4c29c4780 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_01.png differ diff --git a/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_02.png b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_02.png new file mode 100644 index 000000000..5f6f9c1d2 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_02.png differ diff --git a/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_03.png b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_03.png new file mode 100644 index 000000000..4d6344087 Binary files /dev/null and b/purchase_multi_picking/static/description/assets/screenshots/purchase_order_multi_pick_03.png differ diff --git a/purchase_multi_picking/static/description/banner.png b/purchase_multi_picking/static/description/banner.png new file mode 100755 index 000000000..f43138a5d Binary files /dev/null and b/purchase_multi_picking/static/description/banner.png differ diff --git a/purchase_multi_picking/static/description/icon.png b/purchase_multi_picking/static/description/icon.png new file mode 100755 index 000000000..b43cb60a7 Binary files /dev/null and b/purchase_multi_picking/static/description/icon.png differ diff --git a/purchase_multi_picking/static/description/index.html b/purchase_multi_picking/static/description/index.html new file mode 100755 index 000000000..bbb6e506a --- /dev/null +++ b/purchase_multi_picking/static/description/index.html @@ -0,0 +1,555 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+ +

Purchase Multi Picking +

+

Create Multiple Picking for Product Based on the Delivery to Given for Each Product Given in Order Line

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ This module helps you to create multiple transfer for each product + in the purchase order line .This transfer will be based on delivery to + option given in the order line for each product +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Purchase Order Multi Picking +
+
+ + We can give Deliver To option on the Purchase Order Line +
+
+ + + Incoming Shipment will be created based on the Delivery To given +
+
+
+
+ + Available in Odoo 16.0 + Community & Enterprise. +
+
+ + Delivery to will be visible on the report also +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+
+

Add Delivery To Option +

+

Go to Purchase + -> + Click NEW button and create a Purchase, in order line we can see option to add Deliver To, add operation type +

+ +
+
+

Transfers +

+

+ Click on the Receipt smart button we can see multiple transfer has been created

+ +
+
+

Purchase Order Report +

+

By clicking Purchase Order from print button we will get report with Deliver To option +

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

+ Related + Products +

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

Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+ +
+

Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/purchase_multi_picking/views/purchase_views.xml b/purchase_multi_picking/views/purchase_views.xml new file mode 100755 index 000000000..0e856774f --- /dev/null +++ b/purchase_multi_picking/views/purchase_views.xml @@ -0,0 +1,39 @@ + + + + + purchase.order.form.inherit.purchase.multi.picking + purchase.order + extension + + + + + + + + + + + + + + + +