diff --git a/product_wise_shipping_method/README.rst b/product_wise_shipping_method/README.rst new file mode 100644 index 000000000..766347234 --- /dev/null +++ b/product_wise_shipping_method/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Product Wise Shipping Method +====================================== +This module allows users to manage product wise shipping methods. + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Farhana Jahan PT @ cybrosys, 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_wise_shipping_method/__init__.py b/product_wise_shipping_method/__init__.py new file mode 100644 index 000000000..3c1444e9b --- /dev/null +++ b/product_wise_shipping_method/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU 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/product_wise_shipping_method/__manifest__.py b/product_wise_shipping_method/__manifest__.py new file mode 100644 index 000000000..942b69ee2 --- /dev/null +++ b/product_wise_shipping_method/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU 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': 'Product Wise Shipping Method', + 'version': '16.0.1.0.0', + 'category': 'Sales/Sales', + 'summary': """ Product Wise Shipping Method for sale order. """, + 'description': """ This module helps to provide shipping method easily via choosing products in order line. """, + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['base', 'sale','delivery'], + 'website': 'https://www.cybrosys.com', + 'data': [ + 'views/product_template_views.xml', + 'views/sale_order_view.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/product_wise_shipping_method/doc/RELEASE_NOTES.md b/product_wise_shipping_method/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ebe7a1776 --- /dev/null +++ b/product_wise_shipping_method/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 13.04.2023 +#### Version 16.0.1.0.0 +##### ADD +- Initial commit for Product Wise Shipping Method diff --git a/product_wise_shipping_method/models/__init__.py b/product_wise_shipping_method/models/__init__.py new file mode 100644 index 000000000..65b9df36e --- /dev/null +++ b/product_wise_shipping_method/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU 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 product_template +from . import sale_order diff --git a/product_wise_shipping_method/models/product_template.py b/product_wise_shipping_method/models/product_template.py new file mode 100644 index 000000000..21773057c --- /dev/null +++ b/product_wise_shipping_method/models/product_template.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU 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 fields, models + + +class ProductTemplate(models.Model): + """ Inherit product,so we are adding a field for defining shipping method. """ + _inherit = 'product.template' + + shipping_method_id = fields.Many2one('delivery.carrier', string='Shipping Method',help="Choose shipping method") diff --git a/product_wise_shipping_method/models/sale_order.py b/product_wise_shipping_method/models/sale_order.py new file mode 100644 index 000000000..2bb265cc0 --- /dev/null +++ b/product_wise_shipping_method/models/sale_order.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU 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 collections import defaultdict +from odoo import api, models, _ +from odoo.exceptions import UserError + + +class SaleOrder(models.Model): + """ Inherit sale,so we are getting shipping method corresponding to product""" + _inherit = 'sale.order' + + def action_confirm(self): + """Create delivery method value for sale order lines with a shipping method.""" + order_lines_with_shipping = self.order_line.filtered(lambda line: line.product_template_id.shipping_method_id) + vals_list = [{ + 'product_id': line.product_template_id.shipping_method_id.product_id.id, + 'name': line.product_template_id.shipping_method_id.name, + 'product_uom': line.product_template_id.shipping_method_id.product_id.uom_id.id, + 'price_unit': line.product_template_id.shipping_method_id.product_id.list_price, + 'order_id': self.id, + } for line in order_lines_with_shipping] + self.env['sale.order.line'].create(vals_list) + return super().action_confirm() + + def merge_similar_products(self): + """ merge similar products on order line by adding their quantity.""" + similar_products = defaultdict(lambda: {'qty': 0, 'lines_to_remove': []}) + order_line = self.env['sale.order.line'] + for line in self.order_line.sorted(): + key = (line.product_id.id, line.price_unit, line.tax_id) + similar_products[key]['qty'] += line.product_uom_qty + similar_products[key]['lines_to_remove'].append(line.id) + for key,product_info in similar_products.items(): + order_line.browse(product_info['lines_to_remove'][0]).write({'product_uom_qty': product_info['qty']}) + order_line.browse(product_info['lines_to_remove'][1:]).unlink() + + @api.model + def create(self, vals): + """ When the products are newly selected in sale order line then they are Create on sale order """ + res = super(SaleOrder, self).create(vals) + res.merge_similar_products() + return res + + def write(self, vals): + """ When the products are previously selected then Write similar products on sale order """ + res = super(SaleOrder, self).write(vals) + self.merge_similar_products() + return res + + def action_open_delivery_wizard(self): + """Restrict adding a shipping method or open the delivery carrier selection form. + if product have shipping method then get error message + if product hasn't shipping method then can open wizard""" + if any(line.product_template_id.shipping_method_id for line in self.order_line): + raise UserError('Shipping method is already applied...!!') + else: + view_id = self.env.ref('delivery.choose_delivery_carrier_view_form').id + name = _('Add a shipping method') + carrier = ( + self.with_company(self.company_id).partner_shipping_id.property_delivery_carrier_id + or self.with_company( + self.company_id).partner_shipping_id.commercial_partner_id.property_delivery_carrier_id + ) + return { + 'name': name, + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'choose.delivery.carrier', + 'view_id': view_id, + 'views': [(view_id, 'form')], + 'target': 'new', + 'context': { + 'default_order_id': self.id, + 'default_carrier_id': carrier.id, + } + } diff --git a/product_wise_shipping_method/static/description/assets/icons/chevron.png b/product_wise_shipping_method/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/chevron.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/cogs.png b/product_wise_shipping_method/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/cogs.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/consultation.png b/product_wise_shipping_method/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/consultation.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/ecom-black.png b/product_wise_shipping_method/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/ecom-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/education-black.png b/product_wise_shipping_method/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/education-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/hotel-black.png b/product_wise_shipping_method/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/hotel-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/license.png b/product_wise_shipping_method/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/license.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/lifebuoy.png b/product_wise_shipping_method/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/lifebuoy.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/manufacturing-black.png b/product_wise_shipping_method/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/pos-black.png b/product_wise_shipping_method/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/pos-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/puzzle.png b/product_wise_shipping_method/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/puzzle.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/restaurant-black.png b/product_wise_shipping_method/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/restaurant-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/service-black.png b/product_wise_shipping_method/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/service-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/trading-black.png b/product_wise_shipping_method/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/trading-black.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/training.png b/product_wise_shipping_method/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/training.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/update.png b/product_wise_shipping_method/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/update.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/user.png b/product_wise_shipping_method/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/user.png differ diff --git a/product_wise_shipping_method/static/description/assets/icons/wrench.png b/product_wise_shipping_method/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/icons/wrench.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/categories.png b/product_wise_shipping_method/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/categories.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/check-box.png b/product_wise_shipping_method/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/check-box.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/compass.png b/product_wise_shipping_method/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/compass.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/corporate.png b/product_wise_shipping_method/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/corporate.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/customer-support.png b/product_wise_shipping_method/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/customer-support.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/cybrosys-logo.png b/product_wise_shipping_method/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/cybrosys-logo.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/features.png b/product_wise_shipping_method/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/features.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/logo.png b/product_wise_shipping_method/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/logo.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/pictures.png b/product_wise_shipping_method/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/pictures.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/pie-chart.png b/product_wise_shipping_method/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/pie-chart.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/right-arrow.png b/product_wise_shipping_method/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/right-arrow.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/star.png b/product_wise_shipping_method/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/star.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/support.png b/product_wise_shipping_method/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/support.png differ diff --git a/product_wise_shipping_method/static/description/assets/misc/whatsapp.png b/product_wise_shipping_method/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/misc/whatsapp.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/1.png b/product_wise_shipping_method/static/description/assets/modules/1.png new file mode 100644 index 000000000..3415917c2 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/1.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/2.png b/product_wise_shipping_method/static/description/assets/modules/2.png new file mode 100644 index 000000000..31ed46762 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/2.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/3.png b/product_wise_shipping_method/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/3.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/4.png b/product_wise_shipping_method/static/description/assets/modules/4.png new file mode 100644 index 000000000..359d3e4d6 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/4.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/5.png b/product_wise_shipping_method/static/description/assets/modules/5.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/5.png differ diff --git a/product_wise_shipping_method/static/description/assets/modules/6.png b/product_wise_shipping_method/static/description/assets/modules/6.png new file mode 100644 index 000000000..be454ea44 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/modules/6.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots.zip b/product_wise_shipping_method/static/description/assets/screenshots.zip new file mode 100644 index 000000000..2e0f9950a Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots.zip differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 1.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 1.png new file mode 100644 index 000000000..e4e7af36f Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 1.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 2.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 2.png new file mode 100644 index 000000000..68e2b48e9 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 2.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 3.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 3.png new file mode 100644 index 000000000..c0bc2a1bc Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 3.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 4.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 4.png new file mode 100644 index 000000000..a57ee6f72 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 4.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 5.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 5.png new file mode 100644 index 000000000..2c643ed9b Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 5.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/shipping 6.png b/product_wise_shipping_method/static/description/assets/screenshots/shipping 6.png new file mode 100644 index 000000000..bc0c84447 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/shipping 6.png differ diff --git a/product_wise_shipping_method/static/description/assets/screenshots/v16-hero.gif b/product_wise_shipping_method/static/description/assets/screenshots/v16-hero.gif new file mode 100644 index 000000000..967ca0b43 Binary files /dev/null and b/product_wise_shipping_method/static/description/assets/screenshots/v16-hero.gif differ diff --git a/product_wise_shipping_method/static/description/banner.png b/product_wise_shipping_method/static/description/banner.png new file mode 100644 index 000000000..0a47f733f Binary files /dev/null and b/product_wise_shipping_method/static/description/banner.png differ diff --git a/product_wise_shipping_method/static/description/icon.png b/product_wise_shipping_method/static/description/icon.png new file mode 100644 index 000000000..5e4fee375 Binary files /dev/null and b/product_wise_shipping_method/static/description/icon.png differ diff --git a/product_wise_shipping_method/static/description/index.html b/product_wise_shipping_method/static/description/index.html new file mode 100644 index 000000000..cfcd61a2e --- /dev/null +++ b/product_wise_shipping_method/static/description/index.html @@ -0,0 +1,557 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+ +

