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.
 
 
 
 
 

32 lines
1.5 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<template id="website_slot_time" inherit_id="website_sale.cart">
<!-- Inserting delivery slot selection before the cart lines table -->
<xpath expr="//t[@t-call='website_sale.cart_lines']" position="before">
<!-- Checking if delivery slot is enabled -->
<t t-set="delivery_slot"
t-value="request.env['ir.config_parameter'].sudo().get_param('delivery_slot.enable_delivery_date')"/>
<t t-if="delivery_slot">
<div class="slot-time-div">
<div class="form-group col-12">
<span class="s_website_form_label_content">
<b>Choose A Delivery Time</b>
<br/>
</span>
<div class="col-sm" id="hour_value">
<input type="radio" id="home" name="slot_hour"
value="home"/>
<label for="html">Home Hours</label>
</div>
<div class="col-sm">
<input type="radio" id="office" name="slot_hour"
value="office"/>
<label for="css">Office Hours</label>
</div>
<br/>
</div>
</div>
</t>
</xpath>
</template>
</odoo>