diff --git a/sale_delivery_address/README.rst b/sale_delivery_address/README.rst new file mode 100644 index 000000000..b175e0868 --- /dev/null +++ b/sale_delivery_address/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Multiple Delivery Addresses for Sale Order +========================================== +Multiple Delivery Addresses can be added to the same sale order + +Configuration +============= +* No additional configurations needed + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* 'Cybrosys Techno Solutions `__ + +Credits +------- +Developers: (V17) Ayana KP, + (v16) Raveena V, +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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/sale_delivery_address/__init__.py b/sale_delivery_address/__init__.py new file mode 100644 index 000000000..501b693bc --- /dev/null +++ b/sale_delivery_address/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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/sale_delivery_address/__manifest__.py b/sale_delivery_address/__manifest__.py new file mode 100644 index 000000000..d1d2c7894 --- /dev/null +++ b/sale_delivery_address/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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': 'Multiple Delivery Addresses for Sale Order', + 'version': '17.0.1.0.0', + 'category': 'Sales', + 'summary': """Multiple Delivery Addresses for Sale Order """, + 'description': """ If the customer have multiple addresses, the user can + choose delivery addresses for each order lines. Then separate pickings + and delivery will be created for each of the addresses. """, + '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', + 'views/sale_order_templates.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/sale_delivery_address/doc/RELEASE_NOTES.md b/sale_delivery_address/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..662f4df12 --- /dev/null +++ b/sale_delivery_address/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 06.02.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial Commit for Multiple Delivery Addresses for Sale Order diff --git a/sale_delivery_address/models/__init__.py b/sale_delivery_address/models/__init__.py new file mode 100644 index 000000000..9c6c9d373 --- /dev/null +++ b/sale_delivery_address/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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_line +from . import stock_move +from . import stock_rule diff --git a/sale_delivery_address/models/sale_order_line.py b/sale_delivery_address/models/sale_order_line.py new file mode 100644 index 000000000..8293bcbcd --- /dev/null +++ b/sale_delivery_address/models/sale_order_line.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP (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 SaleOrderLine(models.Model): + """ Inherits sale.order.line to add the new fields for delivery address """ + + _inherit = 'sale.order.line' + + delivery_addr_id = fields.Many2one( + 'res.partner', string="Delivery Address", + domain="[('parent_id', '=', order_partner_id)]", + help="You can select from the delivery addresses of the same customer") + is_address_readonly = fields.Boolean(string='Address Readonly', + default=False, compute="_compute_is_address_readonly", + help='Helps find address is readonly or not') + + @api.depends('product_id') + def _compute_is_address_readonly(self): + """ This function will compute the is_address_readonly field. + The field is used to make delivery address field in sale order line + a readonly field if the product is a service.""" + for rec in self: + rec.is_address_readonly = False + if rec.product_id.type == 'service': + rec.is_address_readonly = True diff --git a/sale_delivery_address/models/stock_move.py b/sale_delivery_address/models/stock_move.py new file mode 100644 index 000000000..a88ac116a --- /dev/null +++ b/sale_delivery_address/models/stock_move.py @@ -0,0 +1,129 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP (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.float_utils import float_compare +from odoo.tools.misc import groupby + + +class StockMove(models.Model): + """ Inherits stock_move to manage pickings with respect to the + delivery address """ + + _inherit = "stock.move" + + def _get_new_picking_values(self): + """ Extending _get_new_picking_values to create values for new + pickings with different delivery addresses""" + origins = self.filtered(lambda m: m.origin).mapped('origin') + origins = list(dict.fromkeys(origins)) + if len(origins) == 0: + origin = False + else: + origin = ','.join(origins[:5]) + if len(origins) > 5: + origin += "..." + orders = self.env['sale.order'].search([('name', 'in', origins)]) + for rec in orders: + address = [rec.partner_id.id] + for line in rec.order_line: + if line.delivery_addr_id: + if line.delivery_addr_id.id not in address: + address.append(line.delivery_addr_id.id) + elif rec.partner_id.id not in address: + address.append(rec.partner_id.id) + # if no delivery address is selected for order lines, + # only one transfer will be created + if len(address) <= 1: + res = super(StockMove, self)._get_new_picking_values() + return res + return { + 'origin': origin, + 'company_id': self.mapped('company_id').id, + 'user_id': False, + 'move_type': self.mapped('group_id').move_type or 'direct', + 'partner_id': self.sale_line_id.delivery_addr_id.id or + self.sale_line_id.order_id.partner_id.id, + 'picking_type_id': self.mapped('picking_type_id').id, + 'location_id': self.mapped('location_id').id, + 'location_dest_id': self.mapped('location_dest_id').id, + } + + def _assign_picking(self): + """ Extending _assign_picking function to create new pickings for + order lines having different delivery addresses. """ + picking_obj = 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) + picking = moves[0]._search_picking_for_assignation() + if picking: + vals = {} + if any(picking.partner_id.id != move.partner_id.id for move in + moves): + vals['partner_id'] = False + if any(picking.origin != move.origin for move in moves): + vals['origin'] = False + if vals: + picking.write(vals) + else: + 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 + origins = moves[0].origin + orders = self.env['sale.order'].search( + [('name', '=', origins)]) + for rec in orders: + addr = [rec.partner_id.id] + for line in rec.order_line: + if line.delivery_addr_id and line.delivery_addr_id.id \ + not in addr: + addr.append(line.delivery_addr_id.id) + elif line.delivery_addr_id and rec.partner_id.id not \ + in addr: + addr.append(rec.partner_id.id) + if len(addr) <= 1: + return super(StockMove, self)._assign_picking() + else: + for mov in moves: + mov.write({ + 'partner_id': + mov.sale_line_id.delivery_addr_id.id + or mov.sale_line_id.order_id.partner_id.id + }) + move_ids = [] + for index, value in enumerate(addr): + for mov in moves: + if mov.partner_id.id == value: + move_ids.append(mov.id) + mvs = self.env['stock.move'].search( + [('id', 'in', move_ids)]) + move_ids = [] + if mvs: + picking = picking_obj.create( + mvs._get_new_picking_values()) + mvs.write({'picking_id': picking.id}) + mvs._assign_picking_post_process(new=new_picking) + return True diff --git a/sale_delivery_address/models/stock_rule.py b/sale_delivery_address/models/stock_rule.py new file mode 100644 index 000000000..87ab50dce --- /dev/null +++ b/sale_delivery_address/models/stock_rule.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP (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 + + +class StockRule(models.Model): + """Inherits the stock.rule to update each move with the partner from + corresponding sale order line""" + + _inherit = 'stock.rule' + + def _get_stock_move_values(self, product_id, product_qty, product_uom, + location_id, name, origin, company_id, values): + """ Extending the _get_stock_move_values function for updating the + partner as the partner from the selected delivery address if it exists + or the partner from the order. Returns a dictionary of values that will + be used to create a stock move from a procurement. + :param procurement: browse record + :rtype: dictionary """ + res = super()._get_stock_move_values( + product_id, product_qty, product_uom, location_id, name, origin, + company_id, values) + if res.get('warehouse_id'): + warehouse = self.env['stock.warehouse'].browse(res.get( + 'warehouse_id')) + if res.get('order_id') and warehouse.delivery_steps in [ + 'pick_ship', 'ship_only']: + for data in res.get('order_id'): + for move in self.env['stock.move'].browse(data[-1]): + partner_id = move.sale_line_id.delivery_addr.id or \ + move.sale_line_id.order_id.partner_id.id + res.update({ + 'partner_id': partner_id + }) + return res diff --git a/sale_delivery_address/static/description/assets/icons/capture (1).png b/sale_delivery_address/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/capture (1).png differ diff --git a/sale_delivery_address/static/description/assets/icons/check.png b/sale_delivery_address/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/check.png differ diff --git a/sale_delivery_address/static/description/assets/icons/chevron.png b/sale_delivery_address/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/chevron.png differ diff --git a/sale_delivery_address/static/description/assets/icons/cogs.png b/sale_delivery_address/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/cogs.png differ diff --git a/sale_delivery_address/static/description/assets/icons/consultation.png b/sale_delivery_address/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/consultation.png differ diff --git a/sale_delivery_address/static/description/assets/icons/ecom-black.png b/sale_delivery_address/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/ecom-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/education-black.png b/sale_delivery_address/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/education-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/hotel-black.png b/sale_delivery_address/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/hotel-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/img.png b/sale_delivery_address/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/img.png differ diff --git a/sale_delivery_address/static/description/assets/icons/license.png b/sale_delivery_address/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/license.png differ diff --git a/sale_delivery_address/static/description/assets/icons/lifebuoy.png b/sale_delivery_address/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/lifebuoy.png differ diff --git a/sale_delivery_address/static/description/assets/icons/manufacturing-black.png b/sale_delivery_address/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/manufacturing-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/photo-capture.png b/sale_delivery_address/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/photo-capture.png differ diff --git a/sale_delivery_address/static/description/assets/icons/pos-black.png b/sale_delivery_address/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/pos-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/puzzle.png b/sale_delivery_address/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/puzzle.png differ diff --git a/sale_delivery_address/static/description/assets/icons/restaurant-black.png b/sale_delivery_address/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/restaurant-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/service-black.png b/sale_delivery_address/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/service-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/trading-black.png b/sale_delivery_address/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/trading-black.png differ diff --git a/sale_delivery_address/static/description/assets/icons/training.png b/sale_delivery_address/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/training.png differ diff --git a/sale_delivery_address/static/description/assets/icons/update.png b/sale_delivery_address/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/update.png differ diff --git a/sale_delivery_address/static/description/assets/icons/user.png b/sale_delivery_address/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/user.png differ diff --git a/sale_delivery_address/static/description/assets/icons/wrench.png b/sale_delivery_address/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/sale_delivery_address/static/description/assets/icons/wrench.png differ diff --git a/sale_delivery_address/static/description/assets/misc/Cybrosys R.png b/sale_delivery_address/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/sale_delivery_address/static/description/assets/misc/Cybrosys R.png differ diff --git a/sale_delivery_address/static/description/assets/misc/email.svg b/sale_delivery_address/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/phone.svg b/sale_delivery_address/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/sale_delivery_address/static/description/assets/misc/star (1) 2.svg b/sale_delivery_address/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/support (1) 1.svg b/sale_delivery_address/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/support-email.svg b/sale_delivery_address/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/tick-mark.svg b/sale_delivery_address/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/whatsapp 1.svg b/sale_delivery_address/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/misc/whatsapp.svg b/sale_delivery_address/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/sale_delivery_address/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sale_delivery_address/static/description/assets/modules/module_3.jpg b/sale_delivery_address/static/description/assets/modules/module_3.jpg new file mode 100644 index 000000000..e19e7ab11 Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_3.jpg differ diff --git a/sale_delivery_address/static/description/assets/modules/module_image (1).jpeg b/sale_delivery_address/static/description/assets/modules/module_image (1).jpeg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_image (1).jpeg differ diff --git a/sale_delivery_address/static/description/assets/modules/module_image (1).png b/sale_delivery_address/static/description/assets/modules/module_image (1).png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_image (1).png differ diff --git a/sale_delivery_address/static/description/assets/modules/module_image (2).png b/sale_delivery_address/static/description/assets/modules/module_image (2).png new file mode 100644 index 000000000..a5dc79613 Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_image (2).png differ diff --git a/sale_delivery_address/static/description/assets/modules/module_image.jpeg b/sale_delivery_address/static/description/assets/modules/module_image.jpeg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_image.jpeg differ diff --git a/sale_delivery_address/static/description/assets/modules/module_image.png b/sale_delivery_address/static/description/assets/modules/module_image.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/sale_delivery_address/static/description/assets/modules/module_image.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/1.png b/sale_delivery_address/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..2dcec4349 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/1.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/2.png b/sale_delivery_address/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..951fc13a0 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/2.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/3.png b/sale_delivery_address/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..031df4ac4 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/3.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/4.png b/sale_delivery_address/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..6e36491d9 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/4.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/5.png b/sale_delivery_address/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..6207e2fe7 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/5.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/6.png b/sale_delivery_address/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..7f3331bb2 Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/6.png differ diff --git a/sale_delivery_address/static/description/assets/screenshots/hero.png b/sale_delivery_address/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..b2b75afed Binary files /dev/null and b/sale_delivery_address/static/description/assets/screenshots/hero.png differ diff --git a/sale_delivery_address/static/description/banner.png b/sale_delivery_address/static/description/banner.png new file mode 100644 index 000000000..6f016e472 Binary files /dev/null and b/sale_delivery_address/static/description/banner.png differ diff --git a/sale_delivery_address/static/description/icon.png b/sale_delivery_address/static/description/icon.png new file mode 100644 index 000000000..7c2b6dd88 Binary files /dev/null and b/sale_delivery_address/static/description/icon.png differ diff --git a/sale_delivery_address/static/description/index.html b/sale_delivery_address/static/description/index.html new file mode 100644 index 000000000..8c50c19c9 --- /dev/null +++ b/sale_delivery_address/static/description/index.html @@ -0,0 +1,619 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Multiple Delivery Addresses for Sale Order

