Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16929 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16758 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$routeReports = $this->url('discovery-contacts/report');
6
$routeDownload = $this->url('discovery-contacts/report/download');
7
 
8
$roleName = $currentUser->getUserTypeId();
9
 
10
 
16822 efrain 11
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
12
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
13
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jsrender/jsrender.js'));
16758 efrain 14
 
15
/*
16
$this->headStyle()->captureStart();
17
echo <<<CSS
18
 
19
 
20
#tableContact {
21
    display: flex;
22
    flex-flow: column;
23
    width: 100%;
24
}
25
 
26
#tableContact thead {
27
    flex: 0 0 auto;
28
}
29
 
30
#tableContact tbody {
31
    flex: 1 1 auto;
32
    display: block;
33
    overflow-y: auto;
34
    overflow-x: hidden;
35
}
36
 
37
#tableContact tr {
38
    width: 100%;
39
    display: table;
40
    table-layout: fixed;
41
}
42
CSS;
43
$this->headStyle()->captureEnd();
44
*/
45
 
46
 
47
 
48
$this->inlineScript()->captureStart();
49
echo <<<JS
50
jQuery( document ).ready(function( $ ) {
51
 
52
    $.fn.changeFilter = function() {
53
        NProgress.start();
54
        $.ajax({
55
            'dataType'  : 'json',
56
            'accept'    : 'application/json',
57
            'method'    : 'get',
58
            'url'       :  $('#form-filter').attr('action'),
59
            'data'      :  $('#form-filter').serialize(),
60
        }).done(function(response) {
61
            if(response['success']) {
62
 
63
                $('#tableContactBody').empty();
64
                $('#tableContactBody').html(
65
                    $('#tableTemplate').render(response['data'])
66
                );
67
 
68
 
69
            } else {
70
                if(jQuery.type(response['data']) == 'string') {
71
                    $.fn.showError(response['data']);
72
                } else  {
73
                    $.each(response['data'], function( fieldname, errors ) {
74
                        $.fn.showFormErrorValidator('#form #' + fieldname, errors);
75
                    });
76
                }
77
            }
78
        }).fail(function( jqXHR, textStatus, errorThrown) {
79
            $.fn.showError(textStatus);
80
        }).always(function() {
81
            NProgress.done();
82
        });
83
        return false;
84
    }
85
 
86
 
87
    $('#btn-report').click(function(e) {
88
        e.preventDefault();
89
 
90
 
91
        $.fn.changeFilter();
92
    });
93
 
94
    $('#btn-download').click(function(e) {
95
        e.preventDefault();
96
 
97
 
98
        NProgress.start();
99
        $.ajax({
100
            'dataType'  : 'json',
101
            'method'    : 'get',
102
            'url'       : '$routeDownload',
103
            'data'      : $('#form-filter').serialize(),
104
        }).done(function(response) {
105
            if(response['success']) {
106
                var anchor = window.document.createElement("a");
107
                anchor.href = 'data:application/octet-stream;charset=utf-8;base64,' + response['data']['content'] ;
108
                anchor.download = response['data']['basename'];
109
                document.body.appendChild(anchor);
110
                anchor.click();  // IE: "Access is denied"; see: https://connect.microsoft.com/IE/feedback/details/797361/ie-10-treats-blob-url-as-cross-origin-and-denies-access
111
                document.body.removeChild(anchor);
112
            } else {
113
                $.fn.showError(response['data']);
114
            }
115
        }).fail(function( jqXHR, textStatus, errorThrown) {
16802 efrain 116
            $.fn.showError(textStatus);
16758 efrain 117
        }).always(function() {
118
            NProgress.done();
119
        });
120
 
121
 
122
    });
123
 
124
 
125
});
126
JS;
127
$this->inlineScript()->captureEnd();
128
?>
129
 
16822 efrain 130
 
131
<div class="container">
16758 efrain 132
		<div class="row">
16891 efrain 133
			<div class="col-12 mt-3">
16971 efrain 134
 
