Commit 6b923939111db7ec6646eff301d373c545026287
1 parent
63888a8d48
Exists in
master
hojaruta corregido
Showing
1 changed file
with
0 additions
and
1 deletions
 
Show diff stats
src/views/modal-detalle-carga.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">Detalle de Carga</h5> | 4 | <h5 class="modal-title my-1">Detalle de Carga</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 | Transportista <b>{{hojasRutas.idTransportista}} {{hojasRutas.transportista.NOM}}</b> | 11 | Transportista <b>{{hojasRutas.idTransportista}} {{hojasRutas.transportista.NOM}}</b> | 
| 12 | Unidad <b>{{hojasRutas.vehiculo.codigo}}</b> Tractor <b>{{hojasRutas.vehiculo.tractor}}</b> | 12 | Unidad <b>{{hojasRutas.vehiculo.codigo}}</b> Tractor <b>{{hojasRutas.vehiculo.tractor}}</b> | 
| 13 | </span> | 13 | </span> | 
| 14 | 14 | ||
| 15 | </div> | 15 | </div> | 
| 16 | </div> | 16 | </div> | 
| 17 | <div class="row"> | 17 | <div class="row"> | 
| 18 | <div class="col ml-3"> | 18 | <div class="col ml-3"> | 
| 19 | <span class=" text-left">Fecha <b>{{hojasRutas.fecha | date:'yyyy-MM-dd':'-0300'}}</b></span> | 19 | <span class=" text-left">Fecha <b>{{hojasRutas.fecha | date:'yyyy-MM-dd':'-0300'}}</b></span> | 
| 20 | </div> | 20 | </div> | 
| 21 | </div> | 21 | </div> | 
| 22 | <div class="modal-body" id="modal-body"> | 22 | <div class="modal-body" id="modal-body"> | 
| 23 | <table class="table table-hover table-sm table-striped"> | 23 | <table class="table table-hover table-sm table-striped"> | 
| 24 | <thead> | 24 | <thead> | 
| 25 | <tr> | 25 | <tr> | 
| 26 | <th>Cisterna</th> | 26 | <th>Cisterna</th> | 
| 27 | <th>Capacidad</th> | 27 | <th>Capacidad</th> | 
| 28 | <th>Disponibles</th> | 28 | <th>Disponibles</th> | 
| 29 | <th>Articulo Cargado</th> | 29 | <th>Articulo Cargado</th> | 
| 30 | </tr> | 30 | </tr> | 
| 31 | </thead> | 31 | </thead> | 
| 32 | <tbody> | 32 | <tbody> | 
| 33 | <tr | 33 | <tr | 
| 34 | ng-repeat="(key, cisterna) in hojasRutas.vehiculo.cisternas" | 34 | ng-repeat="(key, cisterna) in hojasRutas.vehiculo.cisternas" | 
| 35 | > | 35 | > | 
| 36 | <td ng-bind="cisterna.id"></td> | 36 | <td ng-bind="cisterna.id"></td> | 
| 37 | <td ng-bind="cisterna.capacidad"></td> | 37 | <td ng-bind="cisterna.capacidad"></td> | 
| 38 | <td class="w-50"> | 38 | <td class="w-50"> | 
| 39 | <input | 39 | <input | 
| 40 | ng-focus="$event.target.select();" | 40 | ng-focus="$event.target.select();" | 
| 41 | ng-model="cisterna.disponible" | 41 | ng-model="cisterna.disponible" | 
| 42 | ng-keyup="validarCisternaDisponible(cisterna)" | 42 | ng-keyup="validarCisternaDisponible(cisterna)" | 
| 43 | class="form-control" | 43 | class="form-control" | 
| 44 | solo-positivos | 44 | solo-positivos | 
| 45 | foca-tipo-input | 45 | foca-tipo-input | 
| 46 | /> | 46 | /> | 
| 47 | </td> | 47 | </td> | 
| 48 | <td class="w-25"> | 48 | <td class="w-25"> | 
| 49 | <div class="input-group "> | 49 | <div class="input-group "> | 
| 50 | <input | 50 | <input | 
| 51 | ng-model="cisterna.nombreArticulo" | 51 | ng-model="cisterna.nombreArticulo" | 
| 52 | class="form-control" | 52 | class="form-control" | 
| 53 | ng-click="seleccionarProductos(key, cisterna)" | 53 | ng-click="seleccionarProductos(key, cisterna)" | 
| 54 | readonly | 54 | readonly | 
| 55 | /> | 55 | /> | 
| 56 | <div class="input-group-append"> | 56 | <div class="input-group-append"> | 
| 57 | <button | 57 | <button | 
| 58 | ladda="searchLoading" | 58 | ladda="searchLoading" | 
| 59 | class="btn btn-outline-secondary form-control" | 59 | class="btn btn-outline-secondary form-control" | 
| 60 | type="button" | 60 | type="button" | 
| 61 | ng-click="seleccionarProductos(key, cisterna)" | 61 | ng-click="seleccionarProductos(key, cisterna)" | 
| 62 | > | 62 | > | 
| 63 | <i class="fa fa-search" aria-hidden="true"></i> | 63 | <i class="fa fa-search" aria-hidden="true"></i> | 
| 64 | </button> | 64 | </button> | 
| 65 | </div> | 65 | </div> | 
| 66 | </div> | 66 | </div> | 
| 67 | </td> | 67 | </td> | 
| 68 | </tr> | 68 | </tr> | 
| 69 | </tbody> | 69 | </tbody> | 
| 70 | </table> | 70 | </table> | 
| 71 | </div> | 71 | </div> | 
| 72 | <div class="modal-footer py-1"> | 72 | <div class="modal-footer py-1"> | 
| 73 | <button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | 73 | <button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | 
| 74 | <button class="btn btn-sm btn-primary" type="button" ng-click="guardar()">Guardar</button> | 74 | <button class="btn btn-sm btn-primary" type="button" ng-click="guardar()">Guardar</button> | 
| 75 | </div> | 75 | </div> | 
| 76 | |||
| 77 | 76 |