[IMP] account_reconcile_oca: Hide trash on reconciled items

pull/585/head
Enric Tobella 2023-09-05 15:02:02 +02:00
parent 2e164c9123
commit f28dcf78fc
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
</th> </th>
<th class="text-end">Debit</th> <th class="text-end">Debit</th>
<th class="text-end">Credit</th> <th class="text-end">Credit</th>
<th /> <th t-if="! props.record.data.is_reconciled" />
</thead> </thead>
<tbody> <tbody>
<t <t
@ -130,7 +130,7 @@
class="btn fa fa-trash-o" class="btn fa fa-trash-o"
role="button" role="button"
t-on-click="(ev) => this.onTrashLine(ev, reconcile_line)" t-on-click="(ev) => this.onTrashLine(ev, reconcile_line)"
t-if="reconcile_line.kind == 'other'" t-if="reconcile_line.kind == 'other' &amp;&amp; ! props.record.data.is_reconciled"
/> />
</td> </td>
</tr> </tr>