Commit d2e1d39124d5b9679a9f7b4c71716ce9f7c28083

Authored by Jose Pinto
1 parent 90a86b098e
Exists in master

max=6 botonera-facturador

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/views/activar-hoja-ruta.html
1 <div class="row"> 1 <div class="row">
2 <foca-cabecera-facturador 2 <foca-cabecera-facturador
3 titulo="'Activar Hoja de Ruta'" 3 titulo="'Activar Hoja de Ruta'"
4 fecha="now" 4 fecha="now"
5 class="mb-0 col-lg-12" 5 class="mb-0 col-lg-12"
6 ></foca-cabecera-facturador> 6 ></foca-cabecera-facturador>
7 </div> 7 </div>
8 <div class="row"> 8 <div class="row">
9 <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> 9 <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded">
10 <div class="row px-5 py-2 botonera-secundaria"> 10 <div class="row px-5 py-2 botonera-secundaria">
11 <div class="col-12"> 11 <div class="col-12">
12 <foca-botonera-facturador botones="botonera" extra="5" class="row"></foca-botonera-facturador> 12 <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador>
13 </div> 13 </div>
14 </div> 14 </div>
15 <!-- <div class="col-6 form-group"> 15 <!-- <div class="col-6 form-group">
16 <input seleccionarTransportista() 16 <input seleccionarTransportista()
17 type="text" 17 type="text"
18 teclado-virtual 18 teclado-virtual
19 class="form-control form-control-sm" 19 class="form-control form-control-sm"
20 placeholder="Búsqueda" 20 placeholder="Búsqueda"
21 ng-model="filtros" 21 ng-model="filtros"
22 /> 22 />
23 </div> --> 23 </div> -->
24 <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> 24 <table class="table table-default table-hover table-sm table-abm table-striped mb-0">
25 <thead> 25 <thead>
26 <tr> 26 <tr>
27 <th>Número</th> 27 <th>Número</th>
28 <th>Fecha</th> 28 <th>Fecha</th>
29 <th>Remitos</th> 29 <th>Remitos</th>
30 <th class="text-center"> 30 <th class="text-center">
31 </th> 31 </th>
32 </tr> 32 </tr>
33 </thead> 33 </thead>
34 <tbody> 34 <tbody>
35 <tr ng-repeat="hojaRuta in hojasRuta | filter:filtros"> 35 <tr ng-repeat="hojaRuta in hojasRuta | filter:filtros">
36 <td ng-bind="[hojaRuta.sucursal, hojaRuta.numeroHojaRuta] | comprobante"></td> 36 <td ng-bind="[hojaRuta.sucursal, hojaRuta.numeroHojaRuta] | comprobante"></td>
37 <td ng-bind="hojaRuta.fechaReparto | date:'yyyy-MM-dd'"></td> 37 <td ng-bind="hojaRuta.fechaReparto | date:'yyyy-MM-dd'"></td>
38 <td ng-bind="hojaRuta.remitos.length"></td> 38 <td ng-bind="hojaRuta.remitos.length"></td>
39 <td class="text-center"> 39 <td class="text-center">
40 <button 40 <button
41 class="btn btn-outline-dark boton-accion" 41 class="btn btn-outline-dark boton-accion"
42 title="Editar" 42 title="Editar"
43 ng-click="activarHojaRuta(hojaRuta.id)" 43 ng-click="activarHojaRuta(hojaRuta.id)"
44 > 44 >
45 <i class="fa fa-check"></i> 45 <i class="fa fa-check"></i>
46 </button> 46 </button>
47 </td> 47 </td>
48 </tr> 48 </tr>
49 </body> 49 </body>
50 </table> 50 </table>
51 </div> 51 </div>
52 </div> 52 </div>
53 53