Commit ba81ca837cce02698e9f28315e57437c81138963
1 parent
8a632ac2c9
Exists in
master
cambio nombre clase
Showing
1 changed file
with
1 additions
and
1 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="cursero-default 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 class="text-center">Disponible</th> | 20 | <th class="text-center">Disponible</th> |
21 | </tr> | 21 | </tr> |
22 | </thead> | 22 | </thead> |
23 | <tbody> | 23 | <tbody> |
24 | <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas"> | 24 | <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas"> |
25 | <td ng-bind="cisterna.codigo"></td> | 25 | <td ng-bind="cisterna.codigo"></td> |
26 | <td>producto</td> | 26 | <td>producto</td> |
27 | <td ng-bind="cisterna.capacidad"></td> | 27 | <td ng-bind="cisterna.capacidad"></td> |
28 | <td ng-bind="cisterna.cantidadDescargada"></td> | 28 | <td ng-bind="cisterna.cantidadDescargada"></td> |
29 | <td class="text-center">{{cisterna.capacidad - cisterna.cantidadDescargada}}</td> | 29 | <td class="text-center">{{cisterna.capacidad - cisterna.cantidadDescargada}}</td> |
30 | </tr> | 30 | </tr> |
31 | </tbody> | 31 | </tbody> |
32 | </table> | 32 | </table> |
33 | </div> | 33 | </div> |
34 | </div> | 34 | </div> |
35 | 35 |