Xpath在Odoo 10中包含()

时间:2018-04-20 13:08:22

标签: xml xpath odoo odoo-10

在Odoo 10中,我尝试用xpath表达式替换此模板的内容。我想要做的只是选择第一个" Weight"并用" test"

替换它
<odoo>
<template id="report_delivery_document2" inherit_id="stock.report_delivery_document">
    <xpath expr="//th[@name='td_sched_date_h']" position="after">
        <th t-if="o.picking_type_id.code == 'outgoing' and o.carrier_id"><strong>Carrier</strong></th>
        <th t-if="o.weight"><strong>Weight</strong></th>
    </xpath>
    <xpath expr="//td[@name='td_sched_date']" position="after">
        <td t-if="o.picking_type_id.code == 'outgoing' and o.carrier_id">
                <span t-field="o.carrier_id"/>
        </td>
        <td t-if="o.weight">
            <span t-field="o.weight"/>
            <span t-field="o.weight_uom_id"/>
        </td>
    </xpath>
</template>

在我的模块中,我尝试了这段代码:

<odoo>
<template id="report_delivery_document3" inherit_id="stock_delivery_slip.report_sale_delivery_slip_createch">
    <!-- <xpath expr="//th[contains(., 'Weight')]" position="replace"> -->
    <!-- <xpath expr="//th/strong[text()='Weight']" position="replace"> -->
        <th>test</th>
    <!-- </xpath> -->
</template>

但没有任何作用,我如何选择&#34;重量&#34;在&#34; report_delivery_document2&#34;中添加属性。 ?

提前致谢。

1 个答案:

答案 0 :(得分:0)

您只需编辑该视图的翻译(report_delivery_document2),然后更改:

<strong>Weight</strong>

进入:

<strong>test</strong>

但是如果你想保留xpath,就这样做:

<xpath expr="//th[@t-if='o.weight']" position="replace">

希望这会有所帮助。