refs #5092 added popovers
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Alexandre Riera 2023-03-16 09:47:58 +01:00
parent c46e15c8e4
commit 3f356335db
2 changed files with 36 additions and 15 deletions

View File

@ -56,18 +56,15 @@
<th field="ticketFk">
<span translate>Id Ticket</span>
</th>
<th field="isActive" center>
<th field="isActive">
<span translate>Active</span>
</th>
<th field="hasToInvoice" center>
<th field="hasToInvoice">
<span translate>Has To Invoice</span>
</th>
<th field="isTaxDataChecked" center>
<th field="isTaxDataChecked">
<span translate>Verified data</span>
</th>
<th field="comercialId">
<span translate>Id Comercial</span>
</th>
<th field="comercialName">
<span translate>Comercial</span>
</th>
@ -77,34 +74,60 @@
<tr ng-repeat="client in model.data">
<td>{{client.company | dashIfEmpty}}</td>
<td>{{client.country | dashIfEmpty}}</td>
<td>{{client.clientId | dashIfEmpty}}</td>
<td>
<vn-span
class="link"
ng-click="clientDescriptor.show($event, client.clientId)">
{{::client.clientId | dashIfEmpty}}
</vn-span>
</td>
<td>{{client.clientSocialName | dashIfEmpty}}</td>
<td>{{client.amount | currency: 'EUR':2 | dashIfEmpty}}</td>
<td>{{client.taxableBase | dashIfEmpty}}</td>
<td>{{client.ticketFk | dashIfEmpty}}</td>
<td center>
<td>
<vn-span
class="link"
ng-click="ticketDescriptor.show($event, client.ticketFk)">
{{::client.ticketFk | dashIfEmpty}}
</vn-span>
</td>
<td>
<vn-check
disabled="true"
ng-model="client.isActive">
</vn-check>
</td>
<td center>
<td>
<vn-check
disabled="true"
ng-model="client.hasToInvoice">
</vn-check>
</td>
<td center>
<td>
<vn-check
disabled="true"
ng-model="client.isTaxDataChecked">
</vn-check>
</td>
<td>{{client.comercialId | dashIfEmpty}}</td>
<td>{{client.comercialName | dashIfEmpty}}</td>
<td>
<vn-span
class="link"
ng-click="workerDescriptor.show($event, client.comercialId)">
{{::client.comercialName | dashIfEmpty}}
</vn-span>
</td>
</tr>
</tbody>
</table>
</slot-table>
</smart-table>
</vn-card>
<vn-ticket-descriptor-popover
vn-id="ticket-descriptor">
</vn-ticket-descriptor-popover>
<vn-client-descriptor-popover
vn-id="client-descriptor">
</vn-client-descriptor-popover>
<vn-worker-descriptor-popover
vn-id="worker-descriptor">
</vn-worker-descriptor-popover>

View File

@ -52,8 +52,6 @@ export default class Controller extends Section {
return {'taxableBase': value};
case 'ticketFk':
return {'ticketFk': value};
case 'comercialId':
return {'comercialId': value};
case 'comercialName':
return {'comercialName': value};
}