@ -0,0 +1,51 @@ |
|||||
|
.. 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 |
||||
|
|
||||
|
Multi Product Return From Website |
||||
|
====================== |
||||
|
This module allows to create and manage sale order return from website. |
||||
|
The logged user can create multiple product return from website. |
||||
|
The Authorize persons can manage the return orders. |
||||
|
And allow the portal users can view their return orders |
||||
|
from the account portal view. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
No additional configuration required |
||||
|
|
||||
|
Company |
||||
|
------- |
||||
|
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
||||
|
|
||||
|
License |
||||
|
------- |
||||
|
GNU Affero General Public License v3.0 (AGPL v3) |
||||
|
(http://www.gnu.org/licenses/agpl-3.0-standalone.html) |
||||
|
|
||||
|
Credits |
||||
|
------- |
||||
|
Developer: (v17) Ranjith R, 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 <https://cybrosys.com/>`__ |
||||
|
|
||||
|
Further information |
||||
|
=================== |
||||
|
HTML Description: `<static/description/index.html>`__ |
@ -0,0 +1,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import controllers |
||||
|
from . import models |
||||
|
from . import wizards |
@ -0,0 +1,57 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
{ |
||||
|
'name': 'Multi Product Return From Website', |
||||
|
'version': '17.0.1.0.0', |
||||
|
'category': 'Website', |
||||
|
'summary': 'Sale order multi product return management from website', |
||||
|
'description': "Streamline your website with advanced Multi-product Return " |
||||
|
"Order Management. Easily manage returns, RMA, and order " |
||||
|
"return processes directly from your website.", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'maintainer': 'Cybrosys Techno Solutions', |
||||
|
'website': 'https://www.cybrosys.com', |
||||
|
'depends': ['website_sale', 'stock', 'sale_management'], |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'data/ir_sequence.xml', |
||||
|
'views/website_thankyou_template.xml', |
||||
|
'views/sale_order_portal_templates.xml', |
||||
|
'views/sale_return_views.xml', |
||||
|
'views/sale_order_views.xml', |
||||
|
'views/res_partner_views.xml', |
||||
|
'views/stock_picking_views.xml', |
||||
|
'report/sale_return_templates.xml', |
||||
|
'report/sale_return_reports.xml', |
||||
|
], |
||||
|
'assets': { |
||||
|
'web.assets_frontend': [ |
||||
|
'website_multi_product_return_management/static/src/js/sale_return.js', |
||||
|
], |
||||
|
}, |
||||
|
'images': ['static/description/banner.png'], |
||||
|
'license': 'AGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
'application': False, |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import website_multi_product_return_management |
||||
|
from . import portal |
@ -0,0 +1,158 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
import base64 |
||||
|
from collections import OrderedDict |
||||
|
from odoo import http |
||||
|
from odoo.exceptions import AccessError, MissingError |
||||
|
from odoo.http import request |
||||
|
from odoo.tools import image_process |
||||
|
from odoo.tools.translate import _ |
||||
|
from odoo.addons.portal.controllers.portal import CustomerPortal |
||||
|
from odoo.addons.web.controllers.main import Binary |
||||
|
|
||||
|
|
||||
|
class ReturnCustomerPortal(CustomerPortal): |
||||
|
"""Customized Customer Portal for managing sale returns.""" |
||||
|
|
||||
|
def _prepare_home_portal_values(self, counters): |
||||
|
"""Prepare values for the home portal.""" |
||||
|
values = super()._prepare_home_portal_values(counters) |
||||
|
partner = request.env.user.partner_id |
||||
|
if 'return_count' in counters: |
||||
|
if request.env.user.has_group('base.group_portal'): |
||||
|
values['return_count'] = request.env[ |
||||
|
'sale.return'].search_count( |
||||
|
[('state', 'in', ['draft', 'confirm', 'done', 'cancel']), |
||||
|
('partner_id', '=', partner.id)]) |
||||
|
elif request.env.user.has_group('base.group_system'): |
||||
|
values['return_count'] = request.env[ |
||||
|
'sale.return'].search_count( |
||||
|
[('state', 'in', ['draft', 'confirm', 'done', 'cancel'])]) |
||||
|
else: |
||||
|
values['return_count'] = request.env[ |
||||
|
'sale.return'].search_count( |
||||
|
['|', ('partner_id', '=', partner.id), |
||||
|
('user_id', '=', request.env.user.id)]) |
||||
|
return values |
||||
|
|
||||
|
@http.route(['/my/return_orders', '/my/return_orders/page/<int:page>'], |
||||
|
type='http', auth="user", website=True) |
||||
|
def portal_my_sale_return(self, page=1, date_begin=None, date_end=None, |
||||
|
sortby=None, filterby=None, **kw): |
||||
|
"""Handle requests for displaying sale return orders in the portal.""" |
||||
|
values = self._prepare_portal_layout_values() |
||||
|
sale_return = request.env['sale.return'] |
||||
|
partner = request.env.user.partner_id |
||||
|
if request.env.user.has_group('base.group_portal'): |
||||
|
domain = [ |
||||
|
('partner_id', '=', partner.id) |
||||
|
] |
||||
|
elif request.env.user.has_group('base.group_system'): |
||||
|
domain = [] |
||||
|
else: |
||||
|
domain = ['|', ('partner_id', '=', partner.id), |
||||
|
('user_id', '=', request.env.user.id)] |
||||
|
searchbar_sortings = { |
||||
|
'date': {'label': _('Newest'), 'order': 'create_date desc'}, |
||||
|
'name': {'label': _('Name'), 'order': 'name'}, |
||||
|
'sale': {'label': _('Sale Order'), 'order': 'sale_order'}, |
||||
|
} |
||||
|
if not sortby: |
||||
|
sortby = 'date' |
||||
|
order = searchbar_sortings[sortby]['order'] |
||||
|
if date_begin and date_end: |
||||
|
domain += [('create_date', '>', date_begin), |
||||
|
('create_date', '<=', date_end)] |
||||
|
searchbar_filters = { |
||||
|
'all': {'label': _('All'), 'domain': [ |
||||
|
('state', 'in', ['draft', 'confirm', 'done', 'cancel'])]}, |
||||
|
'confirm': {'label': _('Confirmed'), |
||||
|
'domain': [('state', '=', 'confirm')]}, |
||||
|
'cancel': {'label': _('Cancelled'), |
||||
|
'domain': [('state', '=', 'cancel')]}, |
||||
|
'done': {'label': _('Done'), 'domain': [('state', '=', 'done')]}, |
||||
|
} |
||||
|
if not filterby: |
||||
|
filterby = 'all' |
||||
|
domain += searchbar_filters[filterby]['domain'] |
||||
|
return_count = sale_return.sudo().search_count(domain) |
||||
|
pager = request.website.pager( |
||||
|
url="/my/return_orders", |
||||
|
url_args={'date_begin': date_begin, 'date_end': date_end, |
||||
|
'sortby': sortby}, |
||||
|
total=return_count, |
||||
|
page=page, |
||||
|
step=self._items_per_page |
||||
|
) |
||||
|
orders = sale_return.sudo().search(domain, order=order, |
||||
|
limit=self._items_per_page, |
||||
|
offset=pager['offset']) |
||||
|
request.session['my_return_history'] = orders.ids[:100] |
||||
|
values.update({ |
||||
|
'date': date_begin, |
||||
|
'orders': orders.sudo(), |
||||
|
'page_name': 'Sale_Return', |
||||
|
'default_url': '/my/return_orders', |
||||
|
'pager': pager, |
||||
|
'searchbar_filters': OrderedDict(sorted(searchbar_filters.items())), |
||||
|
'searchbar_sortings': searchbar_sortings, |
||||
|
'sortby': sortby, |
||||
|
}) |
||||
|
return request.render( |
||||
|
"website_multi_product_return_management.portal_my_returns", values) |
||||
|
|
||||
|
@http.route(['/my/return_orders/<int:order_id>'], type='http', |
||||
|
auth="public", website=True) |
||||
|
def portal_my_return_detail(self, order_id=None, access_token=None, |
||||
|
report_type=None, download=False, **kw): |
||||
|
"""Handle requests for displaying details of a specific sale |
||||
|
return order.""" |
||||
|
try: |
||||
|
order_sudo = self._document_check_access('sale.return', order_id, |
||||
|
access_token) |
||||
|
except (AccessError, MissingError): |
||||
|
return request.redirect('/my') |
||||
|
if report_type in ('html', 'pdf', 'text'): |
||||
|
return self._show_report( |
||||
|
model=order_sudo, report_type=report_type, |
||||
|
report_ref='website_multi_product_return_management.' |
||||
|
'report_sale_returns', |
||||
|
download=download) |
||||
|
values = self._sale_return_get_page_view_values(order_sudo, |
||||
|
access_token, **kw) |
||||
|
return request.render( |
||||
|
"website_multi_product_return_management.portal_sale_return_page", |
||||
|
values) |
||||
|
|
||||
|
def _sale_return_get_page_view_values(self, order, access_token, **kwargs): |
||||
|
"""Get values for rendering the sale return page view.""" |
||||
|
def resize_to_48(b64source): |
||||
|
"""Resizing image as needed""" |
||||
|
if not b64source: |
||||
|
b64source = base64.b64encode(Binary.placeholder()) |
||||
|
return image_process(b64source, size=(48, 48)) |
||||
|
values = { |
||||
|
'orders': order, |
||||
|
'resize_to_48': resize_to_48, |
||||
|
} |
||||
|
return self._get_page_view_values(order, access_token, values, |
||||
|
'my_return_history', False, **kwargs) |
@ -0,0 +1,73 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from datetime import datetime |
||||
|
from odoo import http |
||||
|
from odoo.http import request |
||||
|
|
||||
|
|
||||
|
class CustomerRegistration(http.Controller): |
||||
|
@http.route('/sale_return', type='json', csrf=False, auth="public", |
||||
|
website=True) |
||||
|
def sale_return(self, **kwargs, ): |
||||
|
"""Controller to create return order""" |
||||
|
if kwargs.get('vals'): |
||||
|
lines = [] |
||||
|
so_id = False |
||||
|
for line in kwargs.get('vals'): |
||||
|
so_id = request.env['sale.order'].sudo().browse(int(line['order_id'])) |
||||
|
qty = int(line['quantity']) |
||||
|
d_qty = int(line['deli_qty']) |
||||
|
reason = line['reason'] |
||||
|
if qty > 0: |
||||
|
lines.append((0, 0, {'product_id': line['product_id'], |
||||
|
'received_qty': qty, |
||||
|
'quantity': d_qty, |
||||
|
'reason': reason |
||||
|
})) |
||||
|
if so_id: |
||||
|
values = { |
||||
|
'partner_id': so_id.partner_id.id, |
||||
|
'sale_order_id': so_id.id, |
||||
|
'user_id': request.env.uid, |
||||
|
'create_date': datetime.now(), |
||||
|
'return_line_ids': lines |
||||
|
} |
||||
|
stock_picks = request.env['stock.picking'].sudo().search( |
||||
|
[('origin', '=', so_id.name)]) |
||||
|
moves = stock_picks.mapped( |
||||
|
'move_ids_without_package').sudo().filtered( |
||||
|
lambda p: p.product_id.id == line['product_id']) |
||||
|
if moves: |
||||
|
moves = moves.sorted('product_uom_qty', reverse=True) |
||||
|
values.update({'state': 'draft'}) |
||||
|
ret_order = request.env['sale.return'].sudo().create(values) |
||||
|
moves[0].picking_id.return_order_id = ret_order.id |
||||
|
moves[0].picking_id.return_order_picking = False |
||||
|
return True |
||||
|
return False |
||||
|
|
||||
|
@http.route('/my/request-thank-you', website=True, page=True, |
||||
|
auth='public', csrf=False) |
||||
|
def maintenance_request_thanks(self): |
||||
|
return request.render( |
||||
|
'website_multi_product_return_management.' |
||||
|
'customers_request_thank_page') |
@ -0,0 +1,12 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<odoo> |
||||
|
<data> |
||||
|
<record id="sale_return_ir_sequence" model="ir.sequence"> |
||||
|
<field name="name">Sale Return</field> |
||||
|
<field name="code">sale.return</field> |
||||
|
<field name="prefix">RET</field> |
||||
|
<field name="padding">5</field> |
||||
|
<field name="company_id" eval="False"/> |
||||
|
</record> |
||||
|
</data> |
||||
|
</odoo> |
@ -0,0 +1,7 @@ |
|||||
|
|
||||
|
## Module <website_multi_product_return_management> |
||||
|
|
||||
|
#### 23.02.2024 |
||||
|
#### Version 17.0.1.0.0 |
||||
|
#### ADD |
||||
|
- Initial Commit for Multi Product Return From Website |
@ -0,0 +1,26 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import res_partner |
||||
|
from . import sale_order |
||||
|
from . import sale_order_line |
||||
|
from . import sale_return |
||||
|
from . import stock_picking |
@ -0,0 +1,60 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class ResPartner(models.Model): |
||||
|
""" |
||||
|
Extends the base 'res.partner' model to include additional fields |
||||
|
and functionality. |
||||
|
""" |
||||
|
_inherit = 'res.partner' |
||||
|
|
||||
|
return_order_count = fields.Integer( |
||||
|
compute="_compute_return_order_count", string='Return Orders', |
||||
|
help="Count of order returned by the customer") |
||||
|
|
||||
|
def _compute_return_order_count(self): |
||||
|
"""Function to calculate the return count""" |
||||
|
all_partners = self.with_context(active_test=False).sudo().search( |
||||
|
[('id', 'child_of', self.ids)]) |
||||
|
all_partners.read(['parent_id']) |
||||
|
sale_return_groups = self.env['sale.return'].sudo().read_group( |
||||
|
domain=[('partner_id', 'in', all_partners.ids)], |
||||
|
fields=['partner_id'], groupby=['partner_id']) |
||||
|
for partner in self: |
||||
|
partner.return_order_count = int( |
||||
|
sale_return_groups[0]['partner_id_count']) |
||||
|
|
||||
|
def action_open_returns(self): |
||||
|
"""This function returns an action that displays the sale return |
||||
|
orders from partner.""" |
||||
|
action = self.env['ir.actions.act_window']._for_xml_id( |
||||
|
'website_multi_product_return_management.sale_return_action') |
||||
|
domain = [] |
||||
|
if self.is_company: |
||||
|
domain.append(('partner_id.commercial_partner_id.id', '=', self.id)) |
||||
|
else: |
||||
|
domain.append(('partner_id.id', '=', self.id)) |
||||
|
action['domain'] = domain |
||||
|
action['context'] = {'search_default_customer': 1} |
||||
|
return action |
@ -0,0 +1,57 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class SaleOrder(models.Model): |
||||
|
_inherit = 'sale.order' |
||||
|
|
||||
|
return_order_count = fields.Integer( |
||||
|
compute="_compute_return_order_count", string='Return Orders', |
||||
|
help="Count of product returned on this order") |
||||
|
|
||||
|
def _compute_return_order_count(self): |
||||
|
"""method to compute return count""" |
||||
|
sale_return_groups = self.env['sale.return'].sudo().read_group( |
||||
|
domain=[('sale_order_id', 'in', self.ids)], |
||||
|
fields=['sale_order_id'], groupby=['sale_order_id']) |
||||
|
orders = self.sudo().browse() |
||||
|
for group in sale_return_groups: |
||||
|
sale_order = self.sudo().browse(group['sale_order_id'][0]) |
||||
|
while sale_order: |
||||
|
if sale_order in self: |
||||
|
print(group) |
||||
|
sale_order.return_order_count = 0 |
||||
|
sale_order.return_order_count += group['sale_order_id_count'] |
||||
|
orders |= sale_order |
||||
|
sale_order = False |
||||
|
(self - orders).return_order_count = 0 |
||||
|
|
||||
|
def action_open_returns(self): |
||||
|
"""This function returns an action that displays the sale return |
||||
|
orders from sale order""" |
||||
|
action = self.env['ir.actions.act_window']._for_xml_id( |
||||
|
'website_multi_product_return_management.sale_return_action') |
||||
|
domain = [('sale_order_id', '=', self.id)] |
||||
|
action['domain'] = domain |
||||
|
action['context'] = {'search_default_order': 1} |
||||
|
return action |
@ -0,0 +1,31 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class SaleOrderLine(models.Model): |
||||
|
"""Extend the Sale Order line model to include a new field.""" |
||||
|
_inherit = 'sale.order.line' |
||||
|
|
||||
|
return_order_line_count = fields.Integer( |
||||
|
string='Return Orders', default=0, |
||||
|
help="Count of product returned in this order line") |
@ -0,0 +1,321 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import api, fields, models |
||||
|
|
||||
|
|
||||
|
class SaleReturn(models.Model): |
||||
|
"""Model for managing return orders.""" |
||||
|
_name = 'sale.return' |
||||
|
_inherit = ['portal.mixin', 'mail.thread', 'mail.activity.mixin'] |
||||
|
_order = "name" |
||||
|
_description = "Return Order" |
||||
|
|
||||
|
@api.model |
||||
|
def _get_default_name(self): |
||||
|
"""Get the default name for a new return order.""" |
||||
|
return self.env['ir.sequence'].get('sale.return') |
||||
|
|
||||
|
active = fields.Boolean(string='Active', default=True, |
||||
|
help="Indicates if the return order is active.") |
||||
|
name = fields.Char(string="Name", default=_get_default_name, |
||||
|
help="Name of the return order.") |
||||
|
sale_order_id = fields.Many2one( |
||||
|
'sale.order', string="Sale Order", |
||||
|
required=True, |
||||
|
help="Reference to the original sale order.") |
||||
|
partner_id = fields.Many2one( |
||||
|
'res.partner', string="Customer", |
||||
|
help="Customer associated with the return order.") |
||||
|
user_id = fields.Many2one('res.users', string="Responsible", |
||||
|
default=lambda self: self.env.user, |
||||
|
help="User responsible for the return order.") |
||||
|
create_date = fields.Datetime( |
||||
|
string="Create Date", |
||||
|
help="Date when the return order was created.") |
||||
|
stock_picking_ids = fields.One2many( |
||||
|
'stock.picking', 'return_order_pick_id', |
||||
|
domain="[('return_order_id','=',False)]", |
||||
|
string="Return Picking", |
||||
|
help="Shows the return picking of the corresponding return order.") |
||||
|
picking_count = fields.Integer(compute="_compute_picking_count", |
||||
|
string='Picking Order', copy=False, |
||||
|
default=0, store=True, |
||||
|
help="Count of associated picking orders.") |
||||
|
delivery_count = fields.Integer(compute="_compute_delivery", |
||||
|
string='Delivery Order', copy=False, |
||||
|
default=0, store=True, |
||||
|
help="Count of associated delivery orders.") |
||||
|
state = fields.Selection( |
||||
|
[('draft', 'Draft'), ('confirm', 'Confirm'), ('done', 'Done'), |
||||
|
('cancel', 'Canceled')], string='Status', readonly=True, |
||||
|
default='draft', help="Current state of the return order.") |
||||
|
source_pick_ids = fields.One2many( |
||||
|
'stock.picking', 'return_order_id', |
||||
|
string="Source Delivery", |
||||
|
domain="[('return_order_pick_id','=',False)]", |
||||
|
help="Shows the delivery orders of the corresponding return order.") |
||||
|
note = fields.Text( |
||||
|
string="Note", |
||||
|
help="Additional notes or comments for the return order.") |
||||
|
|
||||
|
return_line_ids = fields.One2many( |
||||
|
'return.order.line', 'order_id', |
||||
|
string="Return Lines", |
||||
|
help="Lines associated with the return order.") |
||||
|
|
||||
|
def return_confirm(self): |
||||
|
"""Confirm the sale return""" |
||||
|
if not self.source_pick_ids: |
||||
|
stock_picks = self.env['stock.picking'].sudo().search( |
||||
|
[('origin', '=', self.sale_order_id.name)]) |
||||
|
moves = stock_picks.mapped( |
||||
|
'move_ids_without_package').sudo().filtered( |
||||
|
lambda p: p.product_id.id in self.return_line_ids.mapped( |
||||
|
'product_id').ids) |
||||
|
else: |
||||
|
moves = self.source_pick_ids.mapped( |
||||
|
'move_ids_without_package').sudo().filtered( |
||||
|
lambda p: p.product_id.id in self.return_line_ids.mapped( |
||||
|
'product_id').ids) |
||||
|
|
||||
|
if moves: |
||||
|
moves = moves.sorted('product_uom_qty', reverse=True) |
||||
|
pick = moves[0].picking_id |
||||
|
vals = {'picking_id': pick.id} |
||||
|
return_pick_wizard = self.env['stock.return.picking'].sudo().create( |
||||
|
vals) |
||||
|
return_pick_wizard._compute_moves_locations() |
||||
|
return_pick_wizard.product_return_moves.unlink() |
||||
|
lines = [] |
||||
|
reason = '' |
||||
|
for line in self.return_line_ids: |
||||
|
so_line_id = self.sale_order_id.order_line.filtered( |
||||
|
lambda m: m.product_template_id == |
||||
|
line.product_id.product_tmpl_id) |
||||
|
so_line_id.return_order_line_count = line.received_qty |
||||
|
move = moves.filtered(lambda m: m.product_id == line.product_id) |
||||
|
lines.append( |
||||
|
{'product_id': line.product_id.id, |
||||
|
"quantity": line.received_qty, |
||||
|
'move_id': move.id, 'to_refund': line.to_refund}) |
||||
|
reason = reason + '\n' + line.reason |
||||
|
lines = self.env['stock.return.picking.line'].create(lines) |
||||
|
return_pick_wizard.write({ |
||||
|
'product_return_moves': [(6, 0, lines.ids)] |
||||
|
}) |
||||
|
return_pick = return_pick_wizard._create_returns() |
||||
|
if return_pick: |
||||
|
return_pick = self.env['stock.picking'].sudo().browse( |
||||
|
return_pick[0]) |
||||
|
return_pick.update({'note': reason}) |
||||
|
return_pick.write( |
||||
|
{'return_order_id': False, 'return_order_pick_id': self.id, |
||||
|
'return_order_picking': True}) |
||||
|
self.write({'state': 'confirm'}) |
||||
|
|
||||
|
def return_cancel(self): |
||||
|
"""Cancel the return""" |
||||
|
self.write({'state': 'cancel'}) |
||||
|
if self.stock_picking_ids: |
||||
|
for rec in self.stock_picking_ids.sudo().filtered( |
||||
|
lambda s: s.state not in ['done', 'cancel']): |
||||
|
rec.action_cancel() |
||||
|
|
||||
|
def _get_report_base_filename(self): |
||||
|
"""Get the base filename for the return order report.""" |
||||
|
self.ensure_one() |
||||
|
return 'Sale Return - %s' % (self.name) |
||||
|
|
||||
|
def _compute_access_url(self): |
||||
|
"""Compute the access URL for the return order.""" |
||||
|
super(SaleReturn, self)._compute_access_url() |
||||
|
for order in self: |
||||
|
order.access_url = '/my/return_orders/%s' % order.id |
||||
|
|
||||
|
@api.depends('stock_picking_ids', 'state') |
||||
|
def _compute_delivery(self): |
||||
|
"""Function to compute picking and delivery counts""" |
||||
|
for rec in self: |
||||
|
rec.delivery_count = 0 |
||||
|
rec.picking_count = 0 |
||||
|
if rec.source_pick_ids: |
||||
|
rec.delivery_count = len(rec.source_pick_ids) |
||||
|
else: |
||||
|
rec.delivery_count = self.env[ |
||||
|
'stock.picking'].sudo().search_count( |
||||
|
[('return_order_id', 'in', self.ids), |
||||
|
('return_order_picking', '=', False)]) |
||||
|
if rec.stock_picking_ids: |
||||
|
rec.picking_count = len(rec.stock_picking_ids) |
||||
|
else: |
||||
|
rec.picking_count = self.env[ |
||||
|
'stock.picking'].sudo().search_count( |
||||
|
[('return_order_pick_id', 'in', self.ids), |
||||
|
('return_order_picking', '=', True)]) |
||||
|
|
||||
|
def action_view_picking(self): |
||||
|
"""Function to view the stock picking transfers""" |
||||
|
action = self.env["ir.actions.actions"]._for_xml_id( |
||||
|
"stock.action_picking_tree_all") |
||||
|
|
||||
|
pickings = self.mapped('stock_picking_ids') |
||||
|
if not self.stock_picking_ids: |
||||
|
pickings = self.env['stock.picking'].sudo().search( |
||||
|
[('return_order_pick_id', '=', self.id), |
||||
|
('return_order_picking', '=', True)]) |
||||
|
if len(pickings) > 1: |
||||
|
action['domain'] = [('id', 'in', pickings.ids)] |
||||
|
elif pickings: |
||||
|
form_view = [(self.env.ref('stock.view_picking_form').id, 'form')] |
||||
|
if 'views' in action: |
||||
|
action['views'] = form_view + [(state, view) for state, view in |
||||
|
action['views'] if |
||||
|
view != 'form'] |
||||
|
else: |
||||
|
action['views'] = form_view |
||||
|
action['res_id'] = pickings.id |
||||
|
# Prepare the context. |
||||
|
picking_id = pickings.sudo().filtered( |
||||
|
lambda l: l.picking_type_id.code == 'outgoing') |
||||
|
if picking_id: |
||||
|
picking_id = picking_id[0] |
||||
|
else: |
||||
|
picking_id = pickings[0] |
||||
|
action['context'] = dict( |
||||
|
self._context, |
||||
|
default_partner_id=self.partner_id.id, |
||||
|
default_picking_type_id=picking_id.picking_type_id.id) |
||||
|
return action |
||||
|
|
||||
|
def action_view_delivery(self): |
||||
|
"""Function to view the delivery transfers""" |
||||
|
action = self.env["ir.actions.actions"]._for_xml_id( |
||||
|
"stock.action_picking_tree_all") |
||||
|
|
||||
|
pickings = self.mapped('source_pick_ids') |
||||
|
if not self.source_pick_ids: |
||||
|
pickings = self.env['stock.picking'].sudo().search( |
||||
|
[('return_order_id', '=', self.id), |
||||
|
('return_order_picking', '=', False)]) |
||||
|
if len(pickings) > 1: |
||||
|
action['domain'] = [('id', 'in', pickings.ids)] |
||||
|
elif pickings: |
||||
|
form_view = [(self.env.ref('stock.view_picking_form').id, 'form')] |
||||
|
if 'views' in action: |
||||
|
action['views'] = form_view + [(state, view) for state, view in |
||||
|
action['views'] if |
||||
|
view != 'form'] |
||||
|
else: |
||||
|
action['views'] = form_view |
||||
|
action['res_id'] = pickings.id |
||||
|
# Prepare the context. |
||||
|
picking_id = pickings.filtered( |
||||
|
lambda l: l.picking_type_id.code == 'outgoing') |
||||
|
if picking_id: |
||||
|
picking_id = picking_id[0] |
||||
|
else: |
||||
|
picking_id = pickings[0] |
||||
|
action['context'] = dict( |
||||
|
self._context, |
||||
|
default_partner_id=self.partner_id.id, |
||||
|
default_picking_type_id=picking_id.picking_type_id.id) |
||||
|
return action |
||||
|
|
||||
|
@api.onchange('sale_order_id', 'source_pick_ids') |
||||
|
def onchange_sale_order_id(self): |
||||
|
"""All the fields are updated according to the sale order""" |
||||
|
delivery = None |
||||
|
if self.sale_order_id: |
||||
|
self.partner_id = self.sale_order_id.partner_id |
||||
|
|
||||
|
delivery = self.env['stock.picking'].sudo().search( |
||||
|
[('origin', '=', self.sale_order_id.name)]) |
||||
|
if self.source_pick_ids: |
||||
|
delivery = self.source_pick_ids |
||||
|
if delivery: |
||||
|
product_ids = delivery.move_ids_without_package.mapped( |
||||
|
'product_id').ids |
||||
|
delivery = delivery.ids |
||||
|
else: |
||||
|
product_ids = self.sale_order_id.order_line.mapped('product_id').ids |
||||
|
|
||||
|
return {'domain': {'source_pick_ids': [('id', 'in', delivery)], |
||||
|
'product_id': [('id', 'in', product_ids)]}} |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def onchange_product_id(self): |
||||
|
"""Handle changes in the product ID field. and find received quantity""" |
||||
|
if self.product_id and self.source_pick_ids: |
||||
|
moves = self.source_pick_ids.mapped( |
||||
|
'move_ids_without_package').sudo().filtered( |
||||
|
lambda p: p.product_id == self.product_id) |
||||
|
if moves: |
||||
|
self.received_qty = sum(moves.mapped('quantity_done')) |
||||
|
|
||||
|
|
||||
|
class ReturnOrderLine(models.Model): |
||||
|
_name = 'return.order.line' |
||||
|
_description = "Return Products Details" |
||||
|
|
||||
|
order_id = fields.Many2one( |
||||
|
"sale.return", string="Order", |
||||
|
help="Reference to the associated sale return order.") |
||||
|
product_id = fields.Many2one( |
||||
|
'product.product', string="Product Variant", |
||||
|
required=True, |
||||
|
help="Defines the product variant that needs to be returned.") |
||||
|
product_tmpl_id = fields.Many2one('product.template', |
||||
|
related="product_id.product_tmpl_id", |
||||
|
store=True, string="Product") |
||||
|
quantity = fields.Float( |
||||
|
string="Delivered Quantity", store=True, |
||||
|
help="Quantity originally delivered in the associated sale order.") |
||||
|
received_qty = fields.Float( |
||||
|
string="Received Quantity", |
||||
|
help="Quantity received for the return order.") |
||||
|
reason = fields.Text( |
||||
|
"Reason", help="Reason for returning the product.") |
||||
|
to_refund = fields.Boolean( |
||||
|
string='Update SO/PO Quantity', |
||||
|
help='Trigger a decrease of the delivered/received quantity in the' |
||||
|
' associated Sale Order/Purchase Order.') |
||||
|
sale_order_id = fields.Many2one( |
||||
|
"sale.order", string="Sale Order", |
||||
|
related="order_id.sale_order_id", |
||||
|
help="Reference to the associated sale order.") |
||||
|
|
||||
|
@api.onchange('product_id') |
||||
|
def onchange_product_id(self): |
||||
|
""" setting up domain for products as per the products in the |
||||
|
vendor price list""" |
||||
|
self.ensure_one() |
||||
|
if self._context.get('order_id'): |
||||
|
order_id = self.env['sale.order'].browse( |
||||
|
self._context.get('order_id')) |
||||
|
products = order_id.order_line.mapped('product_id').ids |
||||
|
if self.product_id: |
||||
|
qty = sum( |
||||
|
order_id.order_line.filtered( |
||||
|
lambda p: p.product_id == self.product_id).mapped( |
||||
|
'qty_delivered')) |
||||
|
self.quantity = qty |
||||
|
return {'domain': {'product_id': [('id', 'in', products)]}} |
@ -0,0 +1,52 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import fields, models |
||||
|
|
||||
|
|
||||
|
class StockPicking(models.Model): |
||||
|
"""Extend the stock.picking model to include return order information.""" |
||||
|
|
||||
|
_inherit = 'stock.picking' |
||||
|
|
||||
|
return_order_id = fields.Many2one( |
||||
|
'sale.return', string='Return Order', |
||||
|
help="Shows the return order of the current transfer.") |
||||
|
return_order_pick_id = fields.Many2one( |
||||
|
'sale.return', |
||||
|
string='Return Order Pick', |
||||
|
help="Shows the return order picking of the current return order.") |
||||
|
return_order_picking = fields.Boolean( |
||||
|
string='Return Order Picking', |
||||
|
help="Helps to identify delivery and return picking. If true, the " |
||||
|
"transfer is a return picking; else, it's a delivery.") |
||||
|
|
||||
|
def button_validate(self): |
||||
|
"""Override the button_validate method to update return order state.""" |
||||
|
res = super(StockPicking, self).button_validate() |
||||
|
for rec in self: |
||||
|
if rec.return_order_pick_id: |
||||
|
if any(line.state != 'done' for line in |
||||
|
rec.return_order_pick_id.stock_picking_ids): |
||||
|
return res |
||||
|
else: |
||||
|
rec.return_order_pick_id.write({'state': 'done'}) |
||||
|
return res |
@ -0,0 +1,14 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Define a report action for the Sale Return report --> |
||||
|
<record id="report_sale_returns" model="ir.actions.report"> |
||||
|
<field name="name">Sale Return</field> |
||||
|
<field name="model">sale.return</field> |
||||
|
<field name="report_type">qweb-pdf</field> |
||||
|
<field name="report_name">website_multi_product_return_management.report_salereturn</field> |
||||
|
<field name="report_file">website_multi_product_return_management.report_salereturn</field> |
||||
|
<field name="print_report_name">'Sale Retun - %s' % object.name</field> |
||||
|
<field name="binding_model_id" ref="model_sale_return"/> |
||||
|
<field name="binding_type">report</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,89 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Define a report action for the Sale Return report --> |
||||
|
<record id="report_sale_returns" model="ir.actions.report"> |
||||
|
<field name="name">Sale Return</field> |
||||
|
<field name="model">sale.return</field> |
||||
|
<field name="report_type">qweb-pdf</field> |
||||
|
<field name="report_name">website_multi_product_return_management.report_salereturn</field> |
||||
|
<field name="report_file">website_multi_product_return_management.report_salereturn</field> |
||||
|
<field name="print_report_name">'Sale Retun - %s' % object.name</field> |
||||
|
<field name="binding_model_id" ref="model_sale_return"/> |
||||
|
<field name="binding_type">report</field> |
||||
|
</record> |
||||
|
<!-- Define a template for the Sale Return report --> |
||||
|
<template id="report_salereturn"> |
||||
|
<t t-call="web.html_container"> |
||||
|
<t t-foreach="docs" t-as="doc"> |
||||
|
<t t-call="website_multi_product_return_management.report_sale_return" |
||||
|
t-lang="doc.partner_id.lang"/> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
<!-- Define the structure of the Sale Return report --> |
||||
|
<template id="report_sale_return"> |
||||
|
<t t-call="web.external_layout"> |
||||
|
<t t-set="doc" |
||||
|
t-value="doc.with_context(lang=doc.partner_id.lang)"/> |
||||
|
<div class="page"> |
||||
|
<div class="oe_structure"/> |
||||
|
<h2 class="mt16"> |
||||
|
<span>Return Order #</span> |
||||
|
<span t-field="doc.name"/> |
||||
|
</h2> |
||||
|
<div class="row mt32 mb32" id="informations"> |
||||
|
<div t-if="doc.partner_id" |
||||
|
class="col-auto col-3 mw-100 mb-2"> |
||||
|
<strong>Customer:</strong> |
||||
|
<p class="m-0" t-field="doc.partner_id"/> |
||||
|
</div> |
||||
|
<div t-if="doc.sale_order_id" |
||||
|
class="col-auto col-3 mw-100 mb-2"> |
||||
|
<strong>Sale Order:</strong> |
||||
|
<p class="m-0" t-field="doc.sale_order_id"/> |
||||
|
</div> |
||||
|
<div t-if="doc.create_date" |
||||
|
class="col-auto col-3 mw-100 mb-2"> |
||||
|
<strong>Creation Date:</strong> |
||||
|
<p class="m-0" t-field="doc.create_date" |
||||
|
t-options='{"widget": "date"}'/> |
||||
|
</div> |
||||
|
<div t-if="doc.user_id" |
||||
|
class="col-auto col-3 mw-100 mb-2" |
||||
|
name="expiration_date"> |
||||
|
<strong>Responsible:</strong> |
||||
|
<p class="m-0" t-field="doc.user_id"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<table class="table table-sm o_main_table"> |
||||
|
<!-- In case we want to repeat the header, remove "display: table-row-group" --> |
||||
|
<thead style="display: table-row-group"> |
||||
|
<tr> |
||||
|
<th name="th_description" class="text-left"> |
||||
|
Product |
||||
|
</th> |
||||
|
<th name="th_quantity" class="text-left">Quantity |
||||
|
</th> |
||||
|
<th name="th_quantity" class="text-left">Reason</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody class="sale_tbody"> |
||||
|
<tr t-foreach="doc.return_line_ids" t-as="line" |
||||
|
t-att-class="'bg-200 font-weight-bold'"> |
||||
|
<td name="td_product"> |
||||
|
<span t-field="line.product_id"/> |
||||
|
</td> |
||||
|
<td name="td_quantity" class="text-left"> |
||||
|
<span t-esc="line.received_qty"/> |
||||
|
<span t-field="line.product_id.uom_id"/> |
||||
|
</td> |
||||
|
<td name="td_quantity" class="text-left"> |
||||
|
<span t-field="line.reason"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</div> |
||||
|
</t> |
||||
|
</template> |
||||
|
</odoo> |
|
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 164 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 383 KiB |
After Width: | Height: | Size: 201 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 228 KiB |
After Width: | Height: | Size: 228 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 153 KiB |
After Width: | Height: | Size: 148 KiB |
After Width: | Height: | Size: 149 KiB |
After Width: | Height: | Size: 157 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 117 KiB |
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 13 KiB |
@ -0,0 +1,970 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<title>Odoo App 3 Index</title> |
||||
|
<!-- Bootstrap CSS --> |
||||
|
<link rel="stylesheet" |
||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" |
||||
|
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" |
||||
|
crossorigin="anonymous"> |
||||
|
<link rel="stylesheet" |
||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> |
||||
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" |
||||
|
rel="stylesheet"> |
||||
|
</head> |
||||
|
<body> |
||||
|
<section> |
||||
|
<div class="container" |
||||
|
style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" |
||||
|
style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> |
||||
|
<div class="my-3"> |
||||
|
<img src="assets/misc/Cybrosys R.png" |
||||
|
style="width:auto !important; height:40px !important"> |
||||
|
</div> |
||||
|
<div class="my-3 d-flex align-items-center"> |
||||
|
<div class="text-center" |
||||
|
style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> |
||||
|
Community |
||||
|
</div> |
||||
|
<div class="text-center" |
||||
|
style="background-color:#875A7B !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important;min-width: 120px !important;"> |
||||
|
Enterprise |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" |
||||
|
style="margin: 80px 0px !important;"> |
||||
|
<h1 style="font-size: 2.8rem;font-weight: 700; color: |
||||
|
#1A202C;"> |
||||
|
Multi Product Return From Website</h1> |
||||
|
<p class="my-3 mb-4" |
||||
|
style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> |
||||
|
Manage Sale Order Return From Website. |
||||
|
</p> |
||||
|
<div style="width: 80%; margin-top: 3rem;"> |
||||
|
<img src="assets/screenshots/hero.gif" |
||||
|
class="img-responsive" width="100%" height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5 mb-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#714b67 !important"> |
||||
|
Key Highlights |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="row py-4"> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Create Return Orders From Website</p> |
||||
|
<p class="m-0" style="color:#718096">Customers can |
||||
|
create return order from Portal/My |
||||
|
Account.Customer |
||||
|
can go to order and click "Return" button to |
||||
|
return item which will generate return |
||||
|
order in backend |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Portal Return Order View</p> |
||||
|
<p class="m-0" style="color:#718096">Customers can |
||||
|
view list of return orders from My Account. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0;"> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Link Return With Sale Order</p> |
||||
|
<p class="m-0" style="color:#718096">Easily switch |
||||
|
the return orders from sale order by clicking |
||||
|
the |
||||
|
return smart button in the sale order. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0; "> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Link Return Order With Partner</p> |
||||
|
<p class="m-0" style="color:#718096"> We can see the |
||||
|
list of return related to a partner from the |
||||
|
partner form view and easily switch to return |
||||
|
order by clicking Return Count smart |
||||
|
button. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 col-sm-12 p-3"> |
||||
|
<div class="d-flex h-100" style="padding: 30px;border-radius: 12px; |
||||
|
background: #FFF; |
||||
|
box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> |
||||
|
<div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; |
||||
|
display: flex; justify-content: center; align-items: center; |
||||
|
margin-right: 10px; flex-shrink: 0; "> |
||||
|
<i class="fa-solid fa-star " |
||||
|
style="color: #fff;font-size:14px;"></i> |
||||
|
</div> |
||||
|
<div> |
||||
|
<p style="color: #1A202C;font-weight: 600; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Return Order print</p> |
||||
|
<p class="m-0" style="color:#718096"> Allows to take |
||||
|
PDF print of the return order. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container rounded"> |
||||
|
<ul class="nav nav-tabs d-flex" |
||||
|
style="width: fit-content;margin: 0 auto;gap: 1rem;"> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a |
||||
|
class="active show" data-toggle="tab" href="#tab1" |
||||
|
style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> |
||||
|
<i class="fa-regular fa-image pr-2" |
||||
|
style="color: #fff;"></i> |
||||
|
Screenshots</a></li> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a |
||||
|
data-toggle="tab" href="#tab2" |
||||
|
style="color: #fff;font-weight: 500; text-decoration: none;"><i |
||||
|
class="fa-solid fa-star pr-2" |
||||
|
style="color: #fff;"></i>Features</a></li> |
||||
|
<li class="col text-center py-2 text-nowrap " |
||||
|
style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> |
||||
|
<a |
||||
|
data-toggle="tab" href="#tab3" |
||||
|
style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i |
||||
|
class="fa-solid fa-book-open pr-2" |
||||
|
style="color: #fff;"></i>Released Notes</a></li> |
||||
|
</ul> |
||||
|
<div class="tab-content" |
||||
|
style="background-color: rgba(121, 113, 119, 0.04);"> |
||||
|
<div id="tab1" class="tab-pane fade in active show"> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-1.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Goto Portal/ My Account -> "Sale Orders" , from |
||||
|
the sale order click Return button.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-2.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
User can see the prefilled product in the |
||||
|
return wizard , user can edit and update the |
||||
|
quantity and return reason, after that you |
||||
|
can submit the return using Submit |
||||
|
button.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-3.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Customer can see list of RMA orders in |
||||
|
Portal / My |
||||
|
Account.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-4.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
The customer can see the basic details and |
||||
|
status of |
||||
|
the return order.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-5.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
The customer can see the detailed |
||||
|
information of the |
||||
|
Return Order in portal.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-6.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Return order tree view, Goto Sales -> Return |
||||
|
Orders |
||||
|
</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-7.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Backend form view of return order.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-8.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Shows all the delivery order's related with |
||||
|
Sales |
||||
|
order.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-9.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Return picking creation from return order |
||||
|
using |
||||
|
"Confirm" button.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-12.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Shows all the return picking order's related |
||||
|
with |
||||
|
Return Order.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-13.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
On customer form smart button showing all |
||||
|
return |
||||
|
order related to that customer.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-14.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
On Sale Order form smart button showing all |
||||
|
return |
||||
|
order related to that sale order.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-lg-12 py-2" |
||||
|
style="padding: 1rem 4rem !important;"> |
||||
|
<div |
||||
|
style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="row justify-content-center p-3 w-100 m-0"> |
||||
|
<img src="assets/screenshots/screenshot-15.png" |
||||
|
class="img-responsive" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<div class="px-3"> |
||||
|
<h4 class="mt-2" |
||||
|
style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> |
||||
|
Print RMA PDF Report - Print Return |
||||
|
Report.</h4> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="tab2" class="tab-pane fade"> |
||||
|
<div class="col-mg-12" style="padding: 1rem 4rem;"> |
||||
|
<ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Create Return |
||||
|
Orders From |
||||
|
Website. |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Customers can |
||||
|
view list of |
||||
|
return orders from My Account. |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Link Return With |
||||
|
Sale |
||||
|
Order |
||||
|
<ul style="list-style: none;font-weight: 400; color:#718096"> |
||||
|
<li>Easily switch the return |
||||
|
orders from sale order by clicking the |
||||
|
return smart button in the sale order. |
||||
|
</li> |
||||
|
</ul> |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Link Return |
||||
|
Order With |
||||
|
Partner |
||||
|
<ul style="list-style: none;font-weight: 400; color:#718096"> |
||||
|
<li> |
||||
|
<p class="text-gray-soft">We can see the |
||||
|
list of return |
||||
|
related to a partner from the |
||||
|
partner form view and easily switch |
||||
|
to return order |
||||
|
by clicking Return Count smart |
||||
|
button. |
||||
|
</li> |
||||
|
</ul> |
||||
|
</li> |
||||
|
<li class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<span style="margin-right: 12px;"><img |
||||
|
src="assets/misc/star (1) 2.svg" |
||||
|
alt="" |
||||
|
width="16px"></span>Return Order |
||||
|
print |
||||
|
<ul style="list-style: none;font-weight: 400; color:#718096"> |
||||
|
<li> |
||||
|
<p class="text-gray-soft">Allows to take |
||||
|
PDF print of |
||||
|
the return order. |
||||
|
</li> |
||||
|
</ul> |
||||
|
</li> |
||||
|
|
||||
|
</ul> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="tab3" class="tab-pane fade"> |
||||
|
<div class="col-mg-12 active" style="padding: 1rem 4rem;"> |
||||
|
<div class="py-3" |
||||
|
style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> |
||||
|
<div class="d-flex mb-3" |
||||
|
style="font-size: 0.8rem; font-weight: 500;"><span>Version |
||||
|
17.0.1.0.0</span><span |
||||
|
class="px-2">|</span><span |
||||
|
style="color: #714B67;font-weight: 600;">Released on: 25th Jan 2024</span> |
||||
|
</div> |
||||
|
<p class="m-0" |
||||
|
style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> |
||||
|
Initial Commit for Multi Product Return From |
||||
|
Website</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Related Products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> |
||||
|
<div class="carousel-inner"> |
||||
|
<div class="carousel-item active"> |
||||
|
<div class="row p-4"> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/salesperson_pos_order_line/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/1.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
|
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Sales Person On POS Order Line</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/point_of_sale_logo/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/2.png" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
|
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Point of Sale Logo</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/oh_appraisal/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/3.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
|
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Open HRMS Employee Appraisal</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="carousel-item"> |
||||
|
<div class="row p-4"> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/master_search/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px; "> |
||||
|
<img src="assets/modules/4.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
|
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Global Search</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/education_core/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px;"> |
||||
|
<img src="assets/modules/5.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
|
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Educational ERP Core</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col"> |
||||
|
<div class="p-3"> |
||||
|
<a href="https://apps.odoo.com/apps/modules/17.0/odoo_parking_management/" |
||||
|
style="color: #000; text-decoration: none;"> |
||||
|
<div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> |
||||
|
<div style="width: 300px;"> |
||||
|
<img src="assets/modules/6.jpg" |
||||
|
alt="" width="100%" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
<p class="text-center pt-2 text-black font-weight-bold"> |
||||
|
Parking Management</p> |
||||
|
</div> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<a class="carousel-control-prev" href="#myCarousel" |
||||
|
data-slide="prev" style="width: 35px; color: #000;"> |
||||
|
<span class="carousel-control-prev-icon"> |
||||
|
<i class="fa fa-chevron-left" |
||||
|
style="font-size: 24px;"></i> |
||||
|
</span> |
||||
|
</a> |
||||
|
<a class="carousel-control-next" href="#myCarousel" |
||||
|
data-slide="next" style="width: 35px; color: #000;"> |
||||
|
<span class="carousel-control-next-icon"> |
||||
|
<i class="fa fa-chevron-right" |
||||
|
style="font-size: 24px;"></i> |
||||
|
</span> |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Our Services</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container my-5"> |
||||
|
<div class="row py-3"> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/cogs.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Customization</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#DBC711; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/wrench.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Implementation</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/lifebuoy.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Support</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/user.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Hire |
||||
|
Odoo Developer</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> |
||||
|
|
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#54A0FF; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/puzzle.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Integration</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/update.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Migration</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/consultation.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Consultancy</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/training.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Implementation</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-4 col-sm-6 px-4 py-4"> |
||||
|
<div |
||||
|
style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> |
||||
|
<div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> |
||||
|
<div style="background-color:#E6BE26; border-radius: 50%; padding: 15px; width: 68px; |
||||
|
height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> |
||||
|
<img src="assets/icons/license.png" |
||||
|
alt="service-icon" width="38px" |
||||
|
height="auto"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<p style="margin-top: 20px; font-weight: bold;">Odoo |
||||
|
Licensing Consultancy</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Our Industries</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container"> |
||||
|
<div class="row my-5 py-4"> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100 " |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/trading-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Trading</p> |
||||
|
<p>Easily procure and sell your products</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgb(209, 209, 209); padding: 30px;"> |
||||
|
<img src="assets/icons/pos-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">POS</p> |
||||
|
<p>Easy configuration and convivial experience</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px rgba(228, 227, 227, 0.373)"> |
||||
|
<img src="assets/icons/education-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Education</p> |
||||
|
<p>A platform for educational management</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-bottom: 1px solid rgb(209, 209, 209); padding: 30px; "> |
||||
|
<img src="assets/icons/manufacturing-black.png" |
||||
|
width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Manufacturing</p> |
||||
|
<p>Plan, track and schedule your operations</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;"> |
||||
|
<img src="assets/icons/ecom-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">E-commerce & |
||||
|
Website</p> |
||||
|
<p>Mobile friendly, awe-inspiring product pages</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/service-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Service |
||||
|
Management</p> |
||||
|
<p>Keep track of services and invoice</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style="border-right: 1px solid rgb(209, 209, 209); padding: 30px; "> |
||||
|
<img src="assets/icons/restaurant-black.png" |
||||
|
width="42px" height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;"> |
||||
|
Restaurant</p> |
||||
|
<p>Run your bar or restaurant methodically</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-3 col-sm-6 p-0"> |
||||
|
<div class="d-flex flex-column h-100" |
||||
|
style=" padding: 30px;box-shadow: -5px 0 10px rgba(228, 227, 227, 0.373);"> |
||||
|
<img src="assets/icons/hotel-black.png" width="42px" |
||||
|
height="auto" alt=""> |
||||
|
<p style="color: #714B67;font-weight: 600; margin-top: 10px; |
||||
|
font-size: 1.2rem; margin-bottom: 2px;">Hotel |
||||
|
Management</p> |
||||
|
<p>An all-inclusive hotel management application</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container mt-5"> |
||||
|
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> |
||||
|
<p class="m-0" |
||||
|
style="font-weight: 600; font-size: 24px; color:#000 !important"> |
||||
|
Support</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="container my-5"> |
||||
|
<div class="row" style="background-color: #FFFAFE;"> |
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center" |
||||
|
style="border-right: 1px solid #D9D9D9;"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="assets/misc/support (1) 1.svg" alt="" |
||||
|
width="60px" style="margin-right: 12px;"> |
||||
|
<div style="padding: 0px 8px;"> |
||||
|
<span |
||||
|
style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need |
||||
|
Help?</span> |
||||
|
<p class="m-0" style="color:#718096;">Got |
||||
|
questions or need help? Get in touch.</p> |
||||
|
<div style="font-weight: 400;"><span><img |
||||
|
src="assets/misc/support-email.svg" |
||||
|
alt="" |
||||
|
width="18px" |
||||
|
style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> |
||||
|
<div style="padding: 30px;"> |
||||
|
<div class="d-flex align-items-center"> |
||||
|
<img src="assets/misc/whatsapp 1.svg" alt="" |
||||
|
width="60px" style="margin-right: 12px;"> |
||||
|
<div> |
||||
|
<span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> |
||||
|
<p class="m-0" style="color:#718096;">Say hi to |
||||
|
us on WhatsApp!</p> |
||||
|
<div style="font-weight: 400; font-size: 16px;"><span><img |
||||
|
src="assets/misc/phone.svg" |
||||
|
alt="" width="14px" |
||||
|
style="filter: invert(1); margin-right: 0.8rem;"></span>+91 |
||||
|
99456767686 |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
<!-- Optional JavaScript --> |
||||
|
<!-- jQuery first, then Popper.js, then Bootstrap JS --> |
||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
||||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,71 @@ |
|||||
|
/** @odoo-module **/ |
||||
|
import publicWidget from "@web/legacy/js/public/public_widget"; |
||||
|
import { useService } from "@web/core/utils/hooks"; |
||||
|
|
||||
|
publicWidget.registry.ReturnForm = publicWidget.Widget.extend({ |
||||
|
selector: '.sale_return', |
||||
|
// Event handlers for specific actions
|
||||
|
events:{ |
||||
|
'click #hidden_box_btn': '_showModal', |
||||
|
'click .js_add_json': '_validation', |
||||
|
'submit .sale_return_form': '_submission', |
||||
|
}, |
||||
|
init: function () { |
||||
|
this._super.apply(this, arguments); |
||||
|
this.rpc = this.bindService("rpc"); |
||||
|
}, |
||||
|
start: async function () { |
||||
|
await this._super(...arguments); |
||||
|
}, |
||||
|
// Show modal when #hidden_box_btn is clicked
|
||||
|
_showModal: function () { |
||||
|
$('#hidden_box').modal('show'); |
||||
|
}, |
||||
|
// Validate quantity based on user interaction
|
||||
|
_validation: function (ev) { |
||||
|
var $link = $(ev.currentTarget); |
||||
|
var $input = $link.closest('.input-group').find("input"); |
||||
|
var min = parseFloat($input.data("min") || 0); |
||||
|
var max = parseFloat($input.data("max") || Infinity); |
||||
|
var previousQty = parseFloat($input.val() || 0, 10); |
||||
|
var quantity = ($link.has(".fa-minus").length ? -1 : 1) + previousQty; |
||||
|
var newQty = quantity > min ? (quantity < max ? quantity : max) : min; |
||||
|
if (newQty !== previousQty) { |
||||
|
$input.val(newQty).trigger('change'); |
||||
|
} |
||||
|
return false; |
||||
|
}, |
||||
|
// Handle form submission
|
||||
|
_submission: async function (submission) { |
||||
|
submission.preventDefault(); |
||||
|
var val = [] |
||||
|
submission.preventDefault(); |
||||
|
$("tr.order_line").each(function() { |
||||
|
var qty = parseFloat($(this).find(".quantity").val() || 0); |
||||
|
if (qty !== 0){ |
||||
|
val.push({ 'order_id' : $(this).find(".quantity").data("order-id"), |
||||
|
'line_id' : $(this).find(".quantity").data("line-id"), |
||||
|
'deli_qty' : $(this).find(".quantity").data("delivered_qty"), |
||||
|
'quantity' : $(this).find(".quantity").val(), |
||||
|
'product_id' : $(this).find(".quantity").data('product-id'), |
||||
|
'reason' : $(this).find("#return_reason").val()}); |
||||
|
} |
||||
|
}); |
||||
|
if (val.length !== 0){ |
||||
|
await this.rpc("/sale_return", { |
||||
|
'vals': val, |
||||
|
}).then(function(result){ |
||||
|
if (result == true){ |
||||
|
window.location.href = '/my/request-thank-you'; |
||||
|
} |
||||
|
else{ |
||||
|
alert("Retry again"); |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
else{ |
||||
|
alert("Please specify at least one return quantity"); |
||||
|
submission.preventDefault(); |
||||
|
} |
||||
|
}, |
||||
|
}); |
@ -0,0 +1,19 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Define a new view record for modifying the partner form view --> |
||||
|
<record id="view_partner_form" model="ir.ui.view"> |
||||
|
<field name="name">res.partner.view.form.inherit.website.multi.product.return.management</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_form"/> |
||||
|
<field eval="1" name="priority"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//div[@name='button_box']" position="inside"> |
||||
|
<button name="action_open_returns" type="object" |
||||
|
class="oe_stat_button" icon="fa-truck" |
||||
|
invisible="return_order_count == 0"> |
||||
|
<field name="return_order_count" widget="statinfo"/> |
||||
|
</button> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,363 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Customizing the Sales Order Portal Content --> |
||||
|
<template id="sale_order_portal_content_return" |
||||
|
name="Sales Order Portal Content" |
||||
|
inherit_id="sale.sale_order_portal_content"> |
||||
|
<xpath expr="//div[@id='introduction']" position="after"> |
||||
|
<div class="sale_return"> |
||||
|
<form id="sale_return_form" class="sale_return_form"> |
||||
|
<div id="hidden_box" class="modal fade"> |
||||
|
<div class="modal-dialog modal-content" |
||||
|
style="border:solid 1px #604e5b; min-height:500px;max-width: 800px;"> |
||||
|
<div class="modal-header"> |
||||
|
<h5 class="modal-title"> |
||||
|
<b>Sale Return</b> |
||||
|
</h5> |
||||
|
<button type="button" class="close" |
||||
|
data-bs-dismiss="modal" |
||||
|
aria-label="Close"> |
||||
|
<span aria-hidden="true">X</span> |
||||
|
</button> |
||||
|
</div> |
||||
|
<div class="modal-body" id="pop_html"> |
||||
|
<form> |
||||
|
<table t-att-data-order-id="sale_order.id" |
||||
|
t-att-data-token="sale_order.access_token" |
||||
|
class="table table-sm" |
||||
|
id="sales_return_order_table"> |
||||
|
<thead class="bg-100"> |
||||
|
<tr> |
||||
|
<th class="text-left">Products |
||||
|
</th> |
||||
|
<th class="text-right" |
||||
|
style="width:20%;"> |
||||
|
Quantity Available |
||||
|
</th> |
||||
|
<th class="text-right">Return |
||||
|
Quantity |
||||
|
</th> |
||||
|
<th class="text-right" |
||||
|
style="width:25px;">Reason |
||||
|
</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody class="sale_tbody"> |
||||
|
<tr t-foreach="sale_order.order_line.filtered(lambda x:x.product_id.type!='service' and not x.display_type)" |
||||
|
t-as="line" class="order_line"> |
||||
|
<t t-att-class="'bg-200 font-weight-bold o_line_section' if line.display_type == 'line_section' else 'font-italic o_line_note' if line.display_type == 'line_note' else ''"> |
||||
|
<td id="product_name"> |
||||
|
<span t-field="line.name"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<t t-set="sub_quantity" |
||||
|
t-value="0"/> |
||||
|
<div id="quote_qty"> |
||||
|
<t t-set="return_line" |
||||
|
t-value="request.env['return.order.line'].sudo().search([('sale_order_id','=',sale_order.id),('product_id','=',line.product_id.id)])"/> |
||||
|
<t t-foreach="return_line" |
||||
|
t-as="res"> |
||||
|
<t t-if="res.order_id.state == 'draft'"> |
||||
|
<t t-set="sub_quantity" |
||||
|
t-value="sub_quantity+res.received_qty"/> |
||||
|
</t> |
||||
|
</t> |
||||
|
<span t-esc="int((line.qty_delivered-line.return_order_line_count)-int(sub_quantity))"/> |
||||
|
<span t-field="line.product_uom"/> |
||||
|
</div> |
||||
|
</td> |
||||
|
<td> |
||||
|
<div class="css_quantity input-group" |
||||
|
t-if="int((line.qty_delivered-line.return_order_line_count)-sub_quantity)>0"> |
||||
|
<div class="input-group-prepend"> |
||||
|
<a t-attf-href="#" |
||||
|
class="btn btn-link js_add_json d-none d-md-inline-block" |
||||
|
aria-label="Remove one" |
||||
|
title="Remove one"> |
||||
|
<i class="fa fa-minus"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
<input type="text" |
||||
|
class="form-control quantity" |
||||
|
style="width: 50px;height: 50px;text-align: center;" |
||||
|
t-att-data-min="0" |
||||
|
t-att-data-max="int((line.qty_delivered-line.return_order_line_count)-int(sub_quantity))" |
||||
|
t-att-data-line-id="line.id" |
||||
|
t-att-data-order-id="sale_order.id" |
||||
|
t-att-data-product-id="line.product_id.id" |
||||
|
t-att-data-delivered_qty="int(line.qty_delivered) == line.qty_delivered and int(line.qty_delivered) or line.qty_delivered" |
||||
|
readonly="1"/> |
||||
|
<div class="input-group-append"> |
||||
|
<a t-attf-href="#" |
||||
|
class="btn btn-link float_left d-none d-md-inline-block js_add_json" |
||||
|
aria-label="Add one" |
||||
|
title="Add one"> |
||||
|
<i class="fa fa-plus"/> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</td> |
||||
|
<td style="width:20px;"> |
||||
|
<textarea |
||||
|
id="return_reason" |
||||
|
name="reason" |
||||
|
placeholder="Reason"/> |
||||
|
</td> |
||||
|
</t> |
||||
|
</tr> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
</form> |
||||
|
</div> |
||||
|
<div class="modal-footer"> |
||||
|
<button id='submit' |
||||
|
class="btn btn-secondary flex-grow-1 mb-1" |
||||
|
style="max-width: 85px;"> |
||||
|
Submit |
||||
|
</button> |
||||
|
<button type="button" class="btn btn-secondary " |
||||
|
data-bs-dismiss="modal">Close |
||||
|
</button> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div> |
||||
|
<span class="btn-group" |
||||
|
style="margin-left: 87%;margin-top: -14%;"> |
||||
|
<t t-if="sale_order.state in ['sale','done'] and sum(sale_order.order_line.mapped('qty_delivered')) > 0"> |
||||
|
<a class="btn btn-secondary btn-block hidden_box_btn" |
||||
|
style="color: #FFFFFF;" |
||||
|
id="hidden_box_btn"> |
||||
|
<i class="fa fa-truck"/> |
||||
|
Return |
||||
|
</a> |
||||
|
</t> |
||||
|
</span> |
||||
|
</div> |
||||
|
</div> |
||||
|
</form> |
||||
|
</div> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
<template id="portal_my_home_menu_sale_return" |
||||
|
name="Portal layout : Return Order menu entry" |
||||
|
inherit_id="portal.portal_breadcrumbs" priority="10"> |
||||
|
<xpath expr="//ol[hasclass('o_portal_submenu')]" position="inside"> |
||||
|
<li t-if="page_name == 'Sale_Return' or sale_return" |
||||
|
t-attf-class="breadcrumb-item #{'active ' if not orders else ''}"> |
||||
|
<a t-if="orders" |
||||
|
t-attf-href="/my/return_orders?{{ keep_query() }}">Return |
||||
|
orders |
||||
|
</a> |
||||
|
<t t-else="">Return Order</t> |
||||
|
</li> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
<template id="portal_my_home_sale_return" name="Show Return Order" |
||||
|
customize_show="True" |
||||
|
inherit_id="portal.portal_my_home" priority="25"> |
||||
|
<xpath expr="//div[hasclass('o_portal_docs')]" position="inside"> |
||||
|
<t t-call="portal.portal_docs_entry"> |
||||
|
<t t-set="title">Return Orders</t> |
||||
|
<t t-set="url" t-value="'/my/return_orders'"/> |
||||
|
<t t-set="placeholder_count" t-value="'return_count'"/> |
||||
|
</t> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
<template id="portal_my_returns" name="Portal: My Sale Return"> |
||||
|
<t t-call="portal.portal_layout"> |
||||
|
<t t-set="breadcrumbs_searchbar" t-value="True"/> |
||||
|
<t t-call="portal.portal_searchbar"> |
||||
|
<t t-set="title">Sales Return</t> |
||||
|
</t> |
||||
|
<t t-if="not orders"> |
||||
|
<p>There are currently no return order for your account.</p> |
||||
|
</t> |
||||
|
<t t-if="orders" t-call="portal.portal_table"> |
||||
|
<thead> |
||||
|
<tr class="active"> |
||||
|
<th>Sale Return #</th> |
||||
|
<th class="text-right">Create Date</th> |
||||
|
<th class="text-right">Order</th> |
||||
|
<th class="text-right">State</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<t t-foreach="orders" t-as="order"> |
||||
|
<tr> |
||||
|
<td> |
||||
|
<a t-att-href="order.get_portal_url()"> |
||||
|
<t t-esc="order.name"/> |
||||
|
</a> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-field="order.create_date"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-field="order.sale_order_id"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<t t-if="order.state == 'draft'"> |
||||
|
<span class="badge rounded-pill text-bg-warning"> |
||||
|
<i class="fa fa-fw fa-file-text"/> |
||||
|
Draft |
||||
|
</span> |
||||
|
</t> |
||||
|
<t t-if="order.state == 'done'"> |
||||
|
<span class="badge rounded-pill text-bg-success"> |
||||
|
<i class="fa fa-fw fa-file-text"/> |
||||
|
Done |
||||
|
</span> |
||||
|
</t> |
||||
|
<t t-if="order.state == 'confirm'"> |
||||
|
<span class="badge rounded-pill text-bg-info"> |
||||
|
<i class="fa fa-fw fa-file-text"/> |
||||
|
Confirmed |
||||
|
</span> |
||||
|
</t> |
||||
|
<t t-if="order.state == 'cancel'"> |
||||
|
<span class="badge rounded-pill text-bg-dark"> |
||||
|
<i class="fa fa-fw fa-remove"/> |
||||
|
Cancelled |
||||
|
</span> |
||||
|
</t> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</t> |
||||
|
</tbody> |
||||
|
</t> |
||||
|
</t> |
||||
|
</template> |
||||
|
<template id="portal_sale_return_page" name="Portal: My Sale Return"> |
||||
|
<t t-call="portal.portal_layout"> |
||||
|
<t t-set="sale_return" t-value="orders"/> |
||||
|
<div id="optional_placeholder"/> |
||||
|
<div class="container"> |
||||
|
<div class="row mt16 o_portal_purchase_sidebar"> |
||||
|
<!-- Sidebar --> |
||||
|
<t t-call="portal.portal_record_sidebar"> |
||||
|
<t t-set="classes" |
||||
|
t-value="'col-lg-auto d-print-none'"/> |
||||
|
<t t-set="title"> |
||||
|
<h2 class="mb-0"> |
||||
|
<b t-field="sale_return.name" |
||||
|
data-id="return_name"/> |
||||
|
</h2> |
||||
|
</t> |
||||
|
<t t-set="entries"> |
||||
|
<ul class="list-group list-group-flush flex-wrap flex-row flex-lg-column"> |
||||
|
<div> |
||||
|
<div class="btn-group flex-grow-1 mb-1"> |
||||
|
<a class="btn btn-secondary btn-block o_download_btn" |
||||
|
t-att-href="sale_return.get_portal_url(report_type='pdf', download=True)" |
||||
|
title="Download"> |
||||
|
<i class="fa fa-download"/> |
||||
|
Download |
||||
|
</a> |
||||
|
|
||||
|
</div> |
||||
|
<div class="btn-group flex-grow-1 mb-1"> |
||||
|
<a class="btn btn-secondary btn-block o_print_btn o_portal_invoice_print" |
||||
|
t-att-href="sale_return.get_portal_url(report_type='pdf')" |
||||
|
id="print_invoice_report" |
||||
|
title="Print" target="_blank"> |
||||
|
<i class="fa fa-print"/> |
||||
|
Print |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<li t-if="sale_return.user_id"> |
||||
|
<div class="small mb-1"> |
||||
|
<strong class="text-muted"> |
||||
|
Representative |
||||
|
</strong> |
||||
|
</div> |
||||
|
<div class="row flex-nowrap"> |
||||
|
<div class="col pl-0" |
||||
|
style="min-width: 150px"> |
||||
|
<span t-field="sale_return.user_id" |
||||
|
t-options='{"widget": "contact", "fields": ["name", "phone"], "no_marker": True}'/> |
||||
|
<a href="#discussion" class="small"> |
||||
|
<i class="fa fa-comment"/> |
||||
|
Send |
||||
|
message |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
</li> |
||||
|
</ul> |
||||
|
</t> |
||||
|
</t> |
||||
|
<div class=" col-lg col-12 justify-content-end w-100"> |
||||
|
<div class="card pb-5"> |
||||
|
<div class="card-header bg-white pb-1"> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-12"> |
||||
|
<h2 class="font-weight-normal"> |
||||
|
<t t-if="orders.state in ['draft']"> |
||||
|
Draft Return |
||||
|
</t> |
||||
|
<t t-else="1"> |
||||
|
Sale Return |
||||
|
</t> |
||||
|
<span class="font-italic" |
||||
|
t-esc="orders.name"/> |
||||
|
</h2> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="card-body"> |
||||
|
<div class="mb-4"> |
||||
|
<strong>Creation Date:</strong> |
||||
|
<span t-field="orders.create_date" |
||||
|
t-options='{"widget": "date"}'/> |
||||
|
<br/> |
||||
|
<div t-att-class="'d-inline' if orders.sale_order_id else 'd-none'"> |
||||
|
<strong>Sale Order:</strong> |
||||
|
<span class="ml-1" |
||||
|
t-field="orders.sale_order_id"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<h3 class="font-weight-normal">Returns</h3> |
||||
|
<table class="table table-sm"> |
||||
|
<thead class="bg-100"> |
||||
|
<tr> |
||||
|
<th>Products</th> |
||||
|
<th class="text-right">Quantity</th> |
||||
|
<th class="text-right">Reason</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
<tr t-foreach="orders.return_line_ids" |
||||
|
t-as="line"> |
||||
|
<td> |
||||
|
<img t-att-src="image_data_uri((line.product_id.image_1024))" |
||||
|
alt="Product" |
||||
|
class="d-none d-lg-inline" |
||||
|
style="max-width: 100px; max-height: 100px;"/> |
||||
|
<span t-esc="line.product_id.name"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-esc="line.received_qty"/> |
||||
|
</td> |
||||
|
<td class="text-right"> |
||||
|
<span t-esc="line.reason"/> |
||||
|
</td> |
||||
|
</tr> |
||||
|
</tbody> |
||||
|
</table> |
||||
|
<div class="row"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="sale_order_communication"> |
||||
|
<h3>Communication history</h3> |
||||
|
<t t-call="portal.message_thread"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="oe_structure mb32"/> |
||||
|
</t> |
||||
|
</template> |
||||
|
</odoo> |
@ -0,0 +1,18 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- Adding a button in the Sale Order form to view returns --> |
||||
|
<record id="view_order_form" model="ir.ui.view"> |
||||
|
<field name="name">sale.order.view.form.inherit.website.multi.product.return.management</field> |
||||
|
<field name="model">sale.order</field> |
||||
|
<field name="inherit_id" ref="sale.view_order_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//div[@name='button_box']" position="inside"> |
||||
|
<button name="action_open_returns" type="object" |
||||
|
class="oe_stat_button" icon="fa-truck" |
||||
|
invisible="return_order_count == 0"> |
||||
|
<field name="return_order_count" widget="statinfo"/> |
||||
|
</button> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,147 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- View definition for Sale Return form --> |
||||
|
<record id="sale_return_view_form" model="ir.ui.view"> |
||||
|
<field name="name">sale.return.view.form</field> |
||||
|
<field name="model">sale.return</field> |
||||
|
<field name="priority">100</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form> |
||||
|
<header> |
||||
|
<button name="return_confirm" string="Confirm" |
||||
|
class="oe_highlight" |
||||
|
type="object" invisible="state != 'draft'"/> |
||||
|
<button name="return_cancel" string="Cancel" type="object" |
||||
|
invisible="state not in ('draft')"/> |
||||
|
<field name="state" widget="statusbar" |
||||
|
statusbar_visible="draft,confirm,done"/> |
||||
|
</header> |
||||
|
<sheet> |
||||
|
<div class="oe_button_box" name="button_box"> |
||||
|
<button name="action_view_picking" type="object" |
||||
|
class="oe_stat_button" |
||||
|
icon="fa-pencil-square-o" |
||||
|
invisible="picking_count == 0"> |
||||
|
|
||||
|
<field name="picking_count" widget="statinfo" |
||||
|
string="Return Picking"/> |
||||
|
</button> |
||||
|
<button name="action_view_delivery" type="object" |
||||
|
class="oe_stat_button" |
||||
|
icon="fa-pencil-square-o" |
||||
|
invisible="delivery_count == 0"> |
||||
|
<field name="delivery_count" widget="statinfo" |
||||
|
string="Delivery order"/> |
||||
|
</button> |
||||
|
</div> |
||||
|
<div class="oe_title"> |
||||
|
<h1> |
||||
|
<field name="name"/> |
||||
|
</h1> |
||||
|
</div> |
||||
|
<group> |
||||
|
<group> |
||||
|
<field name="sale_order_id"/> |
||||
|
<field name="partner_id"/> |
||||
|
</group> |
||||
|
<group> |
||||
|
<field name="create_date"/> |
||||
|
<field name="user_id"/> |
||||
|
<field name="stock_picking_ids" invisible="1"/> |
||||
|
</group> |
||||
|
</group> |
||||
|
<notebook> |
||||
|
<page string="Return Lines" name="order_line"> |
||||
|
<field name="return_line_ids" |
||||
|
context="{'order_id':sale_order_id}"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="product_id"/> |
||||
|
<field name="product_tmpl_id" |
||||
|
invisible="1"/> |
||||
|
<field name="quantity" readonly="1" |
||||
|
force_save="1"/> |
||||
|
<field name="received_qty"/> |
||||
|
<field name="reason"/> |
||||
|
<field name="to_refund" optional="hide"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Delivery Order" name="delivery_order"> |
||||
|
<field name="source_pick_ids" |
||||
|
context="{'order_id':sale_order_id}"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="name"/> |
||||
|
<field name="partner_id"/> |
||||
|
<field name="company_id" |
||||
|
column_invisible="True"/> |
||||
|
<field name="state"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</page> |
||||
|
<page string="Return Picking" name="return_picking"> |
||||
|
<field name="stock_picking_ids"/> |
||||
|
</page> |
||||
|
<page string="Other" name="other_info"> |
||||
|
<separator colspan="4" string="Other Datails"/> |
||||
|
<field name="note" colspan="4" nolabel="1"/> |
||||
|
</page> |
||||
|
</notebook> |
||||
|
</sheet> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- View definition for Sale Return tree view --> |
||||
|
<record id="sale_return_view_tree" model="ir.ui.view"> |
||||
|
<field name="name">sale.return.view.tree</field> |
||||
|
<field name="model">sale.return</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree> |
||||
|
<field name="name"/> |
||||
|
<field name="sale_order_id"/> |
||||
|
<field name="partner_id"/> |
||||
|
<field name="create_date"/> |
||||
|
<field name="user_id"/> |
||||
|
<field name="state"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- View definition for Sale Return search view --> |
||||
|
<record id="sale_return_view_search" model="ir.ui.view"> |
||||
|
<field name="name">sale.return.view.search</field> |
||||
|
<field name="model">sale.return</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<search> |
||||
|
<field name="sale_order_id" string="Sale order"/> |
||||
|
<field name="partner_id" string="Customer"/> |
||||
|
<filter string="Done" name="done" |
||||
|
domain="[('state', '=', 'done')]" help="Done order"/> |
||||
|
<filter string="Archived" name="inactive" |
||||
|
domain="[('active', '=', False)]"/> |
||||
|
<separator/> |
||||
|
<group expand="0" string="Group By"> |
||||
|
<filter string="Status" name="status" domain="[]" |
||||
|
context="{'group_by':'state'}"/> |
||||
|
<filter string="Sale Order" name="order" |
||||
|
context="{'group_by':'sale_order_id'}"/> |
||||
|
<filter string="Customer" name="customer" domain="[]" |
||||
|
context="{'group_by':'partner_id'}"/> |
||||
|
</group> |
||||
|
</search> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Action definition for Sale Return --> |
||||
|
<record id="sale_return_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Sale Return</field> |
||||
|
<field name="res_model">sale.return</field> |
||||
|
<field name="view_mode">tree,form</field> |
||||
|
<field name="help" type="html"> |
||||
|
<p class="oe_view_nocontent_create">Create The First Return |
||||
|
</p> |
||||
|
</field> |
||||
|
</record> |
||||
|
<!-- Menu item for Sale Return in the Sales menu --> |
||||
|
<menuitem id="sale_return_menu" |
||||
|
parent="sale.sale_menu_root" |
||||
|
name="Return Orders" |
||||
|
action="website_multi_product_return_management.sale_return_action"/> |
||||
|
</odoo> |
@ -0,0 +1,17 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<odoo> |
||||
|
<!-- View definition for stock picking form --> |
||||
|
<record id="view_picking_form" model="ir.ui.view"> |
||||
|
<field name="name">stock.picking.view.form.inherit.website.multi.product.return.management</field> |
||||
|
<field name="model">stock.picking</field> |
||||
|
<field name="inherit_id" ref="stock.view_picking_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<field name="origin" position="after"> |
||||
|
<field name="return_order_id" invisible="not return_order_id"/> |
||||
|
<field name="return_order_pick_id" |
||||
|
invisible="not return_order_pick_id"/> |
||||
|
<field name="return_order_picking" invisible="1"/> |
||||
|
</field> |
||||
|
</field> |
||||
|
</record> |
||||
|
</odoo> |
@ -0,0 +1,37 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||
|
<odoo> |
||||
|
<!-- Template for thanks page --> |
||||
|
<template id="customers_request_thank_page" name="Customer Request Thank"> |
||||
|
<t t-call="website.layout"> |
||||
|
<div class="oe_structure"> |
||||
|
<div class="contain"> |
||||
|
<div id="wrap"> |
||||
|
<div class="oe_structure" |
||||
|
id="oe_structure_website_form_contact_us_thanks_1"/> |
||||
|
<div class="container pt-3"> |
||||
|
<h1>Thanks!</h1> |
||||
|
<div class="row"> |
||||
|
<div class="col-lg-8"> |
||||
|
<div class="alert alert-success" |
||||
|
role="status"> |
||||
|
Your order for return has been sent |
||||
|
successfully. |
||||
|
<a href="#" class="close" |
||||
|
data-bs-dismiss="alert" |
||||
|
aria-label="close" title="close">× |
||||
|
</a> |
||||
|
</div> |
||||
|
<p> |
||||
|
We will get back to you shortly. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="oe_structure" |
||||
|
id="oe_structure_website_form_contact_us_thanks_2"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</t> |
||||
|
</template> |
||||
|
</odoo> |
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from . import stock_return_picking |
@ -0,0 +1,40 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################### |
||||
|
# |
||||
|
# Cybrosys Technologies Pvt. Ltd. |
||||
|
# |
||||
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
||||
|
# Author: Ranjith R (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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
from odoo import models |
||||
|
|
||||
|
|
||||
|
class StockReturnPicking(models.TransientModel): |
||||
|
"""Extend the stock.return.picking wizard.""" |
||||
|
|
||||
|
_inherit = 'stock.return.picking' |
||||
|
|
||||
|
def _create_returns(self): |
||||
|
"""Create return picking and update associated return order.""" |
||||
|
new_picking, pick_type_id = super(StockReturnPicking, |
||||
|
self)._create_returns() |
||||
|
picking = self.env['stock.picking'].browse(new_picking) |
||||
|
if self.picking_id.return_order_id: |
||||
|
picking.write({'return_order_picking': False, |
||||
|
'return_order_id': False, |
||||
|
'return_order_pick_id': self.picking_id.return_order_id.id}) |
||||
|
self.picking_id.return_order_id.write({'state': 'confirm'}) |
||||
|
return new_picking, pick_type_id |