diff --git a/product_sales_by_location/README.rst b/product_sales_by_location/README.rst new file mode 100644 index 000000000..790616a8a --- /dev/null +++ b/product_sales_by_location/README.rst @@ -0,0 +1,49 @@ +.. 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 + +Product Sales By Location +========================= +This app allows our user to set a location on sale order line. +Whatever location is selected on sale order lines, the product will be delivered from the selected location. +Delivery orders will be created based on selected location on sale order lines. + +Configuration +============= +* No additional configuration needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer: (V16): Dhanya Babu, + (V17): Gayathri 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 `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/product_sales_by_location/__init__.py b/product_sales_by_location/__init__.py new file mode 100644 index 000000000..a3f34d82c --- /dev/null +++ b/product_sales_by_location/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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/product_sales_by_location/__manifest__.py b/product_sales_by_location/__manifest__.py new file mode 100644 index 000000000..ed61f6bc2 --- /dev/null +++ b/product_sales_by_location/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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': 'Product Sales By Location', + 'version': '17.0.1.0.0', + 'category': 'Sales', + 'summary': " We can set the location of products for delivery. ", + 'description': " This app allows our user to set a location on sale order" + " line. Whatever location is selected on sale order lines, " + "the product will be delivered from the selected location." + "Delivery orders will be created based on selected location" + "in odoo17", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'stock', 'portal'], + 'data': + ['views/sale_order_views.xml', + 'views/sale_portal_templates.xml', + 'report/sale_order_templates.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/product_sales_by_location/doc/RELEASE_NOTES.md b/product_sales_by_location/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..30a0dcabc --- /dev/null +++ b/product_sales_by_location/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 09.04.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial Commit for Product Sales By Location diff --git a/product_sales_by_location/models/__init__.py b/product_sales_by_location/models/__init__.py new file mode 100644 index 000000000..80add2abe --- /dev/null +++ b/product_sales_by_location/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 sale_order +from . import sale_order_line +from . import stock_rule diff --git a/product_sales_by_location/models/sale_order.py b/product_sales_by_location/models/sale_order.py new file mode 100644 index 000000000..86984c281 --- /dev/null +++ b/product_sales_by_location/models/sale_order.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 api, models, _ +from odoo.exceptions import ValidationError + + +class SaleOrder(models.Model): + """Inheriting sale order model to check the order line count when + confirm the sale order.""" + _inherit = 'sale.order' + + @api.constrains('order_line') + def _check_order_line(self): + """This function ensures that the same product cannot be added with + the same location more than once in the order.""" + for order in self: + for line in order.order_line.filtered( + lambda l: l.line_location_id): + lines_count = line.search_count([('order_id', '=', order.id), ( + 'product_id', '=', line.product_id.id), + ('line_location_id', '=', + line.line_location_id.id)]) + if lines_count > 1: + raise ValidationError( + _(f"You cannot add the same product" + f" {line.product_id.display_name} with the same " + f"location '{line.line_location_id.name}'.")) diff --git a/product_sales_by_location/models/sale_order_line.py b/product_sales_by_location/models/sale_order_line.py new file mode 100644 index 000000000..a753e5531 --- /dev/null +++ b/product_sales_by_location/models/sale_order_line.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 SaleOrderLine(models.Model): + """Inheriting this model to add new field.""" + _inherit = 'sale.order.line' + + line_location_id = fields.Many2one('stock.location', + string='Location', + domain="[('usage','=','internal')]", + help=' Choose the location from' + ' where the product taken from') diff --git a/product_sales_by_location/models/stock_rule.py b/product_sales_by_location/models/stock_rule.py new file mode 100644 index 000000000..50a924c93 --- /dev/null +++ b/product_sales_by_location/models/stock_rule.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 models + + +class StockRule(models.Model): + """By inheriting this model generating corresponding product's stock + moves.""" + _inherit = 'stock.rule' + + def _get_stock_move_values(self, product_id, product_qty, product_uom, + location_id, name, origin, company_id, values): + """Retrieve stock move values for a given product.""" + if values.get('sale_line_id', False): + sale_line_id = self.env['sale.order.line'].sudo().browse( + values['sale_line_id']) + self.location_src_id = sale_line_id.line_location_id.id \ + if sale_line_id.line_location_id \ + else self.picking_type_id.default_location_src_id + return super()._get_stock_move_values(product_id, + product_qty, + product_uom, + location_id, + name, origin, + company_id, + values) diff --git a/product_sales_by_location/report/sale_order_templates.xml b/product_sales_by_location/report/sale_order_templates.xml new file mode 100644 index 000000000..07a9ac524 --- /dev/null +++ b/product_sales_by_location/report/sale_order_templates.xml @@ -0,0 +1,17 @@ + + + + + diff --git a/product_sales_by_location/static/description/assets/icons/capture (1).png b/product_sales_by_location/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/capture (1).png differ diff --git a/product_sales_by_location/static/description/assets/icons/check.png b/product_sales_by_location/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/check.png differ diff --git a/product_sales_by_location/static/description/assets/icons/chevron.png b/product_sales_by_location/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/chevron.png differ diff --git a/product_sales_by_location/static/description/assets/icons/cogs.png b/product_sales_by_location/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/cogs.png differ diff --git a/product_sales_by_location/static/description/assets/icons/consultation.png b/product_sales_by_location/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/consultation.png differ diff --git a/product_sales_by_location/static/description/assets/icons/ecom-black.png b/product_sales_by_location/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/ecom-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/education-black.png b/product_sales_by_location/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/education-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/hotel-black.png b/product_sales_by_location/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/hotel-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/img.png b/product_sales_by_location/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/img.png differ diff --git a/product_sales_by_location/static/description/assets/icons/license.png b/product_sales_by_location/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/license.png differ diff --git a/product_sales_by_location/static/description/assets/icons/lifebuoy.png b/product_sales_by_location/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/lifebuoy.png differ diff --git a/product_sales_by_location/static/description/assets/icons/manufacturing-black.png b/product_sales_by_location/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/photo-capture.png b/product_sales_by_location/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/photo-capture.png differ diff --git a/product_sales_by_location/static/description/assets/icons/pos-black.png b/product_sales_by_location/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/pos-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/puzzle.png b/product_sales_by_location/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/puzzle.png differ diff --git a/product_sales_by_location/static/description/assets/icons/restaurant-black.png b/product_sales_by_location/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/restaurant-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/service-black.png b/product_sales_by_location/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/service-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/trading-black.png b/product_sales_by_location/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/trading-black.png differ diff --git a/product_sales_by_location/static/description/assets/icons/training.png b/product_sales_by_location/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/training.png differ diff --git a/product_sales_by_location/static/description/assets/icons/update.png b/product_sales_by_location/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/update.png differ diff --git a/product_sales_by_location/static/description/assets/icons/user.png b/product_sales_by_location/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/user.png differ diff --git a/product_sales_by_location/static/description/assets/icons/wrench.png b/product_sales_by_location/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_sales_by_location/static/description/assets/icons/wrench.png differ diff --git a/product_sales_by_location/static/description/assets/misc/Cybrosys R.png b/product_sales_by_location/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/Cybrosys R.png differ diff --git a/product_sales_by_location/static/description/assets/misc/categories.png b/product_sales_by_location/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/categories.png differ diff --git a/product_sales_by_location/static/description/assets/misc/check-box.png b/product_sales_by_location/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/check-box.png differ diff --git a/product_sales_by_location/static/description/assets/misc/compass.png b/product_sales_by_location/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/compass.png differ diff --git a/product_sales_by_location/static/description/assets/misc/corporate.png b/product_sales_by_location/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/corporate.png differ diff --git a/product_sales_by_location/static/description/assets/misc/customer-support.png b/product_sales_by_location/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/customer-support.png differ diff --git a/product_sales_by_location/static/description/assets/misc/cybrosys-logo.png b/product_sales_by_location/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/cybrosys-logo.png differ diff --git a/product_sales_by_location/static/description/assets/misc/email.svg b/product_sales_by_location/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/features.png b/product_sales_by_location/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/features.png differ diff --git a/product_sales_by_location/static/description/assets/misc/logo.png b/product_sales_by_location/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/logo.png differ diff --git a/product_sales_by_location/static/description/assets/misc/phone.svg b/product_sales_by_location/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/product_sales_by_location/static/description/assets/misc/pictures.png b/product_sales_by_location/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/pictures.png differ diff --git a/product_sales_by_location/static/description/assets/misc/pie-chart.png b/product_sales_by_location/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/pie-chart.png differ diff --git a/product_sales_by_location/static/description/assets/misc/right-arrow.png b/product_sales_by_location/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/right-arrow.png differ diff --git a/product_sales_by_location/static/description/assets/misc/star (1) 2.svg b/product_sales_by_location/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/star.png b/product_sales_by_location/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/star.png differ diff --git a/product_sales_by_location/static/description/assets/misc/support (1) 1.svg b/product_sales_by_location/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/support-email.svg b/product_sales_by_location/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/support.png b/product_sales_by_location/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/support.png differ diff --git a/product_sales_by_location/static/description/assets/misc/tick-mark.svg b/product_sales_by_location/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/whatsapp 1.svg b/product_sales_by_location/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/misc/whatsapp.png b/product_sales_by_location/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_sales_by_location/static/description/assets/misc/whatsapp.png differ diff --git a/product_sales_by_location/static/description/assets/misc/whatsapp.svg b/product_sales_by_location/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/product_sales_by_location/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_sales_by_location/static/description/assets/modules/1.gif b/product_sales_by_location/static/description/assets/modules/1.gif new file mode 100644 index 000000000..8ac32db03 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/1.gif differ diff --git a/product_sales_by_location/static/description/assets/modules/1.png b/product_sales_by_location/static/description/assets/modules/1.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/1.png differ diff --git a/product_sales_by_location/static/description/assets/modules/2.jpg b/product_sales_by_location/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..a1dc39c89 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/2.jpg differ diff --git a/product_sales_by_location/static/description/assets/modules/2.png b/product_sales_by_location/static/description/assets/modules/2.png new file mode 100644 index 000000000..2c8fbb83f Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/2.png differ diff --git a/product_sales_by_location/static/description/assets/modules/3.png b/product_sales_by_location/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/3.png differ diff --git a/product_sales_by_location/static/description/assets/modules/4.png b/product_sales_by_location/static/description/assets/modules/4.png new file mode 100644 index 000000000..bc5648b1a Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/4.png differ diff --git a/product_sales_by_location/static/description/assets/modules/5.gif b/product_sales_by_location/static/description/assets/modules/5.gif new file mode 100755 index 000000000..d0f36b007 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/5.gif differ diff --git a/product_sales_by_location/static/description/assets/modules/5.png b/product_sales_by_location/static/description/assets/modules/5.png new file mode 100644 index 000000000..7cc3625c7 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/5.png differ diff --git a/product_sales_by_location/static/description/assets/modules/6.png b/product_sales_by_location/static/description/assets/modules/6.png new file mode 100644 index 000000000..745d6db78 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/6.png differ diff --git a/product_sales_by_location/static/description/assets/modules/banner.jpg b/product_sales_by_location/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/product_sales_by_location/static/description/assets/modules/banner.jpg differ diff --git a/product_sales_by_location/static/description/assets/screenshots/1.png b/product_sales_by_location/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..d72eea3d9 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/1.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/2.png b/product_sales_by_location/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..af38b8dd5 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/2.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/3.png b/product_sales_by_location/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..f27b774c8 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/3.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/4.png b/product_sales_by_location/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..9db8d03b2 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/4.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/5.png b/product_sales_by_location/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..414dd9db8 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/5.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/6.png b/product_sales_by_location/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..3734d8e28 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/6.png differ diff --git a/product_sales_by_location/static/description/assets/screenshots/hero.gif b/product_sales_by_location/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..2da3de785 Binary files /dev/null and b/product_sales_by_location/static/description/assets/screenshots/hero.gif differ diff --git a/product_sales_by_location/static/description/banner.jpg b/product_sales_by_location/static/description/banner.jpg new file mode 100644 index 000000000..461ba0132 Binary files /dev/null and b/product_sales_by_location/static/description/banner.jpg differ diff --git a/product_sales_by_location/static/description/icon.png b/product_sales_by_location/static/description/icon.png new file mode 100644 index 000000000..dc3f563ad Binary files /dev/null and b/product_sales_by_location/static/description/icon.png differ diff --git a/product_sales_by_location/static/description/index.html b/product_sales_by_location/static/description/index.html new file mode 100644 index 000000000..e7cb8e234 --- /dev/null +++ b/product_sales_by_location/static/description/index.html @@ -0,0 +1,817 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Product Sales By Location

+

+ This App Enables Users To Select A Location On A Sales Order + Line, Impacting Product Delivery, Sale Order Creation, And + Visibility In Sales Reports And The Customer Portal. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Allows users to set a Location on sale order + line in Odoo.

+
+
+
+
+
+
+ +
+
+

+ Whatever Location is selected on sale order + lines, the product will be delivered from the + selected location.

+
+
+
+
+
+
+ +
+
+

+ Delivery Orders will be created based on + selected location on sale order lines.

+
+
+
+
+
+
+ +
+
+

+ We Can See the Location in Report also.

+
+
+
+
+
+
+ +
+
+

+ We Can See the Location in Portal User + Account.

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

+ Set The Location In Sale Order Line in + Odoo.

+
+
+
+
+
+
+ +
+
+

+ Corresponding Delivery Will + Created.

+
+
+
+
+
+
+ +
+
+

+ We Can See The Deliveries In The + Delivery Smart Button.

+
+
+
+
+
+
+ +
+
+

+ Form View Of Delivery.

+
+
+
+ +
+
+
+ +
+
+

+ Validating Each Delivery.

+
+
+
+
+
+
+ +
+
+

+ We Can See The Locations In Report.

+
+
+
+
+
+
+
    +
  • + Allows users to + set a Location on sale order line in Odoo. +
  • +
  • + Delivery Orders + will be created based on selected location + on sale order lines. +
  • +
  • + + We Can See the Location in Report also. +
  • +
  • + + We Can See the Location in Portal User + Account. +
  • +
  • + + Whatever Location is selected on sale order + lines, the product will be delivered from + the selected location. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:09th April 2024 +
+

+ + Initial Commit for Product Sales By + Location.

+
+
+
+
+
+
+
+

+ 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/product_sales_by_location/views/sale_order_views.xml b/product_sales_by_location/views/sale_order_views.xml new file mode 100644 index 000000000..cc80164c8 --- /dev/null +++ b/product_sales_by_location/views/sale_order_views.xml @@ -0,0 +1,17 @@ + + + + + + sale.order.view.form.inherit.product.sales.by.location + + sale.order + + + + + + + + diff --git a/product_sales_by_location/views/sale_portal_templates.xml b/product_sales_by_location/views/sale_portal_templates.xml new file mode 100644 index 000000000..87c935841 --- /dev/null +++ b/product_sales_by_location/views/sale_portal_templates.xml @@ -0,0 +1,20 @@ + + + + +