You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
4.3 KiB
104 lines
4.3 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Muhsina V (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 http
|
|
from odoo.http import request
|
|
from odoo.addons.website_sale.controllers.main import WebsiteSale
|
|
|
|
|
|
class WebsiteSale(WebsiteSale):
|
|
"""Extends the WebsiteSale controller to add delivery slot functionality.
|
|
"""
|
|
|
|
@http.route(['/shop/cart'], type='http', auth="public", website=True)
|
|
def cart(self, **post):
|
|
""" Adding extra field to choose delivery date and slot for each
|
|
cart lines"""
|
|
val = super().cart(**post)
|
|
is_delivery_slot = request.env['ir.config_parameter'].sudo().get_param(
|
|
'delivery_slot.enable_delivery_date')
|
|
slots = request.env['slot.time'].search([])
|
|
slot_home = request.env['slot.time'].search([]).filtered(
|
|
lambda l: l.slot_type == 'home')
|
|
slot_office = request.env['slot.time'].search([]).filtered(
|
|
lambda l: l.slot_type == 'office')
|
|
val.qcontext.update({
|
|
'is_delivery_slot': is_delivery_slot,
|
|
'slots': slots,
|
|
'slot_home': slot_home,
|
|
'slot_office': slot_office,
|
|
})
|
|
return val
|
|
|
|
@http.route(['/shop/cart/update_json'], type='json', auth="public",
|
|
methods=['POST'], website=True, csrf=False)
|
|
def cart_update_json(self, **kw):
|
|
"""Passing delivery date and slot values"""
|
|
val = super().cart_update_json(**kw)
|
|
is_delivery_slot = request.env['ir.config_parameter'].sudo().get_param(
|
|
'delivery_slot.enable_delivery_date')
|
|
slots = request.env['slot.time'].search([])
|
|
slot_home = request.env['slot.time'].search([]).filtered(
|
|
lambda l: l.slot_type == 'home')
|
|
slot_office = request.env['slot.time'].search([]).filtered(
|
|
lambda l: l.slot_type == 'office')
|
|
val.update({
|
|
'is_delivery_slot': is_delivery_slot,
|
|
'slots': slots,
|
|
'slot_home': slot_home,
|
|
'slot_office': slot_office,
|
|
})
|
|
return val
|
|
|
|
@http.route(['/shop/cart/get_option'], type='json', auth="public",
|
|
website=True)
|
|
def get_option(self, **kw):
|
|
""" Called when changing the slot timing ie office hours or home hours
|
|
returns the option chosen"""
|
|
option = kw.get('selected_option')
|
|
slot_filtered = request.env['slot.time'].search([]).filtered(
|
|
lambda l: l.slot_type == option)
|
|
options = [[slot.id, slot.name] for slot in slot_filtered]
|
|
return options
|
|
|
|
@http.route(['/shop/cart/set_delivery_date'], type='json', auth="public",
|
|
website=True)
|
|
def set_delivery_date(self, **kwargs):
|
|
"""Sets the delivery date for each order line of sale order created"""
|
|
order = request.website.sale_get_order()
|
|
date = kwargs.get('delivery_date')
|
|
line_id = int(kwargs.get('line_id'))
|
|
for line in order.order_line:
|
|
if line.id == line_id:
|
|
if date:
|
|
line.delivery_date = date
|
|
|
|
@http.route(['/shop/cart/set_delivery_slot'], type='json', auth="public",
|
|
website=True)
|
|
def set_delivery_slot(self, **kwargs):
|
|
"""Sets the delivery slots for each order line of sale order created"""
|
|
order = request.website.sale_get_order()
|
|
slot_id = int(kwargs.get('delivery_slot'))
|
|
line_id = int(kwargs.get('line_id'))
|
|
for line in order.order_line:
|
|
if line.id == line_id:
|
|
if slot_id:
|
|
line.slot_id = request.env['slot.time'].browse(slot_id)
|
|
|