Commit 23ed50ff508f0d0566c82363af3bcee4bca4d280
1 parent
0712514310
Exists in
master
hojaruta corregido
Showing
1 changed file
with
0 additions
and
1 deletions
 
Show diff stats
src/views/modal-hojas-ruta.html
| 1 | <div class="modal-header py-1"> | 1 | <div class="modal-header py-1"> | 
| 2 | <div class="row w-100"> | 2 | <div class="row w-100"> | 
| 3 | <div class="col-lg-6"> | 3 | <div class="col-lg-6"> | 
| 4 | <h5 class="modal-title my-1">Hojas de Ruta</h5> | 4 | <h5 class="modal-title my-1">Hojas de Ruta</h5> | 
| 5 | </div> | 5 | </div> | 
| 6 | </div> | 6 | </div> | 
| 7 | </div> | 7 | </div> | 
| 8 | <!-- <div class="row"> | 8 | <!-- <div class="row"> | 
| 9 | <div class="col ml-3 mt-2"> | 9 | <div class="col ml-3 mt-2"> | 
| 10 | <span class=" text-left"> | 10 | <span class=" text-left"> | 
| 11 | Unidad <b>{{hojasRutas.vehiculo.codigo}}</b> Tractor <b>{{hojasRutas.vehiculo.tractor}}</b> | 11 | Unidad <b>{{hojasRutas.vehiculo.codigo}}</b> Tractor <b>{{hojasRutas.vehiculo.tractor}}</b> | 
| 12 | </span> | 12 | </span> | 
| 13 | </div> | 13 | </div> | 
| 14 | </div> --> | 14 | </div> --> | 
| 15 | <div class="modal-body" id="modal-body"> | 15 | <div class="modal-body" id="modal-body"> | 
| 16 | <table class="table table-hover table-sm table-striped"> | 16 | <table class="table table-hover table-sm table-striped"> | 
| 17 | <thead> | 17 | <thead> | 
| 18 | <tr> | 18 | <tr> | 
| 19 | <th>Fecha</th> | 19 | <th>Fecha</th> | 
| 20 | <th>N°</th> | 20 | <th>N°</th> | 
| 21 | <th>Ver</th> | 21 | <th>Ver</th> | 
| 22 | <th></th> | 22 | <th></th> | 
| 23 | </tr> | 23 | </tr> | 
| 24 | </thead> | 24 | </thead> | 
| 25 | <tbody> | 25 | <tbody> | 
| 26 | <tr ng-repeat="remito in hojasRutas.remitos"> | 26 | <tr ng-repeat="remito in hojasRutas.remitos"> | 
| 27 | <td ng-bind="[remito.sucursal, remito.numeroRemito] | comprobante"></td> | 27 | <td ng-bind="[remito.sucursal, remito.numeroRemito] | comprobante"></td> | 
| 28 | <td ng-bind="remito.nombreCliente"></td> | 28 | <td ng-bind="remito.nombreCliente"></td> | 
| 29 | <td ng-bind="remito.domicilioStamp"></td> | 29 | <td ng-bind="remito.domicilioStamp"></td> | 
| 30 | <td> | 30 | <td> | 
| 31 | <button | 31 | <button | 
| 32 | type="button" | 32 | type="button" | 
| 33 | class="btn btn-xs p-1 float-right" | 33 | class="btn btn-xs p-1 float-right" | 
| 34 | ng-class="{ | 34 | ng-class="{ | 
| 35 | 'btn-secondary': selectedCobranza != key, | 35 | 'btn-secondary': selectedCobranza != key, | 
| 36 | 'btn-primary': selectedCobranza == key | 36 | 'btn-primary': selectedCobranza == key | 
| 37 | }" | 37 | }" | 
| 38 | foca-focus="selectedCobranza == {{key}}" | 38 | foca-focus="selectedCobranza == {{key}}" | 
| 39 | ng-keydown="itemCobranza($event.keyCode)" | 39 | ng-keydown="itemCobranza($event.keyCode)" | 
| 40 | > | 40 | > | 
| 41 | <i class="fa fa-circle-thin" aria-hidden="true"></i> | 41 | <i class="fa fa-circle-thin" aria-hidden="true"></i> | 
| 42 | </button> | 42 | </button> | 
| 43 | </td>> | 43 | </td>> | 
| 44 | </tr> | 44 | </tr> | 
| 45 | </tbody> | 45 | </tbody> | 
| 46 | </table> | 46 | </table> | 
| 47 | </div> | 47 | </div> | 
| 48 | <div class="modal-footer py-1"> | 48 | <div class="modal-footer py-1"> | 
| 49 | <button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | 49 | <button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | 
| 50 | </div> | 50 | </div> | 
| 51 | </div> |