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.
 
 
 
 
 

79 lines
3.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Template for adding PIN-->
<template id="website_estimated_delivery_time"
inherit_id="website_sale.product"
customize_show="True" name="Select Quantity">
<xpath expr="//div[@id='o_product_terms_and_share']" position="after">
<div id="search_website_pin_number"
class="d-flex flex-wrap align-items-center">
<input type="text" placeholder="Enter The PIN Code"
style="text-align: center;line-height: 30px;"
id="pin_number">
</input>
<input type="hidden" t-att-value="product.id"
id="product_id">
</input>
<button type="button" class="btn btn-secondary"
style="background-color: #228c91;"
id="search_button">Search
</button>
<!-- Product Available Modal-->
<div class="modal fade" id="NotAvailableModal"
data-bs-backdrop="static" data-bs-keyboard="false"
tabindex="-1" aria-labelledby="NotAvailableModalLabel"
aria-hidden="true">
<div class="modal-dialog" style="top: 40%;">
<div class="modal-content">
<div class="modal-body" style="text-align: center;">
<p id="message_to_show_unavailable">
</p>
</div>
<button type="button"
class="btn btn-primary"
data-bs-dismiss="modal">
Close
</button>
</div>
</div>
</div>
<!-- Product Unavailable Modal-->
<div class="modal fade" id="AvailableModal"
data-bs-backdrop="static" data-bs-keyboard="false"
tabindex="-1" aria-labelledby="AvailableModalLabel"
aria-hidden="true">
<div class="modal-dialog" style="top: 40%;">
<div class="modal-content">
<div class="modal-body" style="text-align: center;">
<p id="message_to_show_available">
</p>
</div>
<button type="button"
class="btn btn-primary"
data-bs-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
</xpath>
</template>
<!-- Template for hide the shipping time-->
<template id="product_custom_text" inherit_id="website_sale.product"
active="True" name="Terms and Conditions" priority="21">
<xpath expr="//div[@id='o_product_terms_and_share']" position="replace">
<div id="o_product_terms_and_share"
class="d-flex justify-content-between flex-column flex-md-row align-items-md-end mb-3">
<p class="text-muted mb-0">
<a href="/terms" class="text-muted">
<u>Terms and Conditions</u>
</a>
<br/>
30-day money-back guarantee
<br/>
</p>
</div>
</xpath>
</template>
</odoo>