Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16769 | Rev 16817 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16769 Rev 16802
Línea 281... Línea 281...
281
            }
281
            }
282
            if($scholarship) {
282
            if($scholarship) {
283
               // scholarship
283
               // scholarship
284
            }
284
            }
Línea -... Línea 285...
-
 
285
 
-
 
286
            $fileName = 'reporte_relevamiento_de_contactos_'  . date('d-m-Y-h-i-a', time()) . '.csv';
-
 
287
            $tempFilename = tempnam(sys_get_temp_dir(), 'reporte_relevamiento_de_contactos_' . time());
285
 
288
            
-
 
289
            $fp = fopen($tempFilename, 'w');
-
 
290
            fputcsv($fp, [
-
 
291
                $this->translator->translate('LABEL_FIRST_NAME'),
-
 
292
                $this->translator->translate('LABEL_LAST_NAME'),
286
            $spreadsheet = new Spreadsheet();
293
                $this->translator->translate('LABEL_PERSONAL_EMAIL'),
-
 
294
                $this->translator->translate('LABEL_CORPORATE_EMAIL'),
-
 
295
                $this->translator->translate('LABEL_COMPANY'),
-
 
296
                $this->translator->translate('LABEL_POSITION'),
-
 
297
                $this->translator->translate('LABEL_COUNTRY'),
-
 
298
                $this->translator->translate('LABEL_STATE'),
-
 
299
                $this->translator->translate('LABEL_CITY'),
-
 
300
                $this->translator->translate('LABEL_PHONE'),
-
 
301
                $this->translator->translate('LABEL_PHONE_EXTENSION'),
-
 
302
                $this->translator->translate('LABEL_CELULAR'),
-
 
303
                $this->translator->translate('LABEL_WHATSAPP'),
-
 
304
                $this->translator->translate('LABEL_LINKEDIN'),
-
 
305
                $this->translator->translate('LABEL_SECTOR'),
-
 
306
                $this->translator->translate('LABEL_SCHOLARSHIP'),
-
 
307
                $this->translator->translate('LABEL_ADDED_DATE')
Línea 287... Línea -...
287
            $spreadsheet->getProperties()->setTitle('Relevamiento de Contactos');
-
 
288
            
-
 
Línea 289... Línea -...
289
            $sheetIndex = 0;
-
 
290
            $workSheet  =  $spreadsheet->setActiveSheetIndex($sheetIndex);
-
 
291
            
-
 
292
            $max_row = 100000;
308
            ]);
Línea 293... Línea -...
293
            $col = 1;
-
 
294
            $row = 1;
-
 
295
            $items = $queryMapper->fetchAll($select);
309
            
296
            
310
            
297
 
-
 
298
            $j = 0;
-
 
299
            foreach ( $items as $item )
311
            $items = $queryMapper->fetchAll($select);
300
            {
-
 
301
                $j++;
-
 
302
                
-
 
303
                if($row == 1) {
-
 
304
                    $col = 1;
-
 
305
                    $labels = [
-
 
306
                        $this->translator->translate('LABEL_FIRST_NAME'),
-
 
307
                        $this->translator->translate('LABEL_LAST_NAME'),
-
 
308
                        $this->translator->translate('LABEL_PERSONAL_EMAIL'),
-
 
309
                        $this->translator->translate('LABEL_CORPORATE_EMAIL'),
-
 
310
                        $this->translator->translate('LABEL_COMPANY'),
-
 
311
                        $this->translator->translate('LABEL_POSITION'),
-
 
312
                        $this->translator->translate('LABEL_COUNTRY'),
-
 
313
                        $this->translator->translate('LABEL_STATE'),
-
 
314
                        $this->translator->translate('LABEL_CITY'),
-
 
315
                        $this->translator->translate('LABEL_PHONE'),
-
 
316
                        $this->translator->translate('LABEL_PHONE_EXTENSION'),
-
 
317
                        $this->translator->translate('LABEL_CELULAR'),
-
 
318
                        $this->translator->translate('LABEL_WHATSAPP'),
-
 
319
                        $this->translator->translate('LABEL_LINKEDIN'),
-
 
320
                        $this->translator->translate('LABEL_SECTOR'),
-
 
321
                        $this->translator->translate('LABEL_SCHOLARSHIP'),
-
 
322
                        $this->translator->translate('LABEL_ADDED_DATE')
-
 
323
                    ];
-
 
324
                    
-
 
325
 
-
 
326
                    foreach ($labels as $label)
-
 
327
                    {
-
 
328
                        $workSheet->setCellValue([$col, $row],$label );
-
 
329
                        $col++;
-
 
330
                    }
-
 
331
                    $row++;
-
 
332
                }
-
 
333
                
-
 
334
                
-
 
335
                
-
 
336
                $col = 1;
-
 
337
                foreach($item as $value)
-
 
338
                {
-
 
339
                    $workSheet->setCellValue([$col, $row], $value);
-
 
340
                    $col++;
-
 
341
                }
-
 
342
                
-
 
343
                
-
 
344
                $row++;   
-
 
345
                if($row > $max_row) {
-
 
346
                    $row = 1;
-
 
347
                    $workSheet = $spreadsheet->createSheet();
312
            
-
 
313
            foreach ( $items as $item )
-
 
314
            {
Línea 348... Línea -...
348
 
-
 
349
                }
-
 
350
                
-
 
351
            }
-
 
352
            
-
 
353
            
-
 
354
            
-
 
355
            $fileName = 'reporte_relevamiento_de_contactos_'  . date('d-m-Y-h-i-a', time()) . '.xls';
315
                fputcsv($fp,$item);
356
            $tempFilename = tempnam(sys_get_temp_dir(), 'reporte_relevamiento_de_contactos_' . time());
316
            }
Línea 357... Línea 317...
357
            
317
            fclose($fp);
358
            $writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
318
            $items = null;