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.
29 lines
1.3 KiB
29 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherit sale.sale_order_portal_content Template View to Modify it -->
|
|
<template id="sale_order_portal_delivery_inherit" inherit_id="sale.sale_order_portal_content">
|
|
<xpath expr="//div[@id='invoicing_shipping_address']" position="after">
|
|
<div class="delivery_schedule_portal_content">
|
|
<t t-if="sale_order.state == 'sent'">
|
|
<br />
|
|
<div>
|
|
<label for="delivery_date">Expected Delivery Date :</label>
|
|
<input type="date" id="delivery_date" name="delivery_date" required="1" />
|
|
<br />
|
|
<p id="error_for_date" style="color:red" />
|
|
<br />
|
|
<br />
|
|
<textarea rows="4" cols="33" id="delivery_note" name="comment" placeholder="Type Your Comment" />
|
|
</div>
|
|
<div>
|
|
<button id="confirm" custom="confirm" class="btn btn-primary" t-att-value="sale_order.id">
|
|
Confirm
|
|
</button>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|