gpt4 book ai didi

openerp - 帐户发票报告

转载 作者:行者123 更新时间:2023-12-01 03:21:00 25 4
gpt4 key购买 nike

<openerp>
<data>

<template id="report_invoice_document" inherit_id="account.report_invoice_document">

<xpath expr="//span[@t-field='t.amount']" position="after">
<span t-field="t.note"/>
</xpath>
</template>
</data>
</openerp>

我在税表内的发票报告中添加了字段。但是我怎样才能让税表只有在有备注字段时才可见,如果备注为空,我该如何隐藏。

我尝试使用 t-if 进行一些操作,但我的目标是显示税表以在注释字段不为空时不隐藏它。有没有什么t-ifnot?
<xpath expr="//span[@t-field='t.amount']/../../../../thead/tr" position="replace">
<th t-if="o.notes"

</xpath>

最佳答案

是的。我们可以通过以下示例来实现:

<t t-if="o.notes">
<!-- Fields visible if Notes has value-->
</t>

<t t-if="not o.notes">
<!-- Fields visible if Notes has no value-->
</t>

编辑

在其中一种条件下设计您的 table 。
<t t-if="o.notes">
<table style="border:1px solid; width:100%">
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</t>

关于openerp - 帐户发票报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45036960/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com