Commit 988b6dab939003ad04f9b112205b671ef8b22572
1 parent
819e6d8a2b
Exists in
master
Cambio en estilo de la pantalla.
Showing
1 changed file
with
21 additions
and
18 deletions
Show diff stats
src/views/foca-modal-descarga.html
... | ... | @@ -35,40 +35,41 @@ |
35 | 35 | <div class="col-9 align-self-center mt-1"> |
36 | 36 | <label ng-bind="remito.cliente.DOM"></label> |
37 | 37 | </div> |
38 | - <!-- <div class="col-3 pl-1"> | |
39 | - <strong>Punto descarga</strong> | |
40 | - </div> | |
41 | - <div class="col-9"> | |
42 | - <label>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fugiat facilis commodi dolore aperiam dolor quaerat, sit earum vero iste itaque aspernatur qui nisi id repudiandae error architecto inventore vel temporibus.</label> | |
43 | - </div> --> | |
44 | 38 | <div class="col-3 align-self-center px-1 mt-1"> |
45 | 39 | <strong>Remito Nº</strong> |
46 | 40 | </div> |
47 | - <div class="col-9 mt-1"> | |
41 | + <div class="col-3 pr-0 mt-1"> | |
48 | 42 | <input |
49 | - type="text" class="form-control form-control-sm" | |
50 | - ng-model="nroRemito" readonly> | |
43 | + type="text" class="text-center form-control form-control-sm" | |
44 | + ng-model="nroSucursal" readonly> | |
51 | 45 | </div> |
52 | - <div class="col-12 mt-3"> | |
46 | + <div class="col-6 mt-1"> | |
47 | + <input | |
48 | + type="number" class="text-center form-control form-control-sm" | |
49 | + ng-model="remito.numeroRemito"> | |
50 | + </div> | |
51 | + <div class="col-12 mt-3 p-0"> | |
53 | 52 | <table class="table"> |
54 | 53 | <thead> |
55 | 54 | <tr> |
56 | 55 | <th>Cisterna</th> |
57 | - <th>Articulo</th> | |
58 | - <th>Disponibles</th> | |
56 | + <th>Articulo/Disponibles</th> | |
59 | 57 | <th>Descargar</th> |
60 | 58 | </tr> |
61 | 59 | </thead> |
62 | 60 | <tbody> |
63 | 61 | <tr ng-repeat="cisterna in cisternas"> |
64 | - <td ng-bind="cisterna.codigo"></td> | |
65 | - <td ng-bind="cisterna.cisternaCarga.articulo.DetArt"></td> | |
66 | - <td ng-bind="cisterna.cisternaCarga.cantidad"></td> | |
62 | + <td class="text-center" ng-bind="cisterna.codigo"></td> | |
63 | + <td class="text-center"> | |
64 | + {{cisterna.cisternaCarga.articulo.DetArt}}<br> | |
65 | + {{cisterna.cisternaCarga.cantidad}} | |
66 | + </td> | |
67 | 67 | <td> |
68 | 68 | <input |
69 | - ng-init="cisterna.cisternaCarga.descargar = cisterna.cisternaCarga.cantidad" | |
69 | + ng-init="cisterna.cisternaCarga.descargar = | |
70 | + cisterna.cisternaCarga.cantidad" | |
70 | 71 | ng-model="cisterna.cisternaCarga.descargar" |
71 | - type="text" class="form-control col-12"> | |
72 | + type="number" class="text-center form-control col-12"> | |
72 | 73 | </td> |
73 | 74 | </tr> |
74 | 75 | </tbody> |
... | ... | @@ -78,7 +79,9 @@ |
78 | 79 | <strong>Nº Recibo</strong> |
79 | 80 | </div> |
80 | 81 | <div class="col-9"> |
81 | - <input ng-model="nroRecibo" class="form-control" type="text" placeholder="Nº de recibo"> | |
82 | + <input | |
83 | + ng-model="nroRecibo" class="form-control" | |
84 | + type="number" placeholder="Nº de recibo"> | |
82 | 85 | </div> |
83 | 86 | </div> |
84 | 87 | </div> |