Commit 7530f73686a74adf6be6d4ea42847e088f01579f
1 parent
94d7eca486
Exists in
master
checkbox, boton eliminar
Showing
1 changed file
with
16 additions
and
1 deletions
Show diff stats
src/views/foca-modal-crear-hoja-ruta.html
... | ... | @@ -84,12 +84,27 @@ |
84 | 84 | <td ng-bind="[remito.sucursal, remito.numeroRemito] | comprobante"></td> |
85 | 85 | <td ng-bind="remito.nombreCliente"></td> |
86 | 86 | <td ng-bind="remito.domicilioStamp"></td> |
87 | - </tr> | |
87 | + <td> | |
88 | + <div class="custom-control custom-checkbox"> | |
89 | + <input | |
90 | + type="checkbox" | |
91 | + ng-model="remito.checked" | |
92 | + class="custom-control-input" | |
93 | + id="{{remito.id}}"> | |
94 | + <label class="custom-control-label" for="{{remito.id}}"></label> | |
95 | + </div> | |
96 | + </td> | |
97 | + </tr> | |
88 | 98 | </tbody> |
89 | 99 | </table> |
90 | 100 | </div> |
91 | 101 | <div class="modal-footer py-1"> |
92 | 102 | <button |
103 | + class="btn btn-sm btn-danger" | |
104 | + type="button" | |
105 | + ng-click="eliminarRemitos()" | |
106 | + ng-disabled="minimoUnoChecked()">Eliminar</button> | |
107 | + <button | |
93 | 108 | class="btn btn-sm btn-secondary" |
94 | 109 | ladda="cargando" |
95 | 110 | type="button" |