Commit c3a38c185374074c79fe00928c5f475a86e13440

Authored by Eric Fernandez
1 parent af8a43d04a
Exists in master

leyendas titulos, tamaños th

Showing 1 changed file with 11 additions and 8 deletions   Show diff stats
src/views/foca-detalle-vehiculo.html
1 1 <div class="modal-header">
2 2 <h4>Detalle de carga</h4>
3   - Vehículo <strong ng-bind="vehiculo.tractor"></strong>
4 3 Transportista <strong ng-bind="vehiculo.transportista.NOM"></strong>
  4 + Unidad <strong ng-bind="vehiculo.codigo"></strong>
  5 + Tractor <strong ng-bind="vehiculo.tractor"></strong>
5 6 <br>
6 7 <div ng-show="idRemito !== -1">
7 8 <span>Remito Nº</span>
8 9 <strong ng-bind="[remito.sucursal, remito.numeroRemito] | comprobante"></strong>
  10 + <span>, Fecha</span>
  11 + <strong ng-bind="remito.fechaRemito | date: 'dd/MM/yyyy HH:mm'"></strong>
9 12 <span>, Cliente</span>
10 13 <strong ng-bind="remito.nombreCliente"></strong>
11   - <span>, Domicilio</span>
  14 + <span>, Domicilio entrega</span>
12 15 <strong ng-bind="remito.domicilioStamp"></strong>
13 16 </div>
14 17 </div>
... ... @@ -44,9 +47,9 @@
44 47 <table class="table table-sm">
45 48 <thead>
46 49 <tr>
47   - <th>Cisterna</th>
48   - <th>Cantidad asignada</th>
49   - <th>Estado</th>
  50 + <th width="10%">Cisterna</th>
  51 + <th width="20%">Cantidad asignada</th>
  52 + <th width="35%">Estado</th>
50 53 <th>Articulo cargado</th>
51 54 </tr>
52 55 </thead>
... ... @@ -65,9 +68,9 @@
65 68 ng-change="actualizarArticulo()"
66 69 >
67 70 </td>
68   - <td colspan="2"><div class="progress foca-alto-progress pl-0 pr-0 mt-1">
  71 + <td><div class="progress foca-alto-progress pl-0 pr-0 mt-1">
69 72 <strong
70   - class="mt-2 col-3 text-center position-absolute"
  73 + class="mt-2 col-4 text-center position-absolute"
71 74 ng-bind="(cisterna.cisternaCarga.cantidad || 0) + '/' + (cisterna.capacidad)">
72 75 </strong>
73 76 <div
... ... @@ -111,5 +114,5 @@
111 114 ladda="cargando"
112 115 type="button"
113 116 ng-click="aceptar()"
114   - ng-disabled="tieneArticulosPendientes()">Cargar</button>
  117 + ng-disabled="tieneArticulosPendientes() || idRemito === -1">Cargar</button>
115 118 </div>