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.
 
 
 
 
 

17 lines
744 B

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<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" t-att-href="keep('/my/prebook_request/%s' % slug(product))"
style="color: #f8f9fa;">
<button type="button" class="btn btn-primary pre_booking" t-att-data-id="product.id">
Pre Book
</button>
</a>
</t>
</div>
</xpath>
</template>
</odoo>