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.
21 lines
865 B
21 lines
865 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Template to replace a t-call which helps to show billing address -->
|
|
<template id="shopping_agent_address_template"
|
|
inherit_id="website_sale.checkout">
|
|
<xpath expr="//div[hasclass('one_kanban')]"
|
|
position="replace">
|
|
<div class="col-lg-6 one_kanban">
|
|
<t t-call="website_sale.address_kanban">
|
|
<t t-if="partner_id" t-set='contact'
|
|
t-value="partner_id"/>
|
|
<t t-else="" t-set='contact'
|
|
t-value="order.partner_id"/>
|
|
<t t-set='selected' t-value="1"/>
|
|
<t t-set='readonly' t-value="1"/>
|
|
<t t-set='allow_edit' t-value="1"/>
|
|
</t>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|