openstamanager/pdfgen.php

18 lines
501 B
PHP
Raw Normal View History

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