2024-04-27 09:23:34 +02:00
|
|
|
<?php
|
|
|
|
|
if (isset($_GET['reportName']) && $_GET['reportName']=='productsBySales') {
|
|
|
|
|
include_once("modules/EcmReports/BimIT-Reports/productsBySales/productsBySales.php");
|
2024-12-03 09:55:11 +00:00
|
|
|
} else if (isset($_GET['reportName']) && $_GET['reportName']=='productionSchedule') {
|
|
|
|
|
include_once("modules/EcmReports/BimIT-Reports/productionSchedule/productionSchedule.php");
|
2024-04-27 09:23:34 +02:00
|
|
|
} else {
|
|
|
|
|
include_once("modules/EcmReports/ReportSales.php");
|
2024-12-03 09:55:11 +00:00
|
|
|
}
|