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
| ... | ... | @@ -17,9 +17,7 @@ | 
| 17 | 17 | <th>Producto</th> | 
| 18 | 18 | <th>Capacidad Total</th> | 
| 19 | 19 | <th>Carga</th> | 
| 20 | - <th>Disponible</th> | |
| 21 | - <th class="text-center"> | |
| 22 | - </th> | |
| 20 | + <th class="text-center">Disponible</th> | |
| 23 | 21 | </tr> | 
| 24 | 22 | </thead> | 
| 25 | 23 | <tbody> | 
| ... | ... | @@ -28,7 +26,7 @@ | 
| 28 | 26 | <td>producto</td> | 
| 29 | 27 | <td ng-bind="cisterna.capacidad"></td> | 
| 30 | 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 | 30 | </tr> | 
| 33 | 31 | </tbody> | 
| 34 | 32 | </table> |