2025-05-12 15:44:39 +00:00
|
|
|
<?php
|
|
|
|
|
if (isset($_REQUEST['import_baselinker'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/importBaselinkerInvoices.php');
|
|
|
|
|
} else if (isset($_REQUEST['import_amazon'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/importAmazonVATReport.php');
|
|
|
|
|
} else if (isset($_REQUEST['wdt'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/wdtReader.php');
|
|
|
|
|
} else if (isset($_REQUEST['report'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/report.php');
|
|
|
|
|
} else if (isset($_REQUEST['local-vat'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/localVatReader.php');
|
|
|
|
|
} else if (isset($_REQUEST['b2b'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/B2BReader.php');
|
|
|
|
|
} else if (isset($_REQUEST['wz-local-vat'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/vatLocalWZ.php');
|
|
|
|
|
} else if (isset($_REQUEST['wnt'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/wntReader.php');
|
|
|
|
|
} else if (isset($_REQUEST['amazon-wz'])) {
|
2025-09-25 21:50:59 +02:00
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/amazonWDT/amazonWZ.php');
|
|
|
|
|
} else if (isset($_REQUEST['import_apilo'])) {
|
2025-09-29 17:18:32 +00:00
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/importApiloInvoices.php');
|
2025-10-21 19:18:31 +02:00
|
|
|
} else if (isset($_REQUEST['import_temu'])) {
|
|
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/importTEMUInvoices.php');
|
2025-09-29 17:18:32 +00:00
|
|
|
} else if (isset($_REQUEST['apilo_details'])) {
|
|
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/apiloInvoiceDetails.php');
|
2025-10-04 10:40:28 +00:00
|
|
|
} else if (isset($_REQUEST['baselinker_details'])) {
|
|
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/baselinkerInvoiceDetails.php');
|
2025-09-29 17:18:32 +00:00
|
|
|
} else if (isset($_REQUEST['apilo_products'])) {
|
|
|
|
|
include_once(getcwd() . '/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/checkApiloProducts.php');
|
2025-05-12 15:44:39 +00:00
|
|
|
} else {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/ecommerceInvoicesListView.php');
|
|
|
|
|
}
|