Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
o.employee_id.name特定の値を持つ場合にのみ、セル テーブル内の変数の値を表示したいと考えています。私はこのように試しましたが、構文エラーが発生します:
o.employee_id.name
<t t-if="o.employee_id.name=='naswar'"> <td> <span t-field="o.employee_id.name"/> </td> </t>
htmlタグで条件を適用することもできます
条件が true の場合、span が表示されます 。そうでない場合、< td > は空になります。
<td> <span t-if="o.employee_id.name == 'naswar'" t-field="o.employee_id.name"/> </td>