Commit 5d0590609c846192db4b8169443289976b19e078
Exists in
master
and in
1 other branch
Merge remote-tracking branch 'upstream/master'
Showing
2 changed files
Show diff stats
src/js/controller.js
src/views/foca-admin-seguimiento.html
... | ... | @@ -31,7 +31,7 @@ |
31 | 31 | class="btn col-12 my-1" |
32 | 32 | ng-click="general()" |
33 | 33 | >General</button> |
34 | - <button | |
34 | + <button | |
35 | 35 | type="button" |
36 | 36 | ng-class="{'active': idUsuario != 0}" |
37 | 37 | class="btn col-12 my-1" |
... | ... | @@ -66,6 +66,66 @@ |
66 | 66 | ng-show="actividad == 'Cobranza'" |
67 | 67 | > |
68 | 68 | </div> |
69 | + <div ng-show="actividad === 'Entrega de producto'"> | |
70 | + <div class="custom-control custom-radio"> | |
71 | + <input | |
72 | + type="radio" | |
73 | + class="custom-control-input" | |
74 | + id="idTodos" | |
75 | + name="filtro" | |
76 | + ng-model="filtroEstado" | |
77 | + ng-change="search()" | |
78 | + checked> | |
79 | + <label class="custom-control-label pb-3" for="idTodos"></label> | |
80 | + <img src="img/marker-icon-grey.png"> | |
81 | + <strong>Todos</strong> | |
82 | + </div> | |
83 | + <div class="custom-control custom-radio"> | |
84 | + <input | |
85 | + type="radio" | |
86 | + class="custom-control-input" | |
87 | + id="entregado" | |
88 | + name="filtro" | |
89 | + ng-model="filtroEstado" | |
90 | + ng-change="search()" | |
91 | + ng-value="false"> | |
92 | + <label class="custom-control-label pb-3" for="entregado"></label> | |
93 | + <img src="img/marker-icon-green.png"> | |
94 | + <strong>Entregado</strong> | |
95 | + </div> | |
96 | + <div class="custom-control custom-radio"> | |
97 | + <input | |
98 | + type="radio" | |
99 | + class="custom-control-input" | |
100 | + id="noEntregado" | |
101 | + name="filtro" | |
102 | + ng-model="filtroEstado" | |
103 | + ng-change="search()" | |
104 | + ng-value="true"> | |
105 | + <label class="custom-control-label pb-3" for="noEntregado"></label> | |
106 | + <img src="img/marker-icon-yellow.png"> | |
107 | + <strong>No entregado</strong> | |
108 | + </div> | |
109 | + </div> | |
69 | 110 | </div> |
70 | 111 | </div> |
112 | + <div ng-show="actividad === 'Entrega de producto'"> | |
113 | + <strong>Remitos pendientes de entrega</strong> | |
114 | + <table class="table"> | |
115 | + <thead> | |
116 | + <tr> | |
117 | + <th>Remito Nº</th> | |
118 | + <th>Cliente</th> | |
119 | + <th>Dirección</th> | |
120 | + </tr> | |
121 | + </thead> | |
122 | + <tbody> | |
123 | + <tr> | |
124 | + <td>ejemplo</td> | |
125 | + <td>ejemplo</td> | |
126 | + <td>ejemplo</td> | |
127 | + </tr> | |
128 | + </tbody> | |
129 | + </table> | |
130 | + </div> | |
71 | 131 | </div> |