16758 efrain 135
				<div class="card card-primary">
136
              		<div class="card-header">
16971 efrain 137
						<h6 class="card-title">LABEL_REPORTS</h6>
16758 efrain 138
                        <!-- /.card-tools -->
139
              		</div>
140
                    <!-- /.card-header -->
16929 efrain 141
                    <form name="form-filter" id="form-filter" action="<?php echo $routeReports ?>">
16758 efrain 142
              		<div class="card-body">
16929 efrain 143
 
16758 efrain 144
 
145
         					<div class="row">
16929 efrain 146
                             	<div class="col-6 mt-3">
147
 
16758 efrain 148
                    					<?php
149
                                        $element = $form->get('first_name');
150
                                        $element->setOptions(['label' => 'LABEL_FIRST_NAME' ]);
151
                                        $element->setAttributes(['class' => 'form-control']);
152
 
153
                                        echo $this->formLabel($element);
154
                                        echo $this->formText($element);
155
                                        ?>
16929 efrain 156
 
16758 efrain 157
        						</div>
158
 
16929 efrain 159
        						<div class="col-6 mt-3">
160
 
16758 efrain 161
                    					<?php
162
                                        $element = $form->get('last_name');
163
                                        $element->setOptions(['label' => 'LABEL_LAST_NAME' ]);
164
                                        $element->setAttributes(['class' => 'form-control']);
165
 
166
                                        echo $this->formLabel($element);
167
                                        echo $this->formText($element);
168
                                        ?>
16929 efrain 169
 
16758 efrain 170
        						</div>
171
    						</div>
172
 
173
							<div class="row">
16929 efrain 174
                             	<div class="col-6 mt-3">
175
 
16758 efrain 176
                    					<?php
177
                                        $element = $form->get('personal_email');
178
                                        $element->setOptions(['label' => 'LABEL_PERSONAL_EMAIL' ]);
179
                                        $element->setAttributes(['class' => 'form-control']);
180
 
181
                                        echo $this->formLabel($element);
182
                                        echo $this->formText($element);
183
                                        ?>
16929 efrain 184
 
16758 efrain 185
        						</div>
186
 
16929 efrain 187
        						<div class="col-6 mt-3">
188
 
16758 efrain 189
                    					<?php
190
                                        $element = $form->get('corporate_email');
191
                                        $element->setOptions(['label' => 'LABEL_CORPORATE_EMAIL' ]);
192
                                        $element->setAttributes(['class' => 'form-control']);
193
 
194
                                        echo $this->formLabel($element);
195
                                        echo $this->formText($element);
196
                                        ?>
16929 efrain 197
 
16758 efrain 198
        						</div>
199
    						</div>
200
 
201
    						<div class="row">
16929 efrain 202
            					<div class="col-6 mt-3">
203
 
16758 efrain 204
                    					<?php
205
                                        $element = $form->get('company');
206
                                        $element->setOptions(['label' => 'LABEL_COMPANY' ]);
207
                                        $element->setAttributes(['class' => 'form-control']);
208
 
209
                                        echo $this->formLabel($element);
210
                                        echo $this->formText($element);
211
                                        ?>
16929 efrain 212
 
16758 efrain 213
        						</div>
214
 
16929 efrain 215
        						<div class="col-6 mt-3">
216
 
16758 efrain 217
                    					<?php
218
                                        $element = $form->get('position');
219
                                        $element->setOptions(['label' => 'LABEL_POSITION' ]);
220
                                        $element->setAttributes(['class' => 'form-control']);
221
 
222
                                        echo $this->formLabel($element);
223
                                        echo $this->formText($element);
224
                                        ?>
16929 efrain 225
 
16758 efrain 226
        						</div>
227
    						</div>
228
 
229
    						<div class="row">
16929 efrain 230
        						<div class="col-6 mt-3">
231
 
16758 efrain 232
                    					<?php
233
                                        $element = $form->get('country');
234
                                        $element->setOptions(['label' => 'LABEL_COUNTRY' ]);
