modal-tipo-visita.html
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<div class="modal-header py-1">
    <div class="row w-100">
        <div class="col-12">
            <h5 class="modal-title my-1">Seleccionar tipo de visita</h5>
        </div>
    </div>
</div>
<div class="modal-body" id="modal-body">
    <table class="table table-striped table-sm">
        <thead>
            <tr>
                <th>Tipo</th>
                <th></th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Nota de pedido</td>
                <td>
                    <button
                        type="button"
                        class="btn btn-secondary btn-xs p-1 float-right"
                        ng-click="select(1)"
                    >
                        <i class="fa fa-circle-thin" aria-hidden="true"></i>
                    </button>
                </td>
            </tr>
            <tr>
                <td>Cobranza</td>
                <td>
                    <button
                        type="button"
                        class="btn btn-secondary btn-xs p-1 float-right"
                        ng-click="select(2)"
                    >
                        <i class="fa fa-circle-thin" aria-hidden="true"></i>
                    </button>
                </td>
            </tr>
        </tbody>
    </table>
</div>
<div class="modal-footer py-1">
    <button class="btn btn-sm btn-secondary" type="button" ng-click="cancel()">Cancelar</button>
</div>