modal-actualizar-punto-descarga.html
2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div class="modal-header py-1">
<h5 class="modal-title">Actualizar posición punto de descarga</h5>
</div>
<div class="modal-body" id="modal-body">
<table
class="table table-striped table-sm col-12"
ng-hide="ingreso || cargaArticulos">
<thead>
<tr>
<th>Código</th>
<th>Descripción</th>
<th>Latitud</th>
<th>Longitud</th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-show="!puntosDescarga.length">
<td colspan="5">
No se encontraron resultados.
</td>
</tr>
<tr class="selected"
ng-repeat="(key, puntoDescarga) in puntosDescarga | filter: filters"
>
<td
ng-bind="puntoDescarga.puntoDescarga.id | rellenarDigitos: 3: 0"
ng-click="seleccionarPunto(key)"></td>
<td
ng-bind="puntoDescarga.puntoDescarga.descripcion"
ng-click="seleccionarPunto(key)"></td>
<td
ng-bind="puntoDescarga.puntoDescarga.latitud"
ng-click="seleccionarPunto(key)"></td>
<td
ng-bind="puntoDescarga.puntoDescarga.longitud"
ng-click="seleccionarPunto(key)"></td>
<td>
<button
type="button"
class="btn btn-xs btn-primary p-1 float-right mr-5"
ng-click="select(puntoDescarga.puntoDescarga)"
title="Actualizar">
<i class="fa fa-circle-thin" aria-hidden="true"></i>
</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer py-2">
<button
class="btn btn-secondary btn-sm"
type="button"
ng-click="cancel()"
>Cancelar</button>
</div>