Add php files
This commit is contained in:
20
modules/EcmFkVatTables/previewPDF.php
Executable file
20
modules/EcmFkVatTables/previewPDF.php
Executable file
@@ -0,0 +1,20 @@
|
||||
<?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;
|
||||
Reference in New Issue
Block a user