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'])) {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/importApiloInvoices.php');
|
2025-05-12 15:44:39 +00:00
|
|
|
} else {
|
|
|
|
|
include_once(getcwd().'/modules/EcmInvoiceOuts/BimIT-eCommerceInvoices/ecommerceInvoicesListView.php');
|
|
|
|
|
}
|