modal-hojas-ruta.html
1.76 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
<div class="modal-header py-1">
<div class="row w-100">
<div class="col-lg-6">
<h5 class="modal-title my-1">Hojas de Ruta</h5>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col ml-3 mt-2">
<span class=" text-left">
Unidad <b>{{hojasRutas.vehiculo.codigo}}</b> Tractor <b>{{hojasRutas.vehiculo.tractor}}</b>
</span>
</div>
</div> -->
<div class="modal-body" id="modal-body">
<table class="table table-hover table-sm table-striped">
<thead>
<tr>
<th>Fecha</th>
<th>N°</th>
<th>Ver</th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="remito in hojasRutas.remitos">
<td ng-bind="[remito.sucursal, remito.numeroRemito] | comprobante"></td>
<td ng-bind="remito.nombreCliente"></td>
<td ng-bind="remito.domicilioStamp"></td>
<td>
<button
type="button"
class="btn btn-xs p-1 float-right"
ng-class="{
'btn-secondary': selectedCobranza != key,
'btn-primary': selectedCobranza == key
}"
foca-focus="selectedCobranza == {{key}}"
ng-keydown="itemCobranza($event.keyCode)"
>
<i class="fa fa-circle-thin" aria-hidden="true"></i>
</button>
</td>>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer py-1">
<button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button>
</div>