Commit 216006b8ce089cb8a73636ae29b25bda2c795726
1 parent
ed56953fa0
Exists in
master
arreglo formato de tabla
Showing
1 changed file
with
2 additions
and
4 deletions
 
Show diff stats
src/views/orden-carga.html
| 1 | <div class="row"> | 1 | <div class="row"> | 
| 2 | <foca-cabecera-facturador titulo="'Orden de Carga'" numero="puntoVenta + '-' + comprobante" | 2 | <foca-cabecera-facturador titulo="'Orden de Carga'" numero="puntoVenta + '-' + comprobante" | 
| 3 | fecha="ordenCarga.fechaCarga" class="mb-0 col-lg-12"></foca-cabecera-facturador> | 3 | fecha="ordenCarga.fechaCarga" class="mb-0 col-lg-12"></foca-cabecera-facturador> | 
| 4 | </div> | 4 | </div> | 
| 5 | <div class="row"> | 5 | <div class="row"> | 
| 6 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> | 6 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> | 
| 7 | <div class="row px-5 py-2 botonera-secundaria"> | 7 | <div class="row px-5 py-2 botonera-secundaria"> | 
| 8 | <div class="col-12"> | 8 | <div class="col-12"> | 
| 9 | <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador> | 9 | <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador> | 
| 10 | </div> | 10 | </div> | 
| 11 | </div> | 11 | </div> | 
| 12 | 12 | ||
| 13 | <table class="puntero table table-default table-hover table-sm table-abm table-striped mb-0"> | 13 | <table class="puntero table table-default table-hover table-sm table-abm table-striped mb-0"> | 
| 14 | <thead> | 14 | <thead> | 
| 15 | <tr> | 15 | <tr> | 
| 16 | <th>Cisterna</th> | 16 | <th>Cisterna</th> | 
| 17 | <th>Producto</th> | 17 | <th>Producto</th> | 
| 18 | <th>Capacidad Total</th> | 18 | <th>Capacidad Total</th> | 
| 19 | <th>Carga</th> | 19 | <th>Carga</th> | 
| 20 | <th>Disponible</th> | 20 | <th class="text-center">Disponible</th> | 
| 21 | <th class="text-center"> | ||
| 22 | </th> | ||
| 23 | </tr> | 21 | </tr> | 
| 24 | </thead> | 22 | </thead> | 
| 25 | <tbody> | 23 | <tbody> | 
| 26 | <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas"> | 24 | <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas"> | 
| 27 | <td ng-bind="cisterna.codigo"></td> | 25 | <td ng-bind="cisterna.codigo"></td> | 
| 28 | <td>producto</td> | 26 | <td>producto</td> | 
| 29 | <td ng-bind="cisterna.capacidad"></td> | 27 | <td ng-bind="cisterna.capacidad"></td> | 
| 30 | <td ng-bind="cisterna.cantidadDescargada"></td> | 28 | <td ng-bind="cisterna.cantidadDescargada"></td> | 
| 31 | <td>{{cisterna.capacidad - cisterna.cantidadDescargada}}</td> | 29 | <td class="text-center">{{cisterna.capacidad - cisterna.cantidadDescargada}}</td> | 
| 32 | </tr> | 30 | </tr> | 
| 33 | </tbody> | 31 | </tbody> | 
| 34 | </table> | 32 | </table> | 
| 35 | </div> | 33 | </div> | 
| 36 | </div> | 34 | </div> | 
| 37 | 35 |