+ Product Wise Shipping Method

+

+ This module allows users to manage product wise shipping methods on sale order.

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

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ This module helps to provide shipping method easily via choosing products in order line.When choosing products + corresponding shipping method will be displayed after we confirmed
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Community and Enterprise Support +
+
+ + + Shipping method automatically filled by Product + +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

+ Enable Delivery Method in Settings. + +

+ +
+ +
+

+ Select Shipping method in Product. + +

+ +
+ +
+

+ Choose Products in Order line. + +

+ +
+ +
+

+ Click on Confirm Button. + +

+ +
+ +
+

+ Automatically fill Shipping Method when click on Confirm Button. + +

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

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

+
+
+
+
+
+
+
+ +
+
+
diff --git a/product_wise_shipping_method/views/product_template_views.xml b/product_wise_shipping_method/views/product_template_views.xml new file mode 100644 index 000000000..fea812cb7 --- /dev/null +++ b/product_wise_shipping_method/views/product_template_views.xml @@ -0,0 +1,17 @@ + + + + + + product.template.view.form.inherit.product + product.template + + + + + + + + + + diff --git a/product_wise_shipping_method/views/sale_order_view.xml b/product_wise_shipping_method/views/sale_order_view.xml new file mode 100644 index 000000000..9f5901a29 --- /dev/null +++ b/product_wise_shipping_method/views/sale_order_view.xml @@ -0,0 +1,15 @@ + + + + + view.sale.order.inherit + sale.order + + + + + {'invisible': [('state', '=', 'draft')]} + + + +