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.
36 lines
1.5 KiB
36 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherit sale.sale_order_portal_content Template View to Modify it -->
|
|
<template id="subscription_so_portal_template"
|
|
inherit_id="sale.sale_order_portal_template">
|
|
<div id="portal_sale_content" 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/>
|
|
</div>
|
|
</template>
|
|
</odoo>
|
|
|