Commit 99088101d8180f7d8d8629eaeacd444bd27e00e1
1 parent
0c7d129f6d
Exists in
master
and in
1 other branch
linea al final
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
src/views/informe-reparto-optimo.html
| 1 | <div class="modal-header py-1"> | 1 | <div class="modal-header py-1"> |
| 2 | <div class="row w-100"> | 2 | <div class="row w-100"> |
| 3 | <div class="col-12"><h5 class="modal-title">Informe de reparto óptimo detallado</h5></div> | 3 | <div class="col-12"><h5 class="modal-title">Informe de reparto óptimo detallado</h5></div> |
| 4 | <div class="col-12" ng-hide="buscar"> | 4 | <div class="col-12" ng-hide="buscar"> |
| 5 | Filtros: Fecha desde: {{fechaDesde | date: 'dd/MM/yyyy'}}, | 5 | Filtros: Fecha desde: {{fechaDesde | date: 'dd/MM/yyyy'}}, |
| 6 | Fecha hasta: {{fechaHasta | date: 'dd/MM/yyyy'}}, | 6 | Fecha hasta: {{fechaHasta | date: 'dd/MM/yyyy'}}, |
| 7 | Transportista : {{transportista.NOM}}, | 7 | Transportista : {{transportista.NOM}}, |
| 8 | Unidad: {{unidad.codigo}} | 8 | Unidad: {{unidad.codigo}} |
| 9 | </div> | 9 | </div> |
| 10 | </div> | 10 | </div> |
| 11 | </div> | 11 | </div> |
| 12 | <div class="modal-body" id="modal-body"> | 12 | <div class="modal-body" id="modal-body"> |
| 13 | <div class="input-group row" | 13 | <div class="input-group row" |
| 14 | ng-show="buscar"> | 14 | ng-show="buscar"> |
| 15 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> | 15 | <small class="col-md-2 col-4 text-left my-1">Fecha Desde</small> |
| 16 | <div class="col-md-4 col-8 input-group mb-2"> | 16 | <div class="col-md-4 col-8 input-group mb-2"> |
| 17 | <div class="input-group-prepend"> | 17 | <div class="input-group-prepend"> |
| 18 | <div class="input-group-text form-control-sm"> | 18 | <div class="input-group-text form-control-sm"> |
| 19 | <i class="fa fa-calendar"></i> | 19 | <i class="fa fa-calendar"></i> |
| 20 | </div> | 20 | </div> |
| 21 | </div> | 21 | </div> |
| 22 | <input | 22 | <input |
| 23 | class="form-control form-control-sm" | 23 | class="form-control form-control-sm" |
| 24 | id="inlineFormInputGroup" | 24 | id="inlineFormInputGroup" |
| 25 | type="text" | 25 | type="text" |
| 26 | ng-model="params.fechaDesde" | 26 | ng-model="params.fechaDesde" |
| 27 | ng-required="true" | 27 | ng-required="true" |
| 28 | uib-datepicker-popup="dd/MM/yyyy" | 28 | uib-datepicker-popup="dd/MM/yyyy" |
| 29 | show-button-bar="false" | 29 | show-button-bar="false" |
| 30 | is-open="datepickerOpen" | 30 | is-open="datepickerOpen" |
| 31 | on-open-focus="false" | 31 | on-open-focus="false" |
| 32 | ng-focus="datepickerOpen = true" | 32 | ng-focus="datepickerOpen = true" |
| 33 | datepicker-options="dateOptions" | 33 | datepicker-options="dateOptions" |
| 34 | /> | 34 | /> |
| 35 | </div> | 35 | </div> |
| 36 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> | 36 | <small class="col-md-2 col-4 text-left my-1">Fecha Hasta</small> |
| 37 | <div class="col-md-4 col-8 input-group mb-2"> | 37 | <div class="col-md-4 col-8 input-group mb-2"> |
| 38 | <div class="input-group-prepend"> | 38 | <div class="input-group-prepend"> |
| 39 | <div class="input-group-text form-control-sm"> | 39 | <div class="input-group-text form-control-sm"> |
| 40 | <i class="fa fa-calendar"></i> | 40 | <i class="fa fa-calendar"></i> |
| 41 | </div> | 41 | </div> |
| 42 | </div> | 42 | </div> |
| 43 | <input | 43 | <input |
| 44 | class="form-control form-control-sm" | 44 | class="form-control form-control-sm" |
| 45 | id="inlineFormInputGroup" | 45 | id="inlineFormInputGroup" |
| 46 | type="text" | 46 | type="text" |
| 47 | ng-model="params.fechaHasta" | 47 | ng-model="params.fechaHasta" |
| 48 | ng-required="true" | 48 | ng-required="true" |
| 49 | uib-datepicker-popup="dd/MM/yyyy" | 49 | uib-datepicker-popup="dd/MM/yyyy" |
| 50 | show-button-bar="false" | 50 | show-button-bar="false" |
| 51 | is-open="datepicker2Open" | 51 | is-open="datepicker2Open" |
| 52 | on-open-focus="false" | 52 | on-open-focus="false" |
| 53 | ng-focus="datepicker2Open = true" | 53 | ng-focus="datepicker2Open = true" |
| 54 | /> | 54 | /> |
| 55 | </div> | 55 | </div> |
| 56 | <small class="col-md-2 col-4 text-left my-1">Sector</small> | 56 | <small class="col-md-2 col-4 text-left my-1">Sector</small> |
| 57 | <div class="col-md-4 col-8 input-group mb-2"> | 57 | <div class="col-md-4 col-8 input-group mb-2"> |
| 58 | <input | 58 | <input |
| 59 | class="form-control form-control-sm" | 59 | class="form-control form-control-sm" |
| 60 | id="inlineFormInputGroup" | 60 | id="inlineFormInputGroup" |
| 61 | type="text" | 61 | type="text" |
| 62 | ng-model="params.sector.NOMBRE" | 62 | ng-model="params.sector.NOMBRE" |
| 63 | ng-required="true" | 63 | ng-required="true" |
| 64 | ng-keypress="seleccionarSector($event.keyCode)" | 64 | ng-keypress="seleccionarSector($event.keyCode)" |
| 65 | /> | 65 | /> |
| 66 | <button type="button" class="clear-input text-danger" ng-click="clearSector()"> | 66 | <button type="button" class="clear-input text-danger" ng-click="clearSector()"> |
| 67 | <i class="fa fa-times"></i> | 67 | <i class="fa fa-times"></i> |
| 68 | </button> | 68 | </button> |
| 69 | <div class="input-group-append"> | 69 | <div class="input-group-append"> |
| 70 | <div class="input-group-append" ng-hide="ingreso"> | 70 | <div class="input-group-append" ng-hide="ingreso"> |
| 71 | <button | 71 | <button |
| 72 | ladda="searchLoading" | 72 | ladda="searchLoading" |
| 73 | data-spinner-color="#FF0000" | 73 | data-spinner-color="#FF0000" |
| 74 | class="btn btn-outline-secondary" | 74 | class="btn btn-outline-secondary" |
| 75 | type="button" | 75 | type="button" |
| 76 | ng-click="seleccionarSector(13)"> | 76 | ng-click="seleccionarSector(13)"> |
| 77 | <i class="fa fa-search" aria-hidden="true"></i> | 77 | <i class="fa fa-search" aria-hidden="true"></i> |
| 78 | </button> | 78 | </button> |
| 79 | </div> | 79 | </div> |
| 80 | </div> | 80 | </div> |
| 81 | </div> | 81 | </div> |
| 82 | <small class="col-md-4 col-8 text-left my-1">Diferenciar productos</small> | 82 | <small class="col-md-4 col-8 text-left my-1">Diferenciar productos</small> |
| 83 | <div class="col-md-2 col-4 input-group mb-2"> | 83 | <div class="col-md-2 col-4 input-group mb-2"> |
| 84 | <div class="custom-control custom-checkbox ml-auto"> | 84 | <div class="custom-control custom-checkbox ml-auto"> |
| 85 | <input | 85 | <input |
| 86 | type="checkbox" | 86 | type="checkbox" |
| 87 | class="custom-control-input" | 87 | class="custom-control-input" |
| 88 | ng-model="params.diferenciarProductos" | 88 | ng-model="params.diferenciarProductos" |
| 89 | id="customCheck1"> | 89 | id="customCheck1"> |
| 90 | <label class="custom-control-label" for="customCheck1"></label> | 90 | <label class="custom-control-label" for="customCheck1"></label> |
| 91 | </div> | 91 | </div> |
| 92 | </div> | 92 | </div> |
| 93 | <small class="col-md-4 col-8 text-left my-1">Detallar por mes</small> | 93 | <small class="col-md-4 col-8 text-left my-1">Detallar por mes</small> |
| 94 | <div class="col-md-2 col-4 input-group mb-2"> | 94 | <div class="col-md-2 col-4 input-group mb-2"> |
| 95 | <div class="custom-control custom-checkbox ml-auto"> | 95 | <div class="custom-control custom-checkbox ml-auto"> |
| 96 | <input | 96 | <input |
| 97 | type="checkbox" | 97 | type="checkbox" |
| 98 | class="custom-control-input" | 98 | class="custom-control-input" |
| 99 | ng-model="params.diferenciarMeses" | 99 | ng-model="params.diferenciarMeses" |
| 100 | id="customCheck2"> | 100 | id="customCheck2"> |
| 101 | <label class="custom-control-label" for="customCheck2"></label> | 101 | <label class="custom-control-label" for="customCheck2"></label> |
| 102 | </div> | 102 | </div> |
| 103 | </div> | 103 | </div> |
| 104 | </div> | 104 | </div> |
| 105 | <div | 105 | <div |
| 106 | ng-if="!buscar" | 106 | ng-if="!buscar" |
| 107 | class="row"> | 107 | class="row"> |
| 108 | <div class="col-12"> | 108 | <div class="col-12"> |
| 109 | <div | 109 | <div |
| 110 | class="gridInforme" | 110 | class="gridInforme" |
| 111 | ui-grid="gridOptions" | 111 | ui-grid="gridOptions" |
| 112 | ui-grid-exporter | 112 | ui-grid-exporter |
| 113 | ui-grid-resize-columns | 113 | ui-grid-resize-columns |
| 114 | ></div> | 114 | ></div> |
| 115 | </div> | 115 | </div> |
| 116 | </div> | 116 | </div> |
| 117 | </div> | 117 | </div> |
| 118 | <div class="modal-footer py-1"> | 118 | <div class="modal-footer py-1"> |
| 119 | <button | 119 | <button |
| 120 | class="btn btn-sm btn-secondary" | 120 | class="btn btn-sm btn-secondary" |
| 121 | type="button" | 121 | type="button" |
| 122 | ng-click="cancel()" | 122 | ng-click="cancel()" |
| 123 | ng-show="buscar">Cancelar</button> | 123 | ng-show="buscar">Cancelar</button> |
| 124 | <button | 124 | <button |
| 125 | ladda="generando" | 125 | ladda="generando" |
| 126 | class="btn btn-sm btn-secondary" | 126 | class="btn btn-sm btn-secondary" |
| 127 | type="button" | 127 | type="button" |
| 128 | ng-click="generarInforme()" | 128 | ng-click="generarInforme()" |
| 129 | ng-show="buscar">Generar</button> | 129 | ng-show="buscar">Generar</button> |
| 130 | <button | 130 | <button |
| 131 | class="btn btn-sm btn-secondary" | 131 | class="btn btn-sm btn-secondary" |
| 132 | type="button" | 132 | type="button" |
| 133 | ng-click="volver()" | 133 | ng-click="volver()" |
| 134 | ng-hide="buscar">Volver</button> | 134 | ng-hide="buscar">Volver</button> |
| 135 | </div> | 135 | </div> |
| 136 |