mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Aggiunto supporto per files custom interventi
This commit is contained in:
@@ -1,7 +1,16 @@
|
||||
<?php
|
||||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
include_once DOCROOT.'/modules/fatture/modutil.php';
|
||||
if (file_exists( __DIR__.'/../../../core.php')) {
|
||||
include_once __DIR__.'/../../../core.php';
|
||||
}else {
|
||||
include_once __DIR__.'/../../core.php';
|
||||
}
|
||||
if (file_exists($docroot.'/modules/fatture/custom/modutil.php')) {
|
||||
include_once $docroot.'/modules/fatture/custom/modutil.php';
|
||||
} else {
|
||||
include_once $docroot.'/modules/fatture/modutil.php';
|
||||
}
|
||||
|
||||
|
||||
switch (post('op')) {
|
||||
case 'export-bulk':
|
||||
|
||||
Reference in New Issue
Block a user