20 lines
319 B
PHP
Executable File
20 lines
319 B
PHP
Executable File
<?php
|
|
|
|
require_once 'modules/EcmFkVatTables/EcmFkBook.php';
|
|
$focus = new EcmFkVatTable();
|
|
|
|
switch($type = strtolower(@$_GET['type'])) {
|
|
default:
|
|
$focus->getPDF('d');
|
|
break;
|
|
|
|
case 'd':
|
|
case 'pk1':
|
|
case 'pk2':
|
|
case 'pk3':
|
|
$focus->getPDF($type);
|
|
break;
|
|
|
|
}
|
|
|
|
exit; |