+

+ Multiple Delivery Addresses can be Applied for the same Sale Order. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Each line may have different Delivery Address.

+

You can select Delivery addresses of the customer for each Sale order line. +

+
+
+
+
+
+
+ +
+
+

Separate Transfers.

+

You can view the separate transfers created for each different Delivery address. +

+
+
+
+
+
+
+ +
+
+

The Delivery addresses on Sale order report.

+

You can view the Delivery addresses on the Quotation/Order Report +

+
+
+
+
+
+
+ +
+
+

The Delivery addresses on Customers portal view.

+

You can view the delivery addresses on the customer portal view. +

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

+ You can select the different Delivery addresses of the customer for each Order Line.

+
+
+
+
+
+
+ +
+
+

+ You can see the Delivery addresses of the customer for each Order Line. +

+
+
+
+
+
+
+ +
+
+

+ You can view the separate transfers that are created for each Delivery address on the Smart Button.

+
+
+
+
+
+
+ +
+
+

+ You can view the transfers with each Delivery address.

+
+
+
+
+
+
+ +
+
+

+ You can view the Delivery addresses on the quotation or Order Report.

+
+
+
+
+
+
+ +
+
+

+ You can view the Delivery address on the customer Portal view.

+
+
+
+
+
+
+
    +
  • + Each line may have different Delivery Address +
  • +
  • + Separate transfers. +
  • +
  • + The delivery addresses on Sale order report. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:8th January 2024 +
+

+ + Initial Commit for Multiple Delivery Addresses for Sale Order.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/sale_delivery_address/views/sale_order_templates.xml b/sale_delivery_address/views/sale_order_templates.xml new file mode 100644 index 000000000..e328c01ea --- /dev/null +++ b/sale_delivery_address/views/sale_order_templates.xml @@ -0,0 +1,35 @@ + + + + + + diff --git a/sale_delivery_address/views/sale_order_views.xml b/sale_delivery_address/views/sale_order_views.xml new file mode 100644 index 000000000..cb24e421d --- /dev/null +++ b/sale_delivery_address/views/sale_order_views.xml @@ -0,0 +1,20 @@ + + + + + sale.order.view.form.inherit.sale.delivery.address + + sale.order + + + + + + + + + +