1
0
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:
Luca
2018-06-18 15:56:00 +02:00
parent 3a483e975a
commit 1d1042d8fe
11 changed files with 137 additions and 25 deletions

View File

@@ -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':