-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacturar_RA_RD_ICX.php
831 lines (648 loc) · 31.4 KB
/
facturar_RA_RD_ICX.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
<?php
session_start();
header("Cache-control: private");
$_SESSION['detalle']="TRUE";
require_once "inc/theme.inc";
require "inc/funciones.inc";
require "inc/funcionesImportar.inc";
require "inc/funcionesFacturar.inc";
require_once "PHPExcel_1.8.0/Classes/PHPExcel.php";
require_once "PHPExcel_1.8.0/Classes/PHPExcel/IOFactory.php";
//Inicializa las variables utilizadas en el formulario
$empresa = "";
$empresaEnvio = "";
$fechaEnvio = "";
$ficheroFacturacion = "";
//FIN Inicializa las variables utilizadas en el formulario
//Conectar con el servidor de base de datos
$conn=conectar_bd();
//Variables para la búsqueda
$maxRows = 999999;
$pageNum = 0;
$seleccionada = 0;
if (isset($_GET['pageNum'])) {
$pageNum = $_GET['pageNum'];
}
$startRow = $pageNum * $maxRows;
if($_SERVER['REQUEST_METHOD']=='POST') {
$empresa = $_REQUEST['empresa'];
$fechaEnvio = $_REQUEST['fechaEnvio'];
$ficheroFacturacion = $_FILES['ficheroFacturacion']['name'];
if ($empresa == '') {
$empresaEnvio = 'GAMMA';
} else {
$empresaEnvio = $empresa;
}
if ($fechaEnvio == '') {
$date = new DateTime();
$fechaEnvio = $date->format('Y-m-d');
}
$anioMesFact = date('Y-m', strtotime($fechaEnvio));
// if ($_POST['buscar']) {
// //PENDIENTES DE FACTURAR
// $tsql_rd_pend_fact = "SELECT Id_GD,Id_FDTT, PROVINCIA, CABECERA, ARBOL, ACTUACION_JAZZTEL, ACTUACION_TESA, ID_ZONA, UUII_AI, GESTOR,
// EECC_CARGA_RD, FECHA_ENVIO, FECHA_ENTREGA, INC_EECCRD_GRAL
// From INV_VIEW_RD_TODO
// WHERE ((FECHA_ENTREGA Is Not Null) AND (FECHA_FACTURACION Is Null) AND
// (ESTADO_RD_FDTT = 'RD FINALIZADA'))";
// if (isset($empresa) && $empresa != "") {
// $tsql_rd_pend_fact = $tsql_rd_pend_fact . " AND EECC_CARGA_RD = '$empresa'";
// }
// //Recuperar datos de consulta
// $registros_rd_pend_fact = sqlsrv_query($conn, $tsql_rd_pend_fact, array(), array( "Scrollable" => 'static' ));
// $tsql_ra_pend_fact = "SELECT Id_GD,Id_FDTT, PR.Descripcion AS PROVINCIA, CA.Descripcion AS CABECERA, ARBOL, NOMBRE_FICHERO, FASE, EECC_CARGA_RA,
// FECHA_ENVIO, FECHA_ENTREGA, INC_EECC
// FROM INV_RA
// LEFT JOIN inv_cabeceras AS CA ON CA.Cod_Cabecera = INV_RA.ID_CABECERA
// LEFT JOIN inv_provincias AS PR ON PR.Cod_Provincia = CA.Cod_Provincia
// WHERE ((FECHA_ENTREGA Is Not Null) AND (FECHA_FACTURACION Is Null) AND
// (ESTADO_RA_FDTT = 'RA FINALIZADO'))";
// if (isset($empresa) && $empresa != "") {
// $tsql_ra_pend_fact = $tsql_ra_pend_fact . " AND EECC_CARGA_RA = '$empresa'";
// }
// //Recuperar datos de consulta
// $registros_ra_pend_fact = sqlsrv_query($conn, $tsql_ra_pend_fact, array(), array( "Scrollable" => 'static' ));
// }
if (isset($_POST['procesar'])) {
// PROCESAR FICHERO ENTRADA FACTURACIÓN
if (isset($_FILES['ficheroFacturacion']) && $_FILES['ficheroFacturacion']['tmp_name'] != '') {
$safe_filename=replace_specials_characters($_FILES['ficheroFacturacion']['name']);
$isMove = move_uploaded_file ($_FILES['ficheroFacturacion']['tmp_name'], 'upload/'.$safe_filename);
if ($isMove){
$ficheroEntrada = './upload/'.$safe_filename;
$objPHPExcel = PHPExcel_IOFactory::load($ficheroEntrada);
//NUEVAS RA
//Asigno la hoja de calculo activa
$objPHPExcel->setActiveSheetIndex(1);
//Obtengo el numero de filas del archivo
$numRows = $objPHPExcel->setActiveSheetIndex(1)->getHighestRow();
if ($numRows > 0) {
$Fich_RA_Diseno[] = array();
for ($i = 1; $i <= $numRows; $i++) {
$empresaEntrada = $objPHPExcel->getActiveSheet()->getCell('L'.$i)->getFormattedValue();
$fechaE = $objPHPExcel->getActiveSheet()->getCell('M'.$i)->getFormattedValue();
$fechaEntrada = date_format(date_create_from_format('m-d-y', $fechaE), 'Y-m-d');
$anioMesOrden = date('Y-m', strtotime($fechaEntrada));
if ($empresaEntrada == $empresaEnvio && $anioMesOrden == $anioMesFact) {
$Fich_RA_Diseno[] = "'".$objPHPExcel->getActiveSheet()->getCell('A'.$i)->getFormattedValue()."'";
}
}
$mensaje = "ficheroFacturacion - Importación correcta";
}
//ACTUALIZACION DE RA
//Asigno la hoja de calculo activa
$objPHPExcel->setActiveSheetIndex(2);
//Obtengo el numero de filas del archivo
$numRows = $objPHPExcel->setActiveSheetIndex(2)->getHighestRow();
if ($numRows > 0) {
$Fich_RA_Actualizada[] = array();
for ($i = 1; $i <= $numRows; $i++) {
$empresaEntrada = $objPHPExcel->getActiveSheet()->getCell('H'.$i)->getFormattedValue();
$fechaE = $objPHPExcel->getActiveSheet()->getCell('I'.$i)->getFormattedValue();
$fechaEntrada = date_format(date_create_from_format('m-d-y', $fechaE), 'Y-m-d');
$anioMesOrden = date('Y-m', strtotime($fechaEntrada));
if ($empresaEntrada == $empresaEnvio && $anioMesOrden == $anioMesFact) {
$Fich_RA_Actualizada[] = "'".$objPHPExcel->getActiveSheet()->getCell('A'.$i)->getFormattedValue()."'";
}
}
$mensaje = "ficheroFacturacion - Importación correcta";
}
//NUEVOS RD
//Asigno la hoja de calculo activa
$objPHPExcel->setActiveSheetIndex(3);
//Obtengo el numero de filas del archivo
$numRows = $objPHPExcel->setActiveSheetIndex(3)->getHighestRow();
if ($numRows > 0) {
$Fich_RD_Diseno[] = array();
for ($i = 1; $i <= $numRows; $i++) {
$empresaEntrada = $objPHPExcel->getActiveSheet()->getCell('T'.$i)->getFormattedValue();
$fechaE = $objPHPExcel->getActiveSheet()->getCell('U'.$i)->getFormattedValue();
$fechaEntrada = date_format(date_create_from_format('m-d-y', $fechaE), 'Y-m-d');
$anioMesOrden = date('Y-m', strtotime($fechaEntrada));
if ($empresaEntrada == $empresaEnvio && $anioMesOrden == $anioMesFact) {
$Fich_RD_Diseno[] = "'".$objPHPExcel->getActiveSheet()->getCell('A'.$i)->getFormattedValue()."'";
}
}
$mensaje = "ficheroFacturacion - Importación correcta";
}
//ACTUALIZACION DE RD
//Asigno la hoja de calculo activa
$objPHPExcel->setActiveSheetIndex(4);
//Obtengo el numero de filas del archivo
$numRows = $objPHPExcel->setActiveSheetIndex(4)->getHighestRow();
if ($numRows > 0) {
$Fich_RD_Actualizada[] = array();
for ($i = 1; $i <= $numRows; $i++) {
$empresaEntrada = $objPHPExcel->getActiveSheet()->getCell('L'.$i)->getFormattedValue();
$fechaE = $objPHPExcel->getActiveSheet()->getCell('M'.$i)->getFormattedValue();
$fechaEntrada = date_format(date_create_from_format('m-d-y', $fechaE), 'Y-m-d');
$anioMesOrden = date('Y-m', strtotime($fechaEntrada));
if ($empresaEntrada == $empresaEnvio && $anioMesOrden == $anioMesFact) {
$Fich_RD_Actualizada[] = "'".$objPHPExcel->getActiveSheet()->getCell('A'.$i)->getFormattedValue()."'";
}
}
$mensaje = "ficheroFacturacion - Importación correcta";
}
} else {
$mensaje = 'Error al copiar el fichero de Facturación';
}
} else {
$mensaje = 'Fichero de Facturación obligatorio';
}
//NUEVAS RA
if (count($Fich_RA_Diseno) > 0) {
$lista = implode(',', $Fich_RA_Diseno);
$long = strlen($lista) - 6;
$list=substr($lista,6,$long);
$tsql_ra_pend_fact = "SELECT Id_GD,Id_FDTT, ID_ACTUACION, PR.Descripcion AS PROVINCIA, CA.Descripcion AS CABECERA, ARBOL, NOMBRE_FICHERO, FASE, EECC_CARGA_RA,
FECHA_ENVIO, FECHA_ENTREGA, INC_EECC, ESTADO_RA_FDTT, FECHA_FACTURACION
FROM INV_RA
LEFT JOIN inv_cabeceras AS CA ON CA.Cod_Cabecera = INV_RA.ID_CABECERA
LEFT JOIN inv_provincias AS PR ON PR.Cod_Provincia = CA.Cod_Provincia
WHERE Id_GD IN ($list)";
//Recuperar datos de consulta NUEVAS RA
$registros_ra_pend_fact = sqlsrv_query($conn, $tsql_ra_pend_fact, array(), array( "Scrollable" => 'static' ));
}
//ACTUALIZACION DE RA
if (count($Fich_RA_Actualizada) > 0) {
$lista = implode(',', $Fich_RA_Actualizada);
$long = strlen($lista) - 6;
$list=substr($lista,6,$long);
$tsql_ra_pend_fact_act = "SELECT Id_GD,Id_FDTT, ID_ACTUACION, PR.Descripcion AS PROVINCIA, CA.Descripcion AS CABECERA, ARBOL, NOMBRE_FICHERO, FASE, EECC_CARGA_RA,
FECHA_ENVIO, FECHA_ENTREGA, INC_EECC, ESTADO_RA_FDTT, FECHA_FACTURACION
FROM INV_RA
LEFT JOIN inv_cabeceras AS CA ON CA.Cod_Cabecera = INV_RA.ID_CABECERA
LEFT JOIN inv_provincias AS PR ON PR.Cod_Provincia = CA.Cod_Provincia
WHERE Id_GD IN ($list)";
//Recuperar datos de consulta NUEVAS RA
$registros_ra_pend_fact_act = sqlsrv_query($conn, $tsql_ra_pend_fact_act, array(), array( "Scrollable" => 'static' ));
}
//NUEVOS RD
if (count($Fich_RD_Diseno) > 0) {
$lista = implode(',', $Fich_RD_Diseno);
$long = strlen($lista) - 6;
$list=substr($lista,6,$long);
$tsql_rd_pend_fact = "SELECT Id_GD,Id_FDTT, ID_ACTUACION, PROVINCIA, CABECERA, ARBOL, ACTUACION_JAZZTEL, ACTUACION_TESA, ID_ZONA, UUII_AI, GESTOR,
EECC_CARGA_RD, FECHA_ENVIO, FECHA_ENTREGA, INC_EECCRD_GRAL, ESTADO_RD_FDTT,
FECHA_FACTURACION
From INV_VIEW_RD_TODO
WHERE Id_GD IN ($list)";
//Recuperar datos de consulta NUEVAS RA
$registros_rd_pend_fact = sqlsrv_query($conn, $tsql_rd_pend_fact, array(), array( "Scrollable" => 'static' ));
}
//ACTUALIZACION DE RD
if (count($Fich_RD_Actualizada) > 0) {
$lista = implode(',', $Fich_RD_Actualizada);
$long = strlen($lista) - 6;
$list=substr($lista,6,$long);
$tsql_rd_pend_fact_act = "SELECT Id_GD,Id_FDTT, ID_ACTUACION, PROVINCIA, CABECERA, ARBOL, ACTUACION_JAZZTEL, ACTUACION_TESA, ID_ZONA, UUII_AI, GESTOR,
EECC_CARGA_RD, FECHA_ENVIO, FECHA_ENTREGA, INC_EECCRD_GRAL, ESTADO_RD_FDTT,
FECHA_FACTURACION
From INV_VIEW_RD_TODO
WHERE Id_GD IN ($list)";
//Recuperar datos de consulta NUEVAS RA
$registros_rd_pend_fact_act = sqlsrv_query($conn, $tsql_rd_pend_fact_act, array(), array( "Scrollable" => 'static' ));
}
} //FIN PROCESAR FICHERO
if (isset($_POST['facturar'])) {
// FACTURAR
$marcarFacturaRd = $_REQUEST['marcarFacturaRd'];
$marcarFacturaRdAct = $_REQUEST['marcarFacturaRdAct'];
$marcarFacturaRa = $_REQUEST['marcarFacturaRa'];
$marcarFacturaRaAct = $_REQUEST['marcarFacturaRaAct'];
facturarGAMMA($conn,$fechaEnvio,$empresaEnvio,$marcarFacturaRd,$marcarFacturaRdAct,$marcarFacturaRa, $marcarFacturaRaAct);
}
}
// print the page header
print_theme_header();
?>
<!-- start: Content -->
<div id="content" class="span12">
<ul class="breadcrumb">
<li>
<i class="icon-home"></i>
<a href="index.html">Home</a>
<i class="icon-angle-right"></i>
</li>
<li><a href="#">Envío GAMMA</a></li>
</ul>
<!--FILTROS-->
<FORM id="busqueda" autocomplete="off" METHOD="POST" NAME="opciones" class="form-horizontal" enctype="multipart/form-data">
<fieldset>
<div class="row-fluid">
<div class="span3">
<div class="control-group">
<label class="control-label" for="prior">Empresa </label>
<div class="controls">
<SELECT tabindex="0" id="empresa" name="empresa" >';
<option value=""></option>
<?php
echo '<option value="GAMMA" '.(($empresa=="GAMMA")?'selected="selected"':"").'>GAMMA</option>';
?>
</SELECT>
</div>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<div class="control-group">
<label class="control-label" for="ficheroFacturacion">Fichero Facturación</label>
<div class="controls">
<?php
echo '<input type="file" name="ficheroFacturacion" id="ficheroFacturacion" value="<?php echo $ficheroFacturacion;?>" />';
?>
</div>
</div>
</div>
<div class="span2">
<button type="submit" id="procesar" name="procesar" value="procesar" class="btn btn-success btn-small confirmar" onclick="return confirmarAccion();"><i class="halflings-icon white check"></i> Procesar</button>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<div class="control-group">
<label class="control-label" for="fRegistro1">Fecha Facturación</label>
<div class="controls">
<?php
echo '<input tabindex="7" type="text" class="input datepicker date_field" id="fechaEnvio" name="fechaEnvio" value="'.$fechaEnvio.'" data-date-format="yyyy-mm-dd">';
?>
</div>
</div>
</div>
<div class="span2">
<?php if($_SERVER['REQUEST_METHOD']=='POST') { ?>
<button type="submit" id="facturar" name="facturar" value="facturar" class="btn btn-warning btn-small confirmar" onclick="return confirmarAccion();"><i class="halflings-icon white check"></i> Facturar</button>
<?php } ?>
</div>
</div>
<!--FIN FILTROS-->
<div class="row-fluid">
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<?php echo $mensaje;?>
</div>
</div>
<!-- Tabla de listado de grupos existentes -->
<div class="row-fluid sortable ui-sortable">
<div class="box span12">
<h2>Pendientes de FACTURAR</h2>
</div>
</div>
<div class="row-fluid sortable ui-sortable">
<div class="box span12">
<div class="box-header" data-original-title>
<div class="box-icon">
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
</div>
<h2><i class="halflings-icon file"></i><span class="break"></span>RA</h2>
</div>
<div class="box-content">
<table class="table table-striped table-bordered buscar">
<thead>
<tr>
<th class="hidden">x</th>
<th>Id_GD</th>
<th>Id_FDTT</th>
<th>PROVINCIA</th>
<th>CABECERA</th>
<th>ARBOL</th>
<th>FASE</th>
<th>EST_RA_FDTT</th>
<th>EECC_CARGA_RA</th>
<th>F_ENVIO</th>
<th>F_ENTREGA</th>
<th>F_FACTURACION</th>
<th>INC_EECC</th>
</tr>
</thead>
<tbody>
<?php if (isset($registros_ra_pend_fact)) { while ($linea = sqlsrv_fetch_array($registros_ra_pend_fact)){ ?>
<tr>
<?php
//Marca de check para las entregas RD DISEÑO
print ("<TD class='center hidden'><INPUT TYPE='CHECKBOX' checked NAME='marcarFacturaRa[]' VALUE='".$linea['Id_FDTT']."'></TD>\n");
?>
<td class="center"><?php echo $linea['Id_GD']; ?></td>
<td class="center"><?php echo $linea['Id_FDTT']; ?></td>
<td class="center"><?php echo $linea['PROVINCIA']; ?></td>
<td class="center"><?php echo $linea['CABECERA']; ?></td>
<td class="center"><?php echo $linea['ARBOL']; ?></td>
<td class="center"><?php echo $linea['FASE']; ?></td>
<td class="center"><?php if ($linea['ESTADO_RA_FDTT'] != 'RA FINALIZADO') {echo '<span style="color:red">'.$linea['ESTADO_RA_FDTT'].'</span>'; } else {echo $linea['ESTADO_RA_FDTT']; }; ?></td>
<td class="center"><?php echo $linea['EECC_CARGA_RA']; ?></td>
<td class="center"><?php if (!empty($linea['FECHA_ENVIO'])) {echo date_format($linea['FECHA_ENVIO'], 'Y-m-d'); } ?></td>
<td class="center"><?php if (!empty($linea['FECHA_ENTREGA'])) {echo date_format($linea['FECHA_ENTREGA'], 'Y-m-d'); } ?></td>
<td class="center"><?php if (!empty($linea['FECHA_FACTURACION'])) {echo '<span style="color:red">'.date_format($linea['FECHA_FACTURACION'], 'Y-m-d').'</span>'; } ?></td>
<?php
// Buscamos si la RA tiene incidencias (Subactividad=58 y relacionadas con el ID_ACTUACION de la RA)
$incidencias = 0;
$idActuacion = $linea['ID_ACTUACION'];
$tsqlINC = "SELECT COUNT(*) AS CONTADOR FROM INV_TBTAREAS WHERE id_actuacion='".$idActuacion."' AND id_Subactividad ='58'";
$stmtINC = sqlsrv_query( $conn, $tsqlINC) or die ("Error al ejecutar consulta: ".$tsqlINC);
$rowsINC = sqlsrv_has_rows( $stmtINC );
if ($rowsINC === true){
$rowINC = sqlsrv_fetch_array($stmtINC);
$incidencias=$rowINC['CONTADOR'];
}
sqlsrv_free_stmt( $stmtINC);
?>
<!-- <td class="center"><?php echo $linea['INC_EECC']; ?></td> -->
<td class="center"><a title="Incidencias de RA" class="btn btn-success btn-mini buscar_incidencias_ra" data-toggle="modal" data-target="#viewModalT" data-id="<?php echo $idActuacion; ?>"><?php echo $incidencias; ?></td>
<i class="halflings-icon white eye-open"></i>
</a>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div>
</div>
<div class="row-fluid sortable ui-sortable">
<div class="box span12">
<div class="box-header" data-original-title>
<div class="box-icon">
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
</div>
<h2><i class="halflings-icon file"></i><span class="break"></span>RA ACT</h2>
</div>
<div class="box-content">
<table class="table table-striped table-bordered buscar">
<thead>
<tr>
<th class="hidden">x</th>
<th>Id_GD</th>
<th>Id_FDTT</th>
<th>PROVINCIA</th>
<th>CABECERA</th>
<th>ARBOL</th>
<th>FASE</th>
<th>EST_RA_FDTT</th>
<th>EECC_CARGA_RA</th>
<th>F_ENVIO</th>
<th>F_ENTREGA</th>
<th>F_FACTURACION</th>
<th>INC_EECC</th>
</tr>
</thead>
<tbody>
<?php if (isset($registros_ra_pend_fact_act)) { while ($linea = sqlsrv_fetch_array($registros_ra_pend_fact_act)){ ?>
<tr>
<?php
//Marca de check para las entregas RD DISEÑO
print ("<TD class='center hidden'><INPUT TYPE='CHECKBOX' checked NAME='marcarFacturaRaAct[]' VALUE='".$linea['Id_FDTT']."'></TD>\n");
?>
<td class="center"><?php echo $linea['Id_GD']; ?></td>
<td class="center"><?php echo $linea['Id_FDTT']; ?></td>
<td class="center"><?php echo $linea['PROVINCIA']; ?></td>
<td class="center"><?php echo $linea['CABECERA']; ?></td>
<td class="center"><?php echo $linea['ARBOL']; ?></td>
<td class="center"><?php echo $linea['FASE']; ?></td>
<td class="center"><?php if ($linea['ESTADO_RA_FDTT'] != 'RA FINALIZADO') {echo '<span style="color:red">'.$linea['ESTADO_RA_FDTT'].'</span>'; } else {echo $linea['ESTADO_RA_FDTT']; }; ?></td>
<td class="center"><?php echo $linea['EECC_CARGA_RA']; ?></td>
<td class="center"><?php if (!empty($linea['FECHA_ENVIO'])) {echo date_format($linea['FECHA_ENVIO'], 'Y-m-d'); } ?></td>
<td class="center"><?php if (!empty($linea['FECHA_ENTREGA'])) {echo date_format($linea['FECHA_ENTREGA'], 'Y-m-d'); } ?></td>
<td class="center"><?php if (!empty($linea['FECHA_FACTURACION'])) {echo '<span style="color:red">'.date_format($linea['FECHA_FACTURACION'], 'Y-m-d').'</span>'; } ?></td>
<?php
// Buscamos si la RA tiene incidencias (Subactividad=58 y relacionadas con el ID_ACTUACION de la RA)
$incidencias = 0;
$idActuacion = $linea['ID_ACTUACION'];
$tsqlINC = "SELECT COUNT(*) AS CONTADOR FROM INV_TBTAREAS WHERE id_actuacion='".$idActuacion."' AND id_Subactividad ='58'";
$stmtINC = sqlsrv_query( $conn, $tsqlINC) or die ("Error al ejecutar consulta: ".$tsqlINC);
$rowsINC = sqlsrv_has_rows( $stmtINC );
if ($rowsINC === true){
$rowINC = sqlsrv_fetch_array($stmtINC);
$incidencias=$rowINC['CONTADOR'];
}
sqlsrv_free_stmt( $stmtINC);
?>
<!-- <td class="center"><?php echo $linea['INC_EECC']; ?></td> -->
<td class="center"><a title="Incidencias de RA" class="btn btn-success btn-mini buscar_incidencias_ra" data-toggle="modal" data-target="#viewModalT" data-id="<?php echo $idActuacion; ?>"><?php echo $incidencias; ?></td>
<i class="halflings-icon white eye-open"></i>
</a>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div>
</div>
<div class="row-fluid sortable ui-sortable">
<div class="box span12">
<div class="box-header" data-original-title>
<div class="box-icon">
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
</div>
<h2><i class="halflings-icon file"></i><span class="break"></span>RD</h2>
</div>
<div class="box-content">
<table class="table table-striped table-bordered buscar">
<thead>
<tr>
<th class="hidden">x</th>
<th>Id_GD</th>
<th>Id_FDTT</th>
<th>PROVINCIA</th>
<th>CABECERA</th>
<th>ARBOL</th>
<th>ACT. JAZZTEL</th>
<th>ACT. TESA</th>
<!-- <th>ID_ZONA</th>
<th>UUII_AI</th>
<th>GESTOR</th> -->
<th>EST_RD_FDTT</th>
<th>EECC_CARGA</th>
<th>F_ENVIO</th>
<th>F_ENTREGA</th>
<th>F_FACTURACION</th>
<th>INC_EECC</th>
</tr>
</thead>
<tbody>
<?php if (isset($registros_rd_pend_fact)) { while ($linea = sqlsrv_fetch_array($registros_rd_pend_fact)){ ?>
<tr>
<?php
//Marca de check para las entregas RD
print ("<TD class='center hidden'><INPUT TYPE='CHECKBOX' checked NAME='marcarFacturaRd[]' VALUE='".$linea['Id_FDTT']."'></TD>\n");
?>
<td class="center"><?php echo $linea['Id_GD']; ?></td>
<td class="center"><?php echo $linea['Id_FDTT']; ?></td>
<td class="center"><?php echo $linea['PROVINCIA']; ?></td>
<td class="center"><?php echo $linea['CABECERA']; ?></td>
<td class="center"><?php echo $linea['ARBOL']; ?></td>
<td class="center"><?php echo $linea['ACTUACION_JAZZTEL']; ?></td>
<td class="center"><?php echo $linea['ACTUACION_TESA']; ?></td>
<!-- <td class="center"><?php echo $linea['ID_ZONA']; ?></td>
<td class="center"><?php echo $linea['UUII_AI']; ?></td>
<td class="center"><?php echo $linea['GESTOR']; ?></td> -->
<td class="center"><?php if ($linea['ESTADO_RD_FDTT'] != 'RD FINALIZADA') {echo '<span style="color:red">'.$linea['ESTADO_RD_FDTT'].'</span>'; } else {echo $linea['ESTADO_RD_FDTT']; }; ?></td>
<td class="center"><?php echo $linea['EECC_CARGA_RD']; ?></td>
<td class="center"><?php echo $linea['FECHA_ENVIO']; ?></td>
<td class="center"><?php echo $linea['FECHA_ENTREGA']; ?></td>
<td class="center"><?php if (!empty($linea['FECHA_FACTURACION'])) {echo '<span style="color:red">'.date_format($linea['FECHA_FACTURACION'], 'Y-m-d').'</span>'; } ?></td>
<?php
// Buscamos si la RD tiene incidencias (Subactividad=59 y relacionadas con el ID_ACTUACION de la RD)
$incidencias = 0;
$idActuacion = $linea['ID_ACTUACION'];
$tsqlINC = "SELECT COUNT(*) AS CONTADOR FROM INV_TBTAREAS WHERE id_actuacion='".$idActuacion."' AND id_Subactividad ='59'";
$stmtINC = sqlsrv_query( $conn, $tsqlINC) or die ("Error al ejecutar consulta: ".$tsqlINC);
$rowsINC = sqlsrv_has_rows( $stmtINC );
if ($rowsINC === true){
$rowINC = sqlsrv_fetch_array($stmtINC);
$incidencias=$rowINC['CONTADOR'];
}
sqlsrv_free_stmt( $stmtINC);
?>
<!-- <td class="center"><?php echo $linea['INC_EECCRD_GRAL']; ?></td> -->
<td class="center"><a title="Incidencias de RD" class="btn btn-success btn-mini buscar_incidencias_rd" data-toggle="modal" data-target="#viewModalT" data-id="<?php echo $idActuacion; ?>"><?php echo $incidencias; ?></td>
<i class="halflings-icon white eye-open"></i>
</a>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div>
</div>
<div class="row-fluid sortable ui-sortable">
<div class="box span12">
<div class="box-header" data-original-title>
<div class="box-icon">
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
</div>
<h2><i class="halflings-icon file"></i><span class="break"></span>RD ACT</h2>
</div>
<div class="box-content">
<table class="table table-striped table-bordered buscar">
<thead>
<tr>
<th class="hidden">x</th>
<th>Id_GD</th>
<th>Id_FDTT</th>
<th>PROVINCIA</th>
<th>CABECERA</th>
<th>ARBOL</th>
<th>ACT. JAZZTEL</th>
<th>ACT. TESA</th>
<!-- <th>ID_ZONA</th>
<th>UUII_AI</th>
<th>GESTOR</th> -->
<th>EST_RD_FDTT</th>
<th>EECC_CARGA</th>
<th>F_ENVIO</th>
<th>F_ENTREGA</th>
<th>F_FACTURACION</th>
<th>INC_EECC</th>
</tr>
</thead>
<tbody>
<?php if (isset($registros_rd_pend_fact_act)) { while ($linea = sqlsrv_fetch_array($registros_rd_pend_fact_act)){ ?>
<tr>
<?php
//Marca de check para las entregas RD
print ("<TD class='center hidden'><INPUT TYPE='CHECKBOX' checked NAME='marcarFacturaRdAct[]' VALUE='".$linea['Id_FDTT']."'></TD>\n");
?>
<td class="center"><?php echo $linea['Id_GD']; ?></td>
<td class="center"><?php echo $linea['Id_FDTT']; ?></td>
<td class="center"><?php echo $linea['PROVINCIA']; ?></td>
<td class="center"><?php echo $linea['CABECERA']; ?></td>
<td class="center"><?php echo $linea['ARBOL']; ?></td>
<td class="center"><?php echo $linea['ACTUACION_JAZZTEL']; ?></td>
<td class="center"><?php echo $linea['ACTUACION_TESA']; ?></td>
<!-- <td class="center"><?php echo $linea['ID_ZONA']; ?></td>
<td class="center"><?php echo $linea['UUII_AI']; ?></td>
<td class="center"><?php echo $linea['GESTOR']; ?></td> -->
<td class="center"><?php if ($linea['ESTADO_RD_FDTT'] != 'RD FINALIZADA') {echo '<span style="color:red">'.$linea['ESTADO_RD_FDTT'].'</span>'; } else {echo $linea['ESTADO_RD_FDTT']; }; ?></td>
<td class="center"><?php echo $linea['EECC_CARGA_RD']; ?></td>
<td class="center"><?php echo $linea['FECHA_ENVIO']; ?></td>
<td class="center"><?php echo $linea['FECHA_ENTREGA']; ?></td>
<td class="center"><?php if (!empty($linea['FECHA_FACTURACION'])) {echo '<span style="color:red">'.date_format($linea['FECHA_FACTURACION'], 'Y-m-d').'</span>'; } ?></td>
<?php
// Buscamos si la RD tiene incidencias (Subactividad=59 y relacionadas con el ID_ACTUACION de la RD)
$incidencias = 0;
$idActuacion = $linea['ID_ACTUACION'];
$tsqlINC = "SELECT COUNT(*) AS CONTADOR FROM INV_TBTAREAS WHERE id_actuacion='".$idActuacion."' AND id_Subactividad ='59'";
$stmtINC = sqlsrv_query( $conn, $tsqlINC) or die ("Error al ejecutar consulta: ".$tsqlINC);
$rowsINC = sqlsrv_has_rows( $stmtINC );
if ($rowsINC === true){
$rowINC = sqlsrv_fetch_array($stmtINC);
$incidencias=$rowINC['CONTADOR'];
}
sqlsrv_free_stmt( $stmtINC);
?>
<!-- <td class="center"><?php echo $linea['INC_EECCRD_GRAL']; ?></td> -->
<td class="center"><a title="Incidencias de RD" class="btn btn-success btn-mini buscar_incidencias_rd" data-toggle="modal" data-target="#viewModalT" data-id="<?php echo $idActuacion; ?>"><?php echo $incidencias; ?></td>
<i class="halflings-icon white eye-open"></i>
</a>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div>
</div>
</fieldset>
</FORM>
</div><!--/#content.span10-->
</div><!--/row-->
</div><!--/.fluid-container-->
<!-- Modal Editar Grupo-->
<div class="modal hide fade large" id="viewModalT" data-backdrop="static" data-keyboard="false" >
<div class="modal-header btn-info">
<button type="button" id="cerrarConsulta" class="close" data-dismiss="modal">×</button>
<h2><i class="icon-edit"></i> Consultar</h2>
</div>
<div class="ct" style="height:80%;">
</div>
</div>
<div class="clearfix"></div>
<?php
print_theme_footer();
sqlsrv_free_stmt($registros);
?>
<script type="text/JavaScript">
//Inicializamos tareas del onload de la página
window.onload = function ()
{
$(".btn-minimize").each(function(){
$(this).click();
});
$("#fechaEnvio").on('change', function(e) {
$(this).val($(this).attr("value").substring(4));
var valor=$(this).attr("value");
var id=$(this).attr("id");
});
$(".fechaModifRA").each(function(){
$(this).on('change', function(e) {
$(this).val($(this).attr("value").substring(4));
var valor=$(this).attr("value");
var id=$(this).attr("id");
ModificarFecha('FECHA_PENDIENTE_RA',id,valor);
});
});
$(".fechaModifRdDiseno").each(function(){
$(this).on('change', function(e) {
$(this).val($(this).attr("value").substring(4));
var valor=$(this).attr("value");
var id=$(this).attr("id");
ModificarFecha('FECHA_PENDIENTE_RD_DISENO',id,valor);
});
});
$(".fechaModifRD").each(function(){
$(this).on('change', function(e) {
$(this).val($(this).attr("value").substring(4));
var valor=$(this).attr("value");
var id=$(this).attr("id");
ModificarFecha('FECHA_PENDIENTE_RD',id,valor);
});
});
$(".fechaModifICX").each(function(){
$(this).on('change', function(e) {
$(this).val($(this).attr("value").substring(4));
var valor=$(this).attr("value");
var id=$(this).attr("id");
ModificarFecha('FECHA_PENDIENTE_ICX',id,valor);
});
});
}
</script>