235
                                        $element->setAttributes(['class' => 'form-control']);
236
 
237
                                        echo $this->formLabel($element);
238
                                        echo $this->formText($element);
239
                                        ?>
16929 efrain 240
 
16758 efrain 241
        						</div>
242
 
16929 efrain 243
        						<div class="col-6 mt-3">
244
 
16758 efrain 245
                    					<?php
246
                                        $element = $form->get('state');
247
                                        $element->setOptions(['label' => 'LABEL_STATE' ]);
248
                                        $element->setAttributes(['class' => 'form-control']);
249
 
250
                                        echo $this->formLabel($element);
251
                                        echo $this->formText($element);
252
                                        ?>
16929 efrain 253
 
16758 efrain 254
        						</div>
255
    						</div>
256
 
257
        					<div class="row">
16929 efrain 258
    							<div class="col-6 mt-3">
259
 
16758 efrain 260
                    					<?php
261
                                        $element = $form->get('city');
262
                                        $element->setOptions(['label' => 'LABEL_CITY' ]);
263
                                        $element->setAttributes(['class' => 'form-control']);
264
 
265
                                        echo $this->formLabel($element);
266
                                        echo $this->formText($element);
267
                                        ?>
16929 efrain 268
 
16758 efrain 269
        						</div>
270
 
16929 efrain 271
        						<div class="col-6 mt-3">
272
 
16758 efrain 273
                    					<?php
274
                                        $element = $form->get('phone');
275
                                        $element->setOptions(['label' => 'LABEL_PHONE' ]);
276
                                        $element->setAttributes(['class' => 'form-control']);
277
 
278
                                        echo $this->formLabel($element);
279
                                        echo $this->formText($element);
280
                                        ?>
16929 efrain 281
 
16758 efrain 282
        						</div>
283
    						</div>
284
 
285
							<div class="row">
16929 efrain 286
    							<div class="col-6 mt-3">
287
 
16758 efrain 288
                    					<?php
289
                                        $element = $form->get('phone_extension');
290
                                        $element->setOptions(['label' => 'LABEL_PHONE_EXTENSION' ]);
291
                                        $element->setAttributes(['class' => 'form-control']);
292
 
293
                                        echo $this->formLabel($element);
294
                                        echo $this->formText($element);
295
                                        ?>
16929 efrain 296
 
16758 efrain 297
        						</div>
298
 
16929 efrain 299
        						<div class="col-6 mt-3">
300
 
16758 efrain 301
                    					<?php
302
                                        $element = $form->get('celular');
303
                                        $element->setOptions(['label' => 'LABEL_CELULAR' ]);
304
                                        $element->setAttributes(['class' => 'form-control']);
305
 
306
                                        echo $this->formLabel($element);
307
                                        echo $this->formText($element);
308
                                        ?>
16929 efrain 309
 
16758 efrain 310
        						</div>
311
    						</div>
312
 
313
							<div class="row">
16929 efrain 314
    							<div class="col-6 mt-3">
315
 
16758 efrain 316
                    					<?php
317
                                        $element = $form->get('whatsapp');
318
                                        $element->setOptions(['label' => 'LABEL_WHATSAPP' ]);
319
                                        $element->setAttributes(['class' => 'form-control']);
320
 
321
                                        echo $this->formLabel($element);
322
                                        echo $this->formText($element);
323
                                        ?>
16929 efrain 324
 
16758 efrain 325
        						</div>
326
 
16929 efrain 327
        						<div class="col-6 mt-3">
328
 
16758 efrain 329
                    					<?php
330
                                        $element = $form->get('linkedin');
331
                                        $element->setOptions(['label' => 'LABEL_LINKEDIN' ]);
332
                                        $element->setAttributes(['class' => 'form-control']);
333
 
334
                                        echo $this->formLabel($element);
335
                                        echo $this->formText($element);
336
                                        ?>
16929 efrain 337
 
16758 efrain 338
        						</div>
