Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
6520 Vistas

I have to remove the following view from my custom module i tried to inherit from both website_sale_stock and website_portal_sale but no luck


<template id="orders_followup_shipping" name="Orders Shipping Followup" inherit_id="website_portal_sale.orders_followup">
<xpath expr="//div[@id='shipping_address']" position="inside">
<t t-if="order.picking_ids">
<div>
<strong>Delivery Orders</strong>
</div>
<div>
<t t-foreach="order.picking_ids" t-as="i">
<t t-set="report_url" t-value="'/report/pdf/stock.report_picking/%s' % i.id"/>
<div>
<a t-att-href="report_url"><span class="fa fa-download"/></a>
<a t-att-href="report_url"><span t-field="i.name"/></a>
<span class="text-muted" t-field="i.date" t-field-options='{"widget": "date"}'/>
<t t-if="i.state == 'done'">
<span class="label label-success label-text-align"><i class="fa fa-fw fa-truck"/> Shipped</span>
</t>
<t t-if="i.state == 'partially_available'">
<span class="label label-warning label-text-align"><i class="fa fa-fw fa-clock-o"/> Partially Available</span>
</t>
<t t-if="i.state == 'cancel'">
<span class="label label-danger label-text-align"><i class="fa fa-fw fa-times"/> Cancelled</span>
</t>
<t t-if="i.state in ['draft', 'waiting', 'confirmed', 'assigned']">
<span class="label label-info label-text-align"><i class="fa fa-fw fa-clock-o"/> Preparation</span>
</t>
</div>
</t>
</div>
</t>
</xpath>
</template>

and this view is inherited from website_portal_sale.orders_followup template i need to remove the  template. how can i inherit and replace the view .can any one suggest correct xpath

Thanks in advance.

Avatar
Descartar
Mejor respuesta

Hello,

Have you tried inheriting this view and replacing it

<template id="your_id" name="Orders Shipping Followup" inherit_id="website_sale_stock.orders_followup_shipping">
<xpath expr="//t[@t-foreach='order.picking_ids']" position="replace">


Avatar
Descartar
Autor

Thanks i will check that

Autor Mejor respuesta

correct answer would be like this 



<template id="orders_followup_inherit_stock" name="Orders Followup Inherit" inherit_id="website_sale_stock.orders_followup_shipping">
<xpath expr="//t[@t-if='order.picking_ids']" position="replace">
</xpath>
</template>
Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
nov 16
7060
2
abr 25
7065
3
feb 23
22102
0
ago 22
3020
0
dic 20
3455