Commit 8c790eebc0699cf6c456861bb087e049f53ce387

Authored by Benjamin Rodriguez
1 parent 531d303689
Exists in master

hojaruta corregido

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="table table-default table-hover table-sm table-abm table-striped mb-0"> 13 <table class="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>Disponible</th>
21 <th class="text-center"> 21 <th class="text-center">
22 </th> 22 </th>
23 </tr> 23 </tr>
24 </thead> 24 </thead>
25 <tbody> 25 <tbody>
26 <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas"> 26 <tr ng-repeat="cisterna in hojaRuta.vehiculo.cisternas">
27 <td ng-bind="cisterna.codigo"></td> 27 <td ng-bind="cisterna.codigo"></td>
28 <td>producto</td> 28 <td>producto</td>
29 <td ng-bind="cisterna.capacidad"></td> 29 <td ng-bind="cisterna.capacidad"></td>
30 <td ng-bind="cisterna.cantidadDescargada"></td> 30 <td ng-bind="cisterna.cantidadDescargada"></td>
31 <td>{{cisterna.capacidad - cisterna.cantidadDescargada}}</td> 31 <td>{{cisterna.capacidad - cisterna.cantidadDescargada}}</td>
32 </tr> 32 </tr>
33 </tbody> 33 </tbody>
34 </table> 34 </table>
35 </div> 35 </div>
36 </div>
36 </div>