339
    						</div>
340
 
341
    						<div class="row">
16929 efrain 342
        						<div class="col-6 mt-3">
343
 
16758 efrain 344
                    					<?php
345
                                        $element = $form->get('sector');
346
                                        $element->setOptions(['label' => 'LABEL_SECTOR' ]);
347
                                        $element->setAttributes(['class' => 'form-control']);
348
 
349
                                        echo $this->formLabel($element);
350
                                        echo $this->formText($element);
351
                                        ?>
16929 efrain 352
 
16758 efrain 353
        						</div>
16929 efrain 354
 
16758 efrain 355
    						</div>
356
 
16929 efrain 357
 
16758 efrain 358
              		</div>
16929 efrain 359
              		<div class="card-footer text-right">
360
              			<button id="btn-report"  class="btn btn-primary"> LABEL_REPORT </button>
361
            			<button id="btn-download"  class="btn btn-primary"> LABEL_DOWNLOAD </button>
362
              		</div>
363
              		</form>
16758 efrain 364
                <!-- /.card-body -->
365
            	</div>
366
			</div>
367
		</div>
368
 
369
    	<div class="row">
16891 efrain 370
        	<div class="col-12 mt-3">
16758 efrain 371
 
372
				<div class="card">
373
                    <!-- /.card-header -->
374
              		<div class="card-body p-0">
375
              			<div style="height: 300px;overflow: scroll;">
16822 efrain 376
                        	<table id="tableContact" style="width: 100%" class="table table-bordered">
16758 efrain 377
                      			<thead>
378
                      				<tr>
379
 
380
                      					<th nowrap>LABEL_FIRST_NAME</th>
381
                                        <th nowrap>LABEL_LAST_NAME</th>
382
                                        <th nowrap>LABEL_PERSONAL_EMAIL</th>
383
                                        <th nowrap>LABEL_CORPORATE_EMAIL</th>
384
                                        <th nowrap>LABEL_COMPANY</th>
385
                                        <th nowrap>LABEL_POSITION</th>
386
                                        <th nowrap>LABEL_COUNTRY</th>
387
                                        <th nowrap>LABEL_STATE</th>
388
                                        <th nowrap>LABEL_CITY</th>
389
                                        <th nowrap>LABEL_PHONE</th>
390
                                        <th nowrap>LABEL_PHONE_EXTENSION</th>
391
                                        <th nowrap>LABEL_CELULAR</th>
392
                                        <th nowrap>LABEL_WHATSAPP</th>
393
    	                             	<th nowrap>LABEL_LINKEDIN</th>
394
    	                             	<th nowrap>LABEL_SECTOR</th>
395
                        			</tr>
396
 
397
                      			</thead>
398
                      			<tbody id="tableContactBody" >
399
 
400
                     			</tbody>
401
 
402
                    		</table>
403
                		</div>
404
              		</div>
405
             		 <!-- /.card-body -->
406
            	</div>
407
 
408
 
409
           	</div>
410
        </div>
411
 	</div>
16822 efrain 412
 
16758 efrain 413
 
414
 
415
 
416
<script id="tableTemplate" type="text/x-jsrender">
417
    {{for items}}
418
    <tr>
419
        <td>{{:first_name}}</td>
420
        <td>{{:last_name}}</td>
421
        <td>{{:personal_email}}</td>
422
        <td>{{:corporate_email}}</td>
423
        <td>{{:company}}</td>
424
        <td>{{:position}}</td>
425
        <td>{{:country}}</td>
426
        <td>{{:state}}</td>
427
        <td>{{:city}}</td>
428
        <td>{{:phone}}</td>
429
        <td>{{:phone_extension}}</td>
430
        <td>{{:celular}}</td>
431
        <td>{{:whatsapp}}</td>
432
        <td>{{:linkedin}}</td>
433
	    <td>{{:sector}}</td>
434
    </tr>
435
    {{/for}}
436
</script>
437
 
438
 
439
 
440
 
441
 
442