Commit e300fd4becdccfb720f5da9adcc397683e5ba886

Authored by Marcelo Puebla
1 parent b323b10118
Exists in master

Cambio en los checkbox.

Showing 1 changed file with 7 additions and 7 deletions   Show diff stats
src/views/autorizar-nota-pedido.html
... ... @@ -15,18 +15,18 @@
15 15 </tr>
16 16 </thead>
17 17 <tbody>
18   - <tr ng-repeat="notaPedido in notasPedido">
  18 + <tr ng-repeat="(key, notaPedido) in notasPedido">
19 19 <td ng-bind="[notaPedido.sucursal, notaPedido.numeroNotaPedido] | comprobante"></td>
20 20 <td ng-bind="notaPedido.nombreCliente"></td>
21 21 <td ng-bind="notaPedido.vendedor.NOM"></td>
22 22 <td>
23   - <label class="checkbox">
24   - <input
25   - class="form-control-sm"
  23 + <input
26 24 type="checkbox"
27   - ng-model="notaPedido.checked">
28   - <span class="checkmark"></span>
29   - </label>
  25 + class="custom-control-input float-right"
  26 + id="checkSelect{{key}}"
  27 + ng-model="notaPedido.checked"
  28 + >
  29 + <label class="custom-control-label float-right" for="checkSelect{{key}}"></label>
30 30 <button class="btn" type="button" ng-click="verNotaPedido()">
31 31 <i class="fa fa-eye"></i>
32 32 </button>