diff --git a/delivery_split/README.rst b/delivery_split/README.rst new file mode 100644 index 000000000..56c1cda1a --- /dev/null +++ b/delivery_split/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Delivery Split +============== +*This app allows you to split delivery to different recipients added in each sale order line.* + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE v3.0 (AGPL-3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16) Arwa V V , Contact : odoo@cybrosys.com + +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 +========== +.. 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: ``__ \ No newline at end of file diff --git a/delivery_split/__init__.py b/delivery_split/__init__.py new file mode 100644 index 000000000..4748c93aa --- /dev/null +++ b/delivery_split/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/delivery_split/__manifest__.py b/delivery_split/__manifest__.py new file mode 100644 index 000000000..553627d2c --- /dev/null +++ b/delivery_split/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Delivery Split", + 'version': '16.0.1.0.0', + 'category': 'Sales', + 'summary': """Delivery can be split to different recipients""", + 'description': ' In Odoo,currently delivery will be created to the customer' + ' of sale order. Using Delivery Split,we can split the ' + 'delivery to different recipients added in each' + ' sale order line.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['sale_management', 'stock'], + 'data': ['views/sale_order_views.xml', ], + 'images': ['static/description/banner.png', ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/delivery_split/doc/RELEASE_NOTES.md b/delivery_split/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..aec55f4fe --- /dev/null +++ b/delivery_split/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 25.07.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for Delivery Split diff --git a/delivery_split/models/__init__.py b/delivery_split/models/__init__.py new file mode 100644 index 000000000..f0fd20c2d --- /dev/null +++ b/delivery_split/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import sale_order +from . import sale_order_line +from . import stock_move diff --git a/delivery_split/models/sale_order.py b/delivery_split/models/sale_order.py new file mode 100644 index 000000000..7a919e672 --- /dev/null +++ b/delivery_split/models/sale_order.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class SaleOrder(models.Model): + """inherits 'sale.order' and adds new field""" + _inherit = 'sale.order' + + delivery_split = fields.Boolean(string='Delivery Split', + help='Enable the option to add recipients ' + 'to each sale order line to split ' + 'delivery') + + @api.onchange("partner_id") + def _onchange_product_template_id(self): + """Update recipients in order lines with the customer of sale order + is changed""" + if self.delivery_split: + for line in self.order_line: + line.recipient_id = self.partner_id.id diff --git a/delivery_split/models/sale_order_line.py b/delivery_split/models/sale_order_line.py new file mode 100644 index 000000000..c6a005d22 --- /dev/null +++ b/delivery_split/models/sale_order_line.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models +from datetime import timedelta +from odoo.addons.sale_stock.models.sale_order_line import SaleOrderLine + + +class SaleOrderLine(models.Model): + """ + Inherits model 'sale.order.line' and added field 'recipient' + """ + _inherit = 'sale.order.line' + + recipient_id = fields.Many2one('res.partner', string='Recipient', + help='Choose a recipient for splitting ' + 'delivery', + domain=['|', ('company_id', '=', lambda + self: self.env.company.id), + ('company_id', '=', False)]) + + @api.onchange("product_template_id") + def _onchange_product_template_id(self): + """Update recipients in order lines with the customer of sale order as + default recipient""" + if self.order_id.delivery_split: + for line in self: + if not line.recipient_id: + line.recipient_id = self.order_id.partner_id.id + + def _prepare_procurement_values(self, group_id=False): + """ Prepare specific key for moves or other components that will be + created from a stock rule coming from a sale order line. This method + could be override in order to add other custom key that could be used + in move/po creation.""" + date_deadline = self.order_id.commitment_date or ( + self.order_id.date_order + timedelta( + days=self.customer_lead or 0.0)) + date_planned = date_deadline - timedelta( + days=self.order_id.company_id.security_lead) + values = { + 'group_id': group_id, + 'sale_line_id': self.id, + 'date_planned': date_planned, + 'date_deadline': date_deadline, + 'route_ids': self.route_id, + 'warehouse_id': self.order_id.warehouse_id or False, + 'product_description_variants': self.with_context( + lang=self.order_id.partner_id.lang). + _get_sale_order_line_multiline_description_variants(), + 'company_id': self.order_id.company_id, + 'product_packaging_id': self.product_packaging_id, + 'sequence': self.sequence, + } + if self.order_id.delivery_split: + values.update({"partner_id": self.recipient_id.id}) + return values + + SaleOrderLine._prepare_procurement_values = _prepare_procurement_values diff --git a/delivery_split/models/stock_move.py b/delivery_split/models/stock_move.py new file mode 100644 index 000000000..c8fbbc77b --- /dev/null +++ b/delivery_split/models/stock_move.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (Contact : odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models +from odoo.tools import float_compare +from odoo.tools.misc import groupby +from odoo.addons.stock.models.stock_move import StockMove + + +class StockMove(models.Model): + """inheriting the stock move model""" + _inherit = 'stock.move' + + def _assign_picking(self): + """ Try to assign the moves to an existing picking that has not been + reserved yet and has the same procurement group, locations and picking + type (moves should already have them identical). Otherwise, create a + new picking to assign them to. """ + picking = self.env['stock.picking'] + grouped_moves = groupby(self, key=lambda m: m._key_assign_picking()) + for group, moves in grouped_moves: + moves = self.env['stock.move'].concat(*moves) + new_picking = False + # Could pass the arguments contained in group but they are the same + # for each move that why moves[0] is acceptable + picking = moves[0]._search_picking_for_assignation() + if picking: + # If a picking is found, we'll append `move` to its move list + # and thus its `partner_id` and `ref` field will refer to + # multiple records. + # In this case, we chose to wipe them. + vals = {} + if any(picking.partner_id.id != m.partner_id.id + for m in moves): + vals['partner_id'] = False + if any(picking.origin != m.origin for m in moves): + vals['origin'] = False + if vals: + picking.write(vals) + else: + # Don't create picking for negative moves since they will be + # reverse and assign to another picking + moves = moves.filtered(lambda m: float_compare( + m.product_uom_qty, 0.0, precision_rounding= + m.product_uom.rounding) >= 0) + if not moves: + continue + new_picking = True + pick_values = moves._get_new_picking_values() + sale_order = self.env['sale.order'].search([ + ('name', '=', pick_values['origin'])]) + if sale_order.delivery_split: + for move in moves: + picking = picking.create( + move._get_new_picking_values()) + move.write({'picking_id': picking.id}) + move._assign_picking_post_process(new=new_picking) + else: + picking = picking.create(moves._get_new_picking_values()) + moves.write({'picking_id': picking.id, + 'partner_id': sale_order.partner_id.id}) + moves._assign_picking_post_process(new=new_picking) + return True + StockMove._assign_picking = _assign_picking diff --git a/delivery_split/static/description/assets/icons/check.png b/delivery_split/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/delivery_split/static/description/assets/icons/check.png differ diff --git a/delivery_split/static/description/assets/icons/chevron.png b/delivery_split/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/delivery_split/static/description/assets/icons/chevron.png differ diff --git a/delivery_split/static/description/assets/icons/cogs.png b/delivery_split/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/delivery_split/static/description/assets/icons/cogs.png differ diff --git a/delivery_split/static/description/assets/icons/consultation.png b/delivery_split/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/delivery_split/static/description/assets/icons/consultation.png differ diff --git a/delivery_split/static/description/assets/icons/ecom-black.png b/delivery_split/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/delivery_split/static/description/assets/icons/ecom-black.png differ diff --git a/delivery_split/static/description/assets/icons/education-black.png b/delivery_split/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/delivery_split/static/description/assets/icons/education-black.png differ diff --git a/delivery_split/static/description/assets/icons/hotel-black.png b/delivery_split/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/delivery_split/static/description/assets/icons/hotel-black.png differ diff --git a/delivery_split/static/description/assets/icons/license.png b/delivery_split/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/delivery_split/static/description/assets/icons/license.png differ diff --git a/delivery_split/static/description/assets/icons/lifebuoy.png b/delivery_split/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/delivery_split/static/description/assets/icons/lifebuoy.png differ diff --git a/delivery_split/static/description/assets/icons/manufacturing-black.png b/delivery_split/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/delivery_split/static/description/assets/icons/manufacturing-black.png differ diff --git a/delivery_split/static/description/assets/icons/pos-black.png b/delivery_split/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/delivery_split/static/description/assets/icons/pos-black.png differ diff --git a/delivery_split/static/description/assets/icons/puzzle.png b/delivery_split/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/delivery_split/static/description/assets/icons/puzzle.png differ diff --git a/delivery_split/static/description/assets/icons/restaurant-black.png b/delivery_split/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/delivery_split/static/description/assets/icons/restaurant-black.png differ diff --git a/delivery_split/static/description/assets/icons/service-black.png b/delivery_split/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/delivery_split/static/description/assets/icons/service-black.png differ diff --git a/delivery_split/static/description/assets/icons/trading-black.png b/delivery_split/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/delivery_split/static/description/assets/icons/trading-black.png differ diff --git a/delivery_split/static/description/assets/icons/training.png b/delivery_split/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/delivery_split/static/description/assets/icons/training.png differ diff --git a/delivery_split/static/description/assets/icons/update.png b/delivery_split/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/delivery_split/static/description/assets/icons/update.png differ diff --git a/delivery_split/static/description/assets/icons/user.png b/delivery_split/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/delivery_split/static/description/assets/icons/user.png differ diff --git a/delivery_split/static/description/assets/icons/wrench.png b/delivery_split/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/delivery_split/static/description/assets/icons/wrench.png differ diff --git a/delivery_split/static/description/assets/misc/categories.png b/delivery_split/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/delivery_split/static/description/assets/misc/categories.png differ diff --git a/delivery_split/static/description/assets/misc/check-box.png b/delivery_split/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/delivery_split/static/description/assets/misc/check-box.png differ diff --git a/delivery_split/static/description/assets/misc/compass.png b/delivery_split/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/delivery_split/static/description/assets/misc/compass.png differ diff --git a/delivery_split/static/description/assets/misc/corporate.png b/delivery_split/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/delivery_split/static/description/assets/misc/corporate.png differ diff --git a/delivery_split/static/description/assets/misc/customer-support.png b/delivery_split/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/delivery_split/static/description/assets/misc/customer-support.png differ diff --git a/delivery_split/static/description/assets/misc/cybrosys-logo.png b/delivery_split/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/delivery_split/static/description/assets/misc/cybrosys-logo.png differ diff --git a/delivery_split/static/description/assets/misc/features.png b/delivery_split/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/delivery_split/static/description/assets/misc/features.png differ diff --git a/delivery_split/static/description/assets/misc/logo.png b/delivery_split/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/delivery_split/static/description/assets/misc/logo.png differ diff --git a/delivery_split/static/description/assets/misc/pictures.png b/delivery_split/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/delivery_split/static/description/assets/misc/pictures.png differ diff --git a/delivery_split/static/description/assets/misc/pie-chart.png b/delivery_split/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/delivery_split/static/description/assets/misc/pie-chart.png differ diff --git a/delivery_split/static/description/assets/misc/right-arrow.png b/delivery_split/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/delivery_split/static/description/assets/misc/right-arrow.png differ diff --git a/delivery_split/static/description/assets/misc/star.png b/delivery_split/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/delivery_split/static/description/assets/misc/star.png differ diff --git a/delivery_split/static/description/assets/misc/support.png b/delivery_split/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/delivery_split/static/description/assets/misc/support.png differ diff --git a/delivery_split/static/description/assets/misc/whatsapp.png b/delivery_split/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/delivery_split/static/description/assets/misc/whatsapp.png differ diff --git a/delivery_split/static/description/assets/modules/dynamic_product_fields.png b/delivery_split/static/description/assets/modules/dynamic_product_fields.png new file mode 100644 index 000000000..55fb7ba18 Binary files /dev/null and b/delivery_split/static/description/assets/modules/dynamic_product_fields.png differ diff --git a/delivery_split/static/description/assets/modules/dynamic_sale_order_fields.png b/delivery_split/static/description/assets/modules/dynamic_sale_order_fields.png new file mode 100644 index 000000000..febd12d15 Binary files /dev/null and b/delivery_split/static/description/assets/modules/dynamic_sale_order_fields.png differ diff --git a/delivery_split/static/description/assets/modules/picking_order_line_view.png b/delivery_split/static/description/assets/modules/picking_order_line_view.png new file mode 100644 index 000000000..b8ea6b411 Binary files /dev/null and b/delivery_split/static/description/assets/modules/picking_order_line_view.png differ diff --git a/delivery_split/static/description/assets/modules/sale_discount_total.png b/delivery_split/static/description/assets/modules/sale_discount_total.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/delivery_split/static/description/assets/modules/sale_discount_total.png differ diff --git a/delivery_split/static/description/assets/modules/sale_order_line_views.png b/delivery_split/static/description/assets/modules/sale_order_line_views.png new file mode 100644 index 000000000..624ef69b7 Binary files /dev/null and b/delivery_split/static/description/assets/modules/sale_order_line_views.png differ diff --git a/delivery_split/static/description/assets/modules/sale_purchase_previous_product_cost.png b/delivery_split/static/description/assets/modules/sale_purchase_previous_product_cost.png new file mode 100644 index 000000000..61bb0ced0 Binary files /dev/null and b/delivery_split/static/description/assets/modules/sale_purchase_previous_product_cost.png differ diff --git a/delivery_split/static/description/assets/screenshots.zip b/delivery_split/static/description/assets/screenshots.zip new file mode 100644 index 000000000..038803ad6 Binary files /dev/null and b/delivery_split/static/description/assets/screenshots.zip differ diff --git a/delivery_split/static/description/assets/screenshots/Screenshot1.png b/delivery_split/static/description/assets/screenshots/Screenshot1.png new file mode 100644 index 000000000..c6d6e343c Binary files /dev/null and b/delivery_split/static/description/assets/screenshots/Screenshot1.png differ diff --git a/delivery_split/static/description/assets/screenshots/Screenshot2.png b/delivery_split/static/description/assets/screenshots/Screenshot2.png new file mode 100644 index 000000000..d01e57f3c Binary files /dev/null and b/delivery_split/static/description/assets/screenshots/Screenshot2.png differ diff --git a/delivery_split/static/description/assets/screenshots/Screenshots.zip b/delivery_split/static/description/assets/screenshots/Screenshots.zip new file mode 100644 index 000000000..d6cefefde Binary files /dev/null and b/delivery_split/static/description/assets/screenshots/Screenshots.zip differ diff --git a/delivery_split/static/description/assets/screenshots/hero.gif b/delivery_split/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..7f943e1b2 Binary files /dev/null and b/delivery_split/static/description/assets/screenshots/hero.gif differ diff --git a/delivery_split/static/description/banner.png b/delivery_split/static/description/banner.png new file mode 100644 index 000000000..bcc40d434 Binary files /dev/null and b/delivery_split/static/description/banner.png differ diff --git a/delivery_split/static/description/icon.png b/delivery_split/static/description/icon.png new file mode 100644 index 000000000..1b254fcac Binary files /dev/null and b/delivery_split/static/description/icon.png differ diff --git a/delivery_split/static/description/index.html b/delivery_split/static/description/index.html new file mode 100644 index 000000000..ee7636c14 --- /dev/null +++ b/delivery_split/static/description/index.html @@ -0,0 +1,534 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+ +

+ Delivery Split

+

+ A Module For Splitting Sales Delivery To Different Recipients

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ In Odoo, currently delivery will be created to the customer of sales order. Using Delivery Split, + we can split the delivery to different recipients added in each sale order line. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + + Odoo 16 Community and Enterprise support +
+
+ + + Splits delivery to different recipients added in sale order line. +
+
+
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

+ Enable 'Delivery Split' in sales order and add the recipients +

+

+ In sales order,you can enable a boolean field 'Delivery Split' + and add recipients in each sale order line.Delivery will be + split to these recipients.

+ +
+ +
+

+ Transfers +

+

+ Delivery will be created for the recipients added in each sale order line. +

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

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/delivery_split/views/sale_order_views.xml b/delivery_split/views/sale_order_views.xml new file mode 100644 index 000000000..8e2afbd88 --- /dev/null +++ b/delivery_split/views/sale_order_views.xml @@ -0,0 +1,18 @@ + + + + + sale.order.view.form.inherit.delivery.split + + sale.order + + + + + + + + + +