2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
|
2017-09-21 15:51:39 +02:00
|
|
|
$filename = !empty($filename) ? $filename : null;
|
|
|
|
$id_print = get('id_print');
|
2017-09-07 16:51:14 +02:00
|
|
|
|
2017-09-21 15:51:39 +02:00
|
|
|
// Retrocompatibilitaà
|
|
|
|
$ptype = get('ptype');
|
|
|
|
if (!empty($ptype)) {
|
|
|
|
$print = $dbo->fetchArray('SELECT id, previous FROM zz_prints WHERE directory = '.prepare($ptype).' ORDER BY main DESC LIMIT 1');
|
|
|
|
$id_print = $print[0]['id'];
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-21 15:51:39 +02:00
|
|
|
$id_record = !empty($id_record) ? $id_record : get($print[0]['previous']);
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-21 15:51:39 +02:00
|
|
|
Prints::render($id_print, $id_record, $filename);
|