Commit c85704e8b76ce43454024663f0eab87e83e7a68d
Exists in
master
Merge branch 'master' into 'master'
Master(efernandez) See merge request !4
Showing
1 changed file
Show diff stats
src/views/modal-efectivo.html
1 | <div class="modal-header"> | 1 | <div class="modal-header"> |
2 | <h3 class="modal-title">Ingrese Efectivo</h3> | 2 | <h3 class="modal-title">Ingrese Efectivo</h3> |
3 | </div> | 3 | </div> |
4 | <div class="modal-body" id="modal-body"> | 4 | <div class="modal-body" id="modal-body"> |
5 | <form name="formEfectivo"> | 5 | <form name="formEfectivo"> |
6 | <div class="input-group"> | 6 | <div class="input-group"> |
7 | <div class="input-group-prepend"> | 7 | <div class="input-group-prepend"> |
8 | <div class="input-group-text form-control form-control-sm">$</div> | 8 | <div class="input-group-text form-control form-control-sm">$</div> |
9 | </div> | 9 | </div> |
10 | <input | 10 | <input |
11 | teclado-virtual | 11 | teclado-virtual |
12 | foca-tipo-input | 12 | foca-tipo-input |
13 | ng-model="efectivo" | 13 | ng-model="efectivo" |
14 | foca-focus="true" | 14 | foca-focus="true" |
15 | class="form-control form-control-sm" | 15 | class="form-control form-control-sm" |
16 | placeholder="Ingrese monto" | 16 | placeholder="Ingrese monto" |
17 | ng-keypress="aceptar($event.keyCode)" | 17 | ng-keypress="aceptar($event.keyCode)" |
18 | > | 18 | > |
19 | </div> | 19 | </div> |
20 | <br> | ||
21 | <div class="alert alert-warning"> | ||
22 | Si ya ha ingresado efectivo, el monto que ingrese se sumará o restará al ya ingresado. | ||
23 | </div> | ||
24 | </form> | 20 | </form> |
25 | </div> | 21 | </div> |
26 | <div class="modal-footer"> | 22 | <div class="modal-footer"> |
27 | <button | 23 | <button |
28 | class="btn btn-primary" | 24 | class="btn btn-primary" |
29 | type="button" | 25 | type="button" |
30 | ng-click="aceptar(13)" | 26 | ng-click="aceptar(13)" |
31 | ng-disabled="!formEfectivo.$valid" | 27 | ng-disabled="!formEfectivo.$valid" |
32 | >Aceptar</button> | 28 | >Aceptar</button> |
33 | <button class="btn btn-secondary" type="button" ng-click="cancel()">Cancelar</button> | 29 | <button class="btn btn-secondary" type="button" ng-click="cancel()">Cancelar</button> |
34 | </div> | 30 | </div> |
35 | 31 |