Commit 2e2bd8c394443ac93bd379ea161e1f1e9e3963c5
1 parent
13e8cc9564
Exists in
master
mejoras en visualizacion para tabla de articulos
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
src/views/nota-pedido.html
... | ... | @@ -76,7 +76,7 @@ |
76 | 76 | </th> |
77 | 77 | </tr> |
78 | 78 | </thead> |
79 | - <tbody class="tabla-articulos-body"> | |
79 | + <tbody class="tabla-articulo-body"> | |
80 | 80 | <tr |
81 | 81 | ng-repeat="(key, articulo) in articulosTabla" |
82 | 82 | ng-show="show || key == (articulosTabla.length - 1)" |
... | ... | @@ -116,7 +116,7 @@ |
116 | 116 | class="tabla-articulo-subtotal text-right" |
117 | 117 | ng-bind="(articulo.precio * articulo.cantidad) | currency: '$'"> |
118 | 118 | </td> |
119 | - <td class="tabla-articulo-boton text-right"> | |
119 | + <td class="tabla-articulo-boton text-center"> | |
120 | 120 | <button |
121 | 121 | class="btn btn-outline-secondary btn-sm" |
122 | 122 | ng-click="quitarArticulo(key)" |
... | ... | @@ -170,9 +170,9 @@ |
170 | 170 | ng-value="getSubTotal() | currency: '$'" |
171 | 171 | readonly |
172 | 172 | ></td> |
173 | - <td class="tabla-articulo-boton text-right"> | |
173 | + <td class="tabla-articulo-boton text-center align-middle"> | |
174 | 174 | <button |
175 | - class="btn btn-outline-secondary btn-sm" | |
175 | + class="btn btn-outline-secondary" | |
176 | 176 | ng-click="agregarATabla(13)" |
177 | 177 | > |
178 | 178 | <i class="fa fa-save"></i> |
... | ... | @@ -180,7 +180,7 @@ |
180 | 180 | </td> |
181 | 181 | </tr> |
182 | 182 | <tr ng-show="cargando"> |
183 | - <td colspan="6"> | |
183 | + <td colspan="7"> | |
184 | 184 | <input |
185 | 185 | placeholder="Seleccione Articulo" |
186 | 186 | class="form-control form-control-sm" |
... | ... | @@ -190,7 +190,7 @@ |
190 | 190 | </td> |
191 | 191 | </tr> |
192 | 192 | <tr class=""> |
193 | - <td colspan="3"> | |
193 | + <td colspan="4"> | |
194 | 194 | <strong>Cantidad Items:</strong> |
195 | 195 | <a ng-bind="articulosTabla.length"></a> |
196 | 196 | </td> |
... | ... | @@ -198,7 +198,7 @@ |
198 | 198 | <td class="table-celda-total text-right" colspan="1"> |
199 | 199 | <h3>{{getTotal() | currency: '$'}}</h3> |
200 | 200 | </td> |
201 | - <td colspan="2" class="text-right"> | |
201 | + <td class="text-right"> | |
202 | 202 | <button |
203 | 203 | type="button" |
204 | 204 | class="btn btn-default btn-sm" |