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.
 
 
 
 
 

18 lines
818 B

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Product page inherited to add the custom button-->
<template id="product_quantity" inherit_id="website_sale.product" name="Select Quantity">
<xpath expr="//div[@id='o_wsale_cta_wrapper']" position="after">
<div>
<t t-if="product.pre_book and product.pre_max_quantity > 0">
<a role="menuitem"
style="color: #f8f9fa;">
<button type="button" t-att-value="keep('/my/prebook_request/%s' % slug(product))" class="btn btn-primary pre_booking" t-att-data-id="product.pre_max_quantity">
Pre Book
</button>
</a>
</t>
</div>
</xpath>
</template>
</odoo>