public function updateOrderStatus($orders_id, $orders_status, $mail_customer = 0)
 {
     if (!is_numeric($orders_id)) {
         return false;
     }
     $continue = 1;
     //hook to let other plugins further manipulate
     if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusPreProc'])) {
         $params = array('orders_id' => &$orders_id, 'orders_status' => &$orders_status, 'mail_customer' => &$mail_customer, 'continue' => &$continue);
         foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusPreProc'] as $funcRef) {
             \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
         }
     }
     if ($continue) {
         $order = mslib_fe::getOrder($orders_id);
         if ($order['orders_id']) {
             // dynamic variables
             if (isset($order['language_id'])) {
                 // Switch to language that is stored in the order
                 mslib_befe::setSystemLanguage($order['language_id']);
             }
             $billing_address = '';
             $delivery_address = '';
             $full_customer_name = $order['billing_first_name'];
             if ($order['billing_middle_name']) {
                 $full_customer_name .= ' ' . $order['billing_middle_name'];
             }
             if ($order['billing_last_name']) {
                 $full_customer_name .= ' ' . $order['billing_last_name'];
             }
             $delivery_full_customer_name = $order['delivery_first_name'];
             if ($order['delivery_middle_name']) {
                 $delivery_full_customer_name .= ' ' . $order['delivery_middle_name'];
             }
             if ($order['delivery_last_name']) {
                 $delivery_full_customer_name .= ' ' . $order['delivery_last_name'];
             }
             $full_customer_name = preg_replace('/\\s+/', ' ', $full_customer_name);
             $delivery_full_customer_name = preg_replace('/\\s+/', ' ', $delivery_full_customer_name);
             if (!$order['delivery_address'] or !$order['delivery_city']) {
                 $order['delivery_company'] = $order['billing_company'];
                 $order['delivery_address'] = $order['billing_address'];
                 $order['delivery_street_name'] = $order['billing_street_name'];
                 $order['delivery_address_number'] = $order['billing_address_number'];
                 $order['delivery_address_ext'] = $order['billing_address_ext'];
                 $order['delivery_building'] = $order['billing_building'];
                 $order['delivery_zip'] = $order['billing_zip'];
                 $order['delivery_city'] = $order['billing_city'];
                 $order['delivery_telephone'] = $order['billing_telephone'];
                 $order['delivery_mobile'] = $order['billing_mobile'];
             }
             if ($order['delivery_company']) {
                 $delivery_address = $order['delivery_company'] . "<br />";
             }
             if ($delivery_full_customer_name) {
                 $delivery_address .= $delivery_full_customer_name . "<br />";
             }
             if ($order['delivery_building']) {
                 $delivery_address .= $order['delivery_building'] . "<br />";
             }
             if ($order['delivery_address']) {
                 $delivery_address .= $order['delivery_address'] . "<br />";
             }
             if ($order['delivery_zip'] and $order['delivery_city']) {
                 $delivery_address .= $order['delivery_zip'] . " " . $order['delivery_city'];
             }
             //if ($order['delivery_telephone']) 		$delivery_address.=ucfirst($this->pi_getLL('telephone')).': '.$order['delivery_telephone']."<br />";
             //if ($order['delivery_mobile']) 			$delivery_address.=ucfirst($this->pi_getLL('mobile')).': '.$order['delivery_mobile']."<br />";
             if ($order['billing_company']) {
                 $billing_address = $order['billing_company'] . "<br />";
             }
             if ($full_customer_name) {
                 $billing_address .= $full_customer_name . "<br />";
             }
             if ($order['billing_building']) {
                 $billing_address .= $order['billing_building'] . "<br />";
             }
             if ($order['billing_address']) {
                 $billing_address .= $order['billing_address'] . "<br />";
             }
             if ($order['billing_zip'] and $order['billing_city']) {
                 $billing_address .= $order['billing_zip'] . " " . $order['billing_city'];
             }
             //if ($order['billing_telephone']) 		$billing_address.=ucfirst($this->pi_getLL('telephone')).': '.$order['billing_telephone']."<br />";
             //if ($order['billing_mobile']) 			$billing_address.=ucfirst($this->pi_getLL('mobile')).': '.$order['billing_mobile']."<br />";
             $array1 = array();
             $array2 = array();
             $array1[] = '###GENDER_SALUTATION###';
             $array2[] = mslib_fe::genderSalutation($order['billing_gender']);
             $array1[] = '###DELIVERY_FIRST_NAME###';
             $array2[] = $order['delivery_first_name'];
             $array1[] = '###DELIVERY_LAST_NAME###';
             $array2[] = preg_replace('/\\s+/', ' ', $order['delivery_middle_name'] . ' ' . $order['delivery_last_name']);
             $array1[] = '###BILLING_FIRST_NAME###';
             $array2[] = $order['billing_first_name'];
             $array1[] = '###BILLING_LAST_NAME###';
             $array2[] = preg_replace('/\\s+/', ' ', $order['billing_middle_name'] . ' ' . $order['billing_last_name']);
             $array1[] = '###BILLING_TELEPHONE###';
             $array2[] = $order['billing_telephone'];
             $array1[] = '###DELIVERY_TELEPHONE###';
             $array2[] = $order['delivery_telephone'];
             $array1[] = '###BILLING_MOBILE###';
             $array2[] = $order['billing_mobile'];
             $array1[] = '###DELIVERY_MOBILE###';
             $array2[] = $order['delivery_mobile'];
             $array1[] = '###BILLING_FULL_NAME###';
             $array2[] = $full_customer_name;
             $array1[] = '###FULL_NAME###';
             $array2[] = $full_customer_name;
             $array1[] = '###DELIVERY_FULL_NAME###';
             $array2[] = $delivery_full_customer_name;
             $array1[] = '###BILLING_NAME###';
             $array2[] = $order['billing_name'];
             $array1[] = '###BILLING_EMAIL###';
             $array2[] = $order['billing_email'];
             $array1[] = '###DELIVERY_EMAIL###';
             $array2[] = $order['delivery_email'];
             $array1[] = '###DELIVERY_NAME###';
             $array2[] = $order['delivery_name'];
             $array1[] = '###CUSTOMER_EMAIL###';
             $array2[] = $order['billing_email'];
             $array1[] = '###STORE_NAME###';
             $array2[] = $this->ms['MODULES']['STORE_NAME'];
             $array1[] = '###TOTAL_AMOUNT###';
             $array2[] = mslib_fe::amount2Cents($order['total_amount']);
             $ORDER_DETAILS = mslib_fe::printOrderDetailsTable($order, 'email');
             $array1[] = '###ORDER_DETAILS###';
             $array2[] = $ORDER_DETAILS;
             $array1[] = '###BILLING_ADDRESS###';
             $array2[] = $billing_address;
             $array1[] = '###DELIVERY_ADDRESS###';
             $array2[] = $delivery_address;
             $array1[] = '###CUSTOMER_ID###';
             $array2[] = $order['customer_id'];
             $array1[] = '###SHIPPING_METHOD###';
             $array2[] = $order['shipping_method_label'];
             $array1[] = '###PAYMENT_METHOD###';
             $array2[] = $order['payment_method_label'];
             $invoice = mslib_fe::getOrderInvoice($order['orders_id'], 0);
             $invoice_id = '';
             $invoice_link = '';
             if (is_array($invoice)) {
                 $invoice_id = $invoice['invoice_id'];
                 $invoice_link = '<a href="' . $this->FULL_HTTP_URL . mslib_fe::typolink($this->shop_pid . ',2002', 'tx_multishop_pi1[page_section]=download_invoice&tx_multishop_pi1[hash]=' . $invoice['hash']) . '">' . $invoice['invoice_id'] . '</a>';
             }
             $array1[] = '###INVOICE_NUMBER###';
             $array2[] = $invoice_id;
             $array1[] = '###INVOICE_LINK###';
             $array2[] = $invoice_link;
             $time = $order['crdate'];
             $long_date = strftime($this->pi_getLL('full_date_format'), $time);
             $array1[] = '###ORDER_DATE_LONG###';
             // ie woensdag 23 juni, 2010
             $array2[] = $long_date;
             // backwards compatibility
             $array1[] = '###ORDER_DATE###';
             // 21-12-2010 in localized format
             $array2[] = strftime("%x", $time);
             $array1[] = '###LONG_DATE###';
             // ie woensdag 23 juni, 2010
             $array2[] = $long_date;
             $time = time();
             $long_date = strftime($this->pi_getLL('full_date_format'), $time);
             $array1[] = '###CURRENT_DATE_LONG###';
             // ie woensdag 23 juni, 2010
             $array2[] = $long_date;
             $array1[] = '###STORE_NAME###';
             $array2[] = $this->ms['MODULES']['STORE_NAME'];
             $array1[] = '###TOTAL_AMOUNT###';
             $array2[] = mslib_fe::amount2Cents($order['total_amount']);
             $array1[] = '###PROPOSAL_NUMBER###';
             $array2[] = $order['orders_id'];
             $array1[] = '###ORDER_NUMBER###';
             $array2[] = $order['orders_id'];
             $array1[] = '###ORDER_LINK###';
             $array2[] = '';
             $array1[] = '###CUSTOMER_ID###';
             $array2[] = $order['customer_id'];
             $array1[] = '###CUSTOMER_COMMENTS###';
             $array2[] = $order['customer_comments'];
             $array1[] = '###MESSAGE###';
             $array2[] = $this->post['comments'];
             $array1[] = '###OLD_ORDER_STATUS###';
             $array2[] = mslib_fe::getOrderStatusName($order['status'], $order['language_id']);
             $array1[] = '###ORDER_STATUS###';
             $array2[] = mslib_fe::getOrderStatusName($orders_status, $order['language_id']);
             $array1[] = '###EXPECTED_DELIVERY_DATE###';
             if ($order['expected_delivery_date'] > 0) {
                 $array2[] = strftime("%x", $order['expected_delivery_date']);
             } else {
                 $array2[] = '';
             }
             $array1[] = '###EXPECTED_DELIVERY_DATE_LONG###';
             if ($order['expected_delivery_date'] > 0) {
                 $array2[] = strftime($this->pi_getLL('full_date_no_time_format'), $order['expected_delivery_date']);
             } else {
                 $array2[] = '';
             }
             $array1[] = '###TRACK_AND_TRACE_CODE###';
             $array2[] = $order['track_and_trace_code'];
             $array1[] = '###BILLING_STREET_NAME###';
             $array2[] = $order['billing_street_name'];
             $array1[] = '###BILLING_ADDRESS_NUMBER###';
             $array2[] = $order['billing_address_number'];
             $array1[] = '###BILLING_ADDRESS_EXT###';
             $array2[] = $order['billing_address_ext'];
             $array1[] = '###BILLING_ZIP###';
             $array2[] = $order['billing_zip'];
             $array1[] = '###BILLING_CITY###';
             $array2[] = $order['billing_city'];
             $array1[] = '###BILLING_COUNTRY###';
             $array2[] = mslib_fe::getTranslatedCountryNameByEnglishName($this->lang, $order['billing_country']);
             $array1[] = '###BILLING_COUNTRY_CODE###';
             $array2[] = mslib_fe::getCountryCnIsoByEnglishName($order['billing_country']);
             $array1[] = '###DELIVERY_STREET_NAME###';
             $array2[] = $order['delivery_street_name'];
             $array1[] = '###DELIVERY_ADDRESS_NUMBER###';
             $array2[] = $order['delivery_address_number'];
             $array1[] = '###DELIVERY_ADDRESS_EXT###';
             $array2[] = $order['delivery_address_ext'];
             $array1[] = '###DELIVERY_ZIP###';
             $array2[] = $order['delivery_zip'];
             $array1[] = '###DELIVERY_CITY###';
             $array2[] = $order['delivery_city'];
             $array1[] = '###DELIVERY_COUNTRY###';
             $array2[] = mslib_fe::getTranslatedCountryNameByEnglishName($this->lang, $order['delivery_country']);
             $array1[] = '###DELIVERY_COUNTRY_CODE###';
             $array2[] = mslib_fe::getCountryCnIsoByEnglishName($order['delivery_country']);
             // dynamic variablese eof
             //hook to let other plugins further manipulate
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusMarkerReplacerProc'])) {
                 $params = array('array1' => &$array1, 'array2' => &$array2, 'order' => &$order);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusMarkerReplacerProc'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
             }
             if ($this->post['comments']) {
                 $this->post['comments'] = str_replace($array1, $array2, $this->post['comments']);
             }
             $status_last_modified = time();
             $updateArray = array();
             $updateArray['orders_id'] = $order['orders_id'];
             $updateArray['old_value'] = $order['status'];
             $updateArray['comments'] = $this->post['comments'];
             $updateArray['customer_notified'] = $mail_customer;
             $updateArray['crdate'] = $status_last_modified;
             $updateArray['new_value'] = $orders_status;
             $updateArray['requester_ip_addr'] = $this->REMOTE_ADDR;
             $query = $GLOBALS['TYPO3_DB']->INSERTquery('tx_multishop_orders_status_history', $updateArray);
             if ($orders_status == $order['status']) {
                 if (!empty($this->post['comments']) && $mail_customer) {
                     // always save the order status history even when order status is the same as the old one when e-mail to client is filled
                     $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                 }
                 $returnTrue = 0;
             } else {
                 // save if new order status history is different than the old status
                 $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                 $returnTrue = 1;
             }
             $updateArray = array();
             $updateArray['status'] = $orders_status;
             $updateArray['status_last_modified'] = $status_last_modified;
             $order['old_status'] = $order['status'];
             $order['status'] = $orders_status;
             $updateArray['orders_last_modified'] = time();
             $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders', 'orders_id=\'' . $orders_id . '\'', $updateArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
             //send e-mail
             if ($mail_customer) {
                 $subject = $this->ms['MODULES']['STORE_NAME'];
                 $message = $this->post['comments'];
                 if ($orders_status) {
                     $orders_status_name = mslib_fe::getOrderStatusName($orders_status, 0);
                     $keys = array();
                     $keys[] = 'email_order_status_changed_' . mslib_befe::strtolower($orders_status_name);
                     $keys[] = 'email_order_status_changed';
                     foreach ($keys as $key) {
                         //$page=mslib_fe::getCMScontent($key,$GLOBALS['TSFE']->sys_language_uid);
                         $page = mslib_fe::getCMScontent($key, $order['language_id']);
                         if ($page[0]) {
                             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusMarkerReplacerPostProc'])) {
                                 $params = array('array1' => &$array1, 'array2' => &$array2, 'page' => &$page);
                                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusMarkerReplacerPostProc'] as $funcRef) {
                                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                                 }
                             }
                             if ($page[0]['content']) {
                                 $page[0]['content'] = str_replace($array1, $array2, $page[0]['content']);
                             }
                             if ($page[0]['name']) {
                                 $page[0]['name'] = str_replace($array1, $array2, $page[0]['name']);
                             }
                             $user = array();
                             $user['email'] = $order['billing_email'];
                             $user['name'] = $order['billing_name'];
                             if ($user['email']) {
                                 mslib_fe::mailUser($user, $page[0]['name'], $page[0]['content'], $this->ms['MODULES']['STORE_EMAIL'], $this->ms['MODULES']['STORE_NAME']);
                             }
                             break;
                         }
                     }
                 }
             }
             if (isset($order['language_id'])) {
                 // Switch back to default language
                 mslib_befe::resetSystemLanguage();
             }
             //hook to let other plugins further manipulate
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusPostProc'])) {
                 $params = array('orders_id' => &$orders_id, 'orders_status' => &$orders_status, 'mail_customer' => &$mail_customer, 'order' => &$order, 'array1' => &$array1, 'array2' => &$array2);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.mslib_befe.php']['updateOrderStatusPostProc'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
             }
             if ($returnTrue) {
                 return true;
             }
         }
     }
 }
<?php

if (!defined('TYPO3_MODE')) {
    die('Access denied.');
}
$subpartArray = array();
$subpartArray['###VALUE_REFERRER###'] = '';
if ($this->post['tx_multishop_pi1']['referrer']) {
    $subpartArray['###VALUE_REFERRER###'] = $this->post['tx_multishop_pi1']['referrer'];
} else {
    $subpartArray['###VALUE_REFERRER###'] = $_SERVER['HTTP_REFERER'];
}
if (is_numeric($this->get['orders_id'])) {
    $order = mslib_fe::getOrder($this->get['orders_id']);
    if ($order['customer_id']) {
        if (!($customer_address = mslib_fe::getAddressInfo('customer', $order['customer_id']))) {
            $customer_address['country'] = $order['billing_country'];
            $customer_address['region'] = $order['billing_region'];
        }
        if (!isset($customer_address['country']) && isset($customer_address['default']['country'])) {
            $customer_address = $customer_address['default'];
        }
        $country = mslib_fe::getCountryByName($customer_address['country']);
        if (!empty($customer_address['region'])) {
            $zone = mslib_fe::getRegionByName($customer_address['region']);
        } else {
            $zone['zn_country_iso_nr'] = 0;
        }
    }
    if ($this->ms['MODULES']['ORDER_EDIT']) {
        if (!$order['is_locked']) {
             $excelHeaderCols['product_final_price_excl_tax' . $i] = 'product_final_price_excl_tax' . $i;
             $excelHeaderCols['product_final_price_incl_tax' . $i] = 'product_final_price_incl_tax' . $i;
             $excelHeaderCols['product_price_total_excl_tax' . $i] = 'product_final_price_total_excl_tax' . $i;
             $excelHeaderCols['product_price_total_incl_tax' . $i] = 'product_final_price_total_incl_tax' . $i;
             $excelHeaderCols['product_tax_rate' . $i] = 'product_tax_rate' . $i;
         }
     }
 }
 if ($this->get['format'] == 'excel') {
     $excelRows[] = $excelHeaderCols;
 } else {
     $excelRows[] = implode($post_data['delimeter_type'], $excelHeaderCols);
 }
 foreach ($records as $row) {
     $order_tax_data = unserialize($row['orders_tax_data']);
     $order_tmp = mslib_fe::getOrder($row['orders_id']);
     $excelCols = array();
     $total = count($fields);
     $count = 0;
     foreach ($fields as $counter => $field) {
         $count++;
         $tmpcontent = '';
         switch ($field) {
             case 'orders_id':
                 $excelCols[] = $row['orders_id'];
                 break;
             case 'customer_id':
                 $excelCols[] = $row['customer_id'];
                 break;
             case 'orders_status':
                 $excelCols[] = $row['orders_status'];
<?php

if (!defined('TYPO3_MODE')) {
    die('Access denied.');
}
if ($this->ms['MODULES']['DELETE_PDF_PACKING_SLIP_AFTER_BEING_DOWNLOADED']) {
    $this->get['tx_multishop_pi1']['forceRecreate'] = 1;
}
$order = array();
if ($this->get['tx_multishop_pi1']['order_id'] && $this->ADMIN_USER) {
    $order_id = $this->get['tx_multishop_pi1']['order_id'];
    $order = mslib_fe::getOrder($order_id);
} elseif ($this->get['tx_multishop_pi1']['order_hash']) {
    $order_hash = $this->get['tx_multishop_pi1']['order_hash'];
    $order = mslib_fe::getOrder($order_hash, 'hash');
}
if (!count($order)) {
    exit;
}
$pdfFileName = 'packingslip_' . $order['hash'] . '.pdf';
$pdfFileName = 'packingslip_' . $order['hash'] . '.pdf';
$pdfFilePath = $this->DOCUMENT_ROOT . 'uploads/tx_multishop/' . $pdfFileName;
if ($this->ms['MODULES']['DELETE_PDF_PACKING_SLIP_AFTER_BEING_DOWNLOADED'] && file_exists($pdfFilePath)) {
    unlink($pdfFilePath);
}
if (($this->get['tx_multishop_pi1']['forceRecreate'] || !file_exists($pdfFilePath)) && $order['hash']) {
    $orders_tax_data = $order['orders_tax_data'];
    if ($order['orders_id']) {
        // now parse all the objects in the tmpl file
        if ($this->conf['admin_packingslip_pdf_tmpl_path']) {
            $template = $this->cObj->fileResource($this->conf['admin_packingslip_pdf_tmpl_path']);
 function convertCartToOrder($cart)
 {
     // var for total amount
     $tax_separation = array();
     $total_price = 0;
     $order = array();
     $address = $cart['user'];
     // check for NULL, convert to empty string - typo3 v6.x related bug
     if (is_array($address) && count($address)) {
         foreach ($address as $key => $val) {
             if ($val == null || $val == null) {
                 $address[$key] = '';
             }
         }
     }
     // if store country is different from customer country and user provided valid VAT id, change VAT rate to zero
     $this->ms['MODULES']['DISABLE_VAT_RATE'] = 0;
     if ($this->ms['MODULES']['DISABLE_VAT_FOR_FOREIGN_CUSTOMERS_WITH_COMPANY_VAT_ID'] and $address['tx_multishop_vat_id']) {
         if (strtolower($address['country']) != strtolower($this->tta_shop_info['country'])) {
             $this->ms['MODULES']['DISABLE_VAT_RATE'] = 1;
         }
     }
     /*
      * always use *_tax and *_total_tax_rate, unless need different calc for country/region
      * WARNING: *_country_* and *_region_* not always have value, depends on the tax ruleset
      * -----------------------------------------------------------------------------------------
      */
     $orders_tax['shipping_tax'] = (string) $address['shipping_tax'];
     $orders_tax['shipping_country_tax'] = (string) $address['shipping_country_tax'];
     $orders_tax['shipping_region_tax'] = (string) $address['shipping_region_tax'];
     $orders_tax['shipping_total_tax_rate'] = (string) $address['shipping_total_tax_rate'];
     $orders_tax['shipping_country_tax_rate'] = (string) $address['shipping_country_tax_rate'];
     $orders_tax['shipping_region_tax_rate'] = (string) $address['shipping_region_tax_rate'];
     if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
         $orders_tax['shipping_tax'] = 0;
         $orders_tax['shipping_country_tax'] = 0;
         $orders_tax['shipping_region_tax'] = 0;
         $orders_tax['shipping_total_tax_rate'] = 0;
         $orders_tax['shipping_country_tax_rate'] = 0;
         $orders_tax['shipping_region_tax_rate'] = 0;
     }
     // ----------------------------------------------------------------------------------------
     $orders_tax['payment_tax'] = (string) $address['payment_tax'];
     $orders_tax['payment_country_tax'] = (string) $address['payment_country_tax'];
     $orders_tax['payment_region_tax'] = (string) $address['payment_region_tax'];
     $orders_tax['payment_total_tax_rate'] = (string) $address['payment_total_tax_rate'];
     $orders_tax['payment_country_tax_rate'] = (string) $address['payment_country_tax_rate'];
     $orders_tax['payment_region_tax_rate'] = (string) $address['payment_region_tax_rate'];
     if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
         $orders_tax['payment_tax'] = 0;
         $orders_tax['payment_country_tax'] = 0;
         $orders_tax['payment_region_tax'] = 0;
         $orders_tax['payment_total_tax_rate'] = 0;
         $orders_tax['payment_country_tax_rate'] = 0;
         $orders_tax['payment_region_tax_rate'] = 0;
     }
     // ----------------------------------------------------------------------------------------
     $grand_total = array();
     $grand_total['shipping_tax'] = $orders_tax['shipping_tax'];
     $grand_total['payment_tax'] = $orders_tax['payment_tax'];
     $tax_separation[$orders_tax['shipping_total_tax_rate'] * 100]['shipping_tax'] += $orders_tax['shipping_tax'];
     $tax_separation[$orders_tax['payment_total_tax_rate'] * 100]['payment_tax'] += $orders_tax['payment_tax'];
     if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
         $grand_total['shipping_tax'] = 0;
         $grand_total['payment_tax'] = 0;
         $tax_separation[$orders_tax['shipping_total_tax_rate'] * 100]['shipping_tax'] = 0;
         $tax_separation[$orders_tax['payment_total_tax_rate'] * 100]['payment_tax'] = 0;
         if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT']) {
             $address['shipping_method_costs'] = mslib_fe::taxDecimalCrop($address['shipping_method_costs'], 2, false);
             $address['payment_method_costs'] = mslib_fe::taxDecimalCrop($address['payment_method_costs'], 2, false);
         }
     }
     // add shipping & payment costs
     if ($address['shipping_method_costs']) {
         $grand_total['shipping_cost'] = $address['shipping_method_costs'];
         $total_price = $total_price + $address['shipping_method_costs'];
         $tax_separation[$orders_tax['shipping_total_tax_rate'] * 100]['shipping_costs'] = $address['shipping_method_costs'];
     }
     if ($address['payment_method_costs']) {
         $grand_total['payment_cost'] = $address['payment_method_costs'];
         $total_price = $total_price + $address['payment_method_costs'];
         $tax_separation[$orders_tax['payment_total_tax_rate'] * 100]['payment_costs'] = $address['payment_method_costs'];
     }
     $customer_id = '';
     // first the account
     if ($GLOBALS['TSFE']->fe_user->user['uid']) {
         $customer_id = $GLOBALS['TSFE']->fe_user->user['uid'];
     } else {
         $tmp_user = mslib_fe::getUser($address['email'], 'email');
         if ($tmp_user['uid']) {
             $customer_id = $tmp_user['uid'];
         }
     }
     //hook to let other plugins further manipulate the create table query
     if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_user.php']['convertCartToOrderGetCustomerIdPreProc'])) {
         $params = array('address' => &$address, 'cart' => &$cart, 'customer_id' => &$customer_id);
         foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_user.php']['convertCartToOrderGetCustomerIdPreProc'] as $funcRef) {
             \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
         }
     }
     if (!$customer_id) {
         // add new account
         $insertArray = array();
         $insertArray['company'] = $address['company'];
         $insertArray['name'] = $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name'];
         $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
         $insertArray['first_name'] = $address['first_name'];
         $insertArray['middle_name'] = $address['middle_name'];
         $insertArray['last_name'] = $address['last_name'];
         $insertArray['username'] = $address['email'];
         $insertArray['email'] = $address['email'];
         if (!$address['street_name']) {
             // fallback for old custom checkouts
             $insertArray['building'] = $address['building'];
             $insertArray['street_name'] = $address['address'];
             $insertArray['address_number'] = $address['address_number'];
             $insertArray['address_ext'] = $address['address_ext'];
             $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
             $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
         } else {
             $insertArray['building'] = $address['building'];
             $insertArray['street_name'] = $address['street_name'];
             $insertArray['address_number'] = $address['address_number'];
             $insertArray['address_ext'] = $address['address_ext'];
             $insertArray['address'] = $address['address'];
         }
         $insertArray['zip'] = $address['zip'];
         $insertArray['telephone'] = $address['telephone'];
         $insertArray['city'] = $address['city'];
         $insertArray['country'] = $address['country'];
         $insertArray['tx_multishop_code'] = md5(uniqid('', true));
         $insertArray['tstamp'] = time();
         $insertArray['crdate'] = time();
         if (isset($address['tx_multishop_newsletter']) && !empty($address['tx_multishop_newsletter'])) {
             $insertArray['tx_multishop_newsletter'] = $address['tx_multishop_newsletter'];
         } else {
             $insertArray['tx_multishop_newsletter'] = '';
         }
         $insertArray['page_uid'] = $this->shop_pid;
         if (isset($address['password']) && !empty($address['password'])) {
             $insertArray['password'] = mslib_befe::getHashedPassword($address['password']);
             $insertArray['disable'] = 1;
         } else {
             $insertArray['password'] = mslib_befe::getHashedPassword(mslib_befe::generateRandomPassword(10));
         }
         $insertArray['usergroup'] = $this->conf['fe_customer_usergroup'];
         $insertArray['pid'] = $this->conf['fe_customer_pid'];
         if (isset($this->cookie['HTTP_REFERER']) && !empty($this->cookie['HTTP_REFERER'])) {
             $insertArray['http_referer'] = $this->cookie['HTTP_REFERER'];
         } else {
             $insertArray['http_referer'] = '';
         }
         $insertArray['ip_address'] = $this->server['REMOTE_ADDR'];
         if ($this->ms['MODULES']['CHECKOUT_DISPLAY_VAT_ID_INPUT'] && !empty($address['tx_multishop_vat_id'])) {
             $insertArray['tx_multishop_vat_id'] = $address['tx_multishop_vat_id'];
         }
         if ($this->ms['MODULES']['CHECKOUT_DISPLAY_COC_ID_INPUT'] && !empty($address['tx_multishop_coc_id'])) {
             $insertArray['tx_multishop_coc_id'] = $address['tx_multishop_coc_id'];
         }
         $insertArray['tx_multishop_quick_checkout'] = 1;
         if ($address['gender'] == 'm' or $address['gender'] == '0') {
             $insertArray['gender'] = '0';
         } elseif ($address['gender'] == 'f' or $address['gender'] == '1') {
             $insertArray['gender'] = '1';
         }
         $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
         $query = $GLOBALS['TYPO3_DB']->INSERTquery('fe_users', $insertArray);
         $res = $GLOBALS['TYPO3_DB']->sql_query($query);
         if ($res) {
             $customer_id = $GLOBALS['TYPO3_DB']->sql_insert_id();
             // ADD TT_ADDRESS RECORD
             $insertArray = array();
             $insertArray['tstamp'] = time();
             $insertArray['company'] = $address['company'];
             $insertArray['name'] = $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name'];
             $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
             $insertArray['first_name'] = $address['first_name'];
             $insertArray['middle_name'] = $address['middle_name'];
             $insertArray['last_name'] = $address['last_name'];
             $insertArray['email'] = $address['email'];
             if (!$address['street_name']) {
                 // fallback for old custom checkouts
                 $insertArray['building'] = $address['building'];
                 $insertArray['street_name'] = $address['address'];
                 $insertArray['address_number'] = $address['address_number'];
                 $insertArray['address_ext'] = $address['address_ext'];
                 $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                 $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
             } else {
                 $insertArray['building'] = $address['building'];
                 $insertArray['street_name'] = $address['street_name'];
                 $insertArray['address_number'] = $address['address_number'];
                 $insertArray['address_ext'] = $address['address_ext'];
                 $insertArray['address'] = $address['address'];
             }
             $insertArray['zip'] = $address['zip'];
             $insertArray['phone'] = $address['telephone'];
             $insertArray['mobile'] = $address['mobile'];
             $insertArray['city'] = $address['city'];
             $insertArray['country'] = $address['country'];
             $insertArray['gender'] = $address['gender'];
             $insertArray['birthday'] = strtotime($address['birthday']);
             if ($address['gender'] == 'm') {
                 $insertArray['title'] = 'Mr.';
             } else {
                 if ($address['gender'] == 'f') {
                     $insertArray['title'] = 'Mrs.';
                 }
             }
             $insertArray['region'] = $address['state'];
             $insertArray['pid'] = $this->conf['fe_customer_pid'];
             $insertArray['page_uid'] = $this->shop_pid;
             $insertArray['tstamp'] = time();
             $insertArray['tx_multishop_address_type'] = 'billing';
             $insertArray['tx_multishop_default'] = 1;
             $insertArray['tx_multishop_customer_id'] = $customer_id;
             $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
             $query = $GLOBALS['TYPO3_DB']->INSERTquery('tt_address', $insertArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
             // send out the create account confirmation e-mail
             if (isset($address['password']) && !empty($address['password'])) {
                 mslib_fe::sendCreateAccountConfirmationLetter($customer_id, $address['password']);
             }
             // insert delivery into tt_address
             if (!$address['different_delivery_address']) {
                 $insertArray = array();
                 $insertArray['tstamp'] = time();
                 $insertArray['company'] = $address['company'];
                 $insertArray['name'] = $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name'];
                 $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
                 $insertArray['first_name'] = $address['first_name'];
                 $insertArray['middle_name'] = $address['middle_name'];
                 $insertArray['last_name'] = $address['last_name'];
                 $insertArray['email'] = $address['email'];
                 if (!$address['street_name']) {
                     // fallback for old custom checkouts
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['address'];
                     $insertArray['address_number'] = $address['address_number'];
                     $insertArray['address_ext'] = $address['address_ext'];
                     $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                     $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
                 } else {
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['street_name'];
                     $insertArray['address_number'] = $address['address_number'];
                     $insertArray['address_ext'] = $address['address_ext'];
                     $insertArray['address'] = $address['address'];
                 }
                 $insertArray['zip'] = $address['zip'];
                 $insertArray['phone'] = $address['telephone'];
                 $insertArray['mobile'] = $address['mobile'];
                 $insertArray['city'] = $address['city'];
                 $insertArray['country'] = $address['country'];
                 $insertArray['gender'] = $address['gender'];
                 $insertArray['birthday'] = strtotime($address['birthday']);
                 if ($address['gender'] == 'm') {
                     $insertArray['title'] = 'Mr.';
                 } else {
                     if ($address['gender'] == 'f') {
                         $insertArray['title'] = 'Mrs.';
                     }
                 }
                 $insertArray['region'] = $address['state'];
             } else {
                 $insertArray = array();
                 $insertArray['tx_multishop_customer_id'] = $customer_id;
                 $insertArray['tstamp'] = time();
                 $insertArray['company'] = $address['delivery_company'];
                 $insertArray['name'] = $address['delivery_first_name'] . ' ' . $address['delivery_middle_name'] . ' ' . $address['delivery_last_name'];
                 $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
                 $insertArray['first_name'] = $address['delivery_first_name'];
                 $insertArray['middle_name'] = $address['delivery_middle_name'];
                 $insertArray['last_name'] = $address['delivery_last_name'];
                 $insertArray['email'] = $address['delivery_email'];
                 if (!$address['delivery_street_name']) {
                     // fallback for old custom checkouts
                     $insertArray['building'] = $address['delivery_building'];
                     $insertArray['street_name'] = $address['delivery_address'];
                     $insertArray['address_number'] = $address['delivery_address_number'];
                     $insertArray['address_ext'] = $address['delivery_address_ext'];
                     $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                     $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
                 } else {
                     $insertArray['building'] = $address['delivery_building'];
                     $insertArray['street_name'] = $address['delivery_street_name'];
                     $insertArray['address_number'] = $address['delivery_address_number'];
                     $insertArray['address_ext'] = $address['delivery_address_ext'];
                     $insertArray['address'] = $address['delivery_address'];
                 }
                 $insertArray['zip'] = $address['delivery_zip'];
                 $insertArray['phone'] = $address['delivery_telephone'];
                 $insertArray['mobile'] = $address['delivery_mobile'];
                 $insertArray['city'] = $address['delivery_city'];
                 $insertArray['country'] = $address['delivery_country'];
                 $insertArray['gender'] = $address['delivery_gender'];
                 $insertArray['birthday'] = strtotime($address['delivery_birthday']);
                 if ($address['delivery_gender'] == 'm') {
                     $insertArray['title'] = 'Mr.';
                 } else {
                     if ($address['delivery_gender'] == 'f') {
                         $insertArray['title'] = 'Mrs.';
                     }
                 }
                 $insertArray['region'] = $address['delivery_state'];
             }
             $insertArray['pid'] = $this->conf['fe_customer_pid'];
             $insertArray['page_uid'] = $this->shop_pid;
             $insertArray['tstamp'] = time();
             $insertArray['tx_multishop_customer_id'] = $customer_id;
             $insertArray['tx_multishop_address_type'] = 'delivery';
             $insertArray['tx_multishop_default'] = 0;
             $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
             $query = $GLOBALS['TYPO3_DB']->INSERTquery('tt_address', $insertArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
             // ADD TT_ADDRESS RECORD EOF
             //hook to let other plugins further manipulate the create table query
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_user.php']['createUserPostProc'])) {
                 $params = array('customer_id' => &$customer_id);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_user.php']['createUserPostProc'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
             }
         }
     } else {
         // insert tt_address for existing customer if no record found
         if (!mslib_fe::getFeUserTTaddressDetails($customer_id, 'billing')) {
             // ADD TT_ADDRESS RECORD
             $insertArray = array();
             $insertArray['tstamp'] = time();
             $insertArray['company'] = $address['company'];
             $insertArray['name'] = $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name'];
             $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
             $insertArray['first_name'] = $address['first_name'];
             $insertArray['middle_name'] = $address['middle_name'];
             $insertArray['last_name'] = $address['last_name'];
             $insertArray['email'] = $address['email'];
             if (!$address['street_name']) {
                 // fallback for old custom checkouts
                 $insertArray['building'] = $address['building'];
                 $insertArray['street_name'] = $address['address'];
                 $insertArray['address_number'] = $address['address_number'];
                 $insertArray['address_ext'] = $address['address_ext'];
                 $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                 $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
             } else {
                 $insertArray['building'] = $address['delivery_building'];
                 $insertArray['street_name'] = $address['street_name'];
                 $insertArray['address_number'] = $address['address_number'];
                 $insertArray['address_ext'] = $address['address_ext'];
                 $insertArray['address'] = $address['address'];
             }
             $insertArray['zip'] = $address['zip'];
             $insertArray['phone'] = $address['telephone'];
             $insertArray['mobile'] = $address['mobile'];
             $insertArray['city'] = $address['city'];
             $insertArray['country'] = $address['country'];
             $insertArray['gender'] = $address['gender'];
             $insertArray['birthday'] = strtotime($address['birthday']);
             if ($address['gender'] == 'm') {
                 $insertArray['title'] = 'Mr.';
             } else {
                 if ($address['gender'] == 'f') {
                     $insertArray['title'] = 'Mrs.';
                 }
             }
             $insertArray['region'] = $address['state'];
             $insertArray['pid'] = $this->conf['fe_customer_pid'];
             $insertArray['page_uid'] = $this->shop_pid;
             $insertArray['tstamp'] = time();
             $insertArray['tx_multishop_address_type'] = 'billing';
             $insertArray['tx_multishop_default'] = 1;
             $insertArray['tx_multishop_customer_id'] = $customer_id;
             $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
             $query = $GLOBALS['TYPO3_DB']->INSERTquery('tt_address', $insertArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
         }
         if (!mslib_fe::getFeUserTTaddressDetails($customer_id, 'delivery')) {
             // insert delivery into tt_address
             if (!$address['different_delivery_address']) {
                 $insertArray = array();
                 $insertArray['tstamp'] = time();
                 $insertArray['company'] = $address['company'];
                 $insertArray['name'] = $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name'];
                 $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
                 $insertArray['first_name'] = $address['first_name'];
                 $insertArray['middle_name'] = $address['middle_name'];
                 $insertArray['last_name'] = $address['last_name'];
                 $insertArray['email'] = $address['email'];
                 if (!$address['street_name']) {
                     // fallback for old custom checkouts
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['address'];
                     $insertArray['address_number'] = $address['address_number'];
                     $insertArray['address_ext'] = $address['address_ext'];
                     $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                     $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
                 } else {
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['street_name'];
                     $insertArray['address_number'] = $address['address_number'];
                     $insertArray['address_ext'] = $address['address_ext'];
                     $insertArray['address'] = $address['address'];
                 }
                 $insertArray['zip'] = $address['zip'];
                 $insertArray['phone'] = $address['telephone'];
                 $insertArray['mobile'] = $address['mobile'];
                 $insertArray['city'] = $address['city'];
                 $insertArray['country'] = $address['country'];
                 $insertArray['gender'] = $address['gender'];
                 $insertArray['birthday'] = strtotime($address['birthday']);
                 if ($address['gender'] == 'm') {
                     $insertArray['title'] = 'Mr.';
                 } else {
                     if ($address['gender'] == 'f') {
                         $insertArray['title'] = 'Mrs.';
                     }
                 }
                 $insertArray['region'] = $address['state'];
             } else {
                 $insertArray = array();
                 $insertArray['tx_multishop_customer_id'] = $customer_id;
                 $insertArray['tstamp'] = time();
                 $insertArray['company'] = $address['delivery_company'];
                 $insertArray['name'] = $address['delivery_first_name'] . ' ' . $address['delivery_middle_name'] . ' ' . $address['delivery_last_name'];
                 $insertArray['name'] = preg_replace('/\\s+/', ' ', $insertArray['name']);
                 $insertArray['first_name'] = $address['delivery_first_name'];
                 $insertArray['middle_name'] = $address['delivery_middle_name'];
                 $insertArray['last_name'] = $address['delivery_last_name'];
                 $insertArray['email'] = $address['delivery_email'];
                 if (!$address['delivery_street_name']) {
                     // fallback for old custom checkouts
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['delivery_address'];
                     $insertArray['address_number'] = $address['delivery_address_number'];
                     $insertArray['address_ext'] = $address['delivery_address_ext'];
                     $insertArray['address'] = $insertArray['street_name'] . ' ' . $insertArray['address_number'] . ($insertArray['address_ext'] ? '-' . $insertArray['address_ext'] : '');
                     $insertArray['address'] = preg_replace('/\\s+/', ' ', $insertArray['address']);
                 } else {
                     $insertArray['building'] = $address['building'];
                     $insertArray['street_name'] = $address['delivery_street_name'];
                     $insertArray['address_number'] = $address['delivery_address_number'];
                     $insertArray['address_ext'] = $address['delivery_address_ext'];
                     $insertArray['address'] = $address['delivery_address'];
                 }
                 $insertArray['zip'] = $address['delivery_zip'];
                 $insertArray['phone'] = $address['delivery_telephone'];
                 $insertArray['mobile'] = $address['delivery_mobile'];
                 $insertArray['city'] = $address['delivery_city'];
                 $insertArray['country'] = $address['delivery_country'];
                 $insertArray['gender'] = $address['delivery_gender'];
                 $insertArray['birthday'] = strtotime($address['delivery_birthday']);
                 if ($address['delivery_gender'] == 'm') {
                     $insertArray['title'] = 'Mr.';
                 } else {
                     if ($address['delivery_gender'] == 'f') {
                         $insertArray['title'] = 'Mrs.';
                     }
                 }
                 $insertArray['region'] = $address['delivery_state'];
             }
             $insertArray['pid'] = $this->conf['fe_customer_pid'];
             $insertArray['page_uid'] = $this->shop_pid;
             $insertArray['tstamp'] = time();
             $insertArray['tx_multishop_customer_id'] = $customer_id;
             $insertArray['tx_multishop_address_type'] = 'delivery';
             $insertArray['tx_multishop_default'] = 0;
             $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
             $query = $GLOBALS['TYPO3_DB']->INSERTquery('tt_address', $insertArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
         }
     }
     if ($customer_id) {
         // now add the order
         $insertArray = array();
         $insertArray['customer_id'] = $customer_id;
         $insertArray['page_uid'] = $this->shop_pid;
         if (isset($GLOBALS['TSFE']->fe_user->user['uid']) && !empty($GLOBALS['TSFE']->fe_user->user['uid'])) {
             $insertArray['cruser_id'] = $GLOBALS['TSFE']->fe_user->user['uid'];
         } else {
             $insertArray['cruser_id'] = '';
         }
         $insertArray['customer_comments'] = $this->post['customer_comments'];
         $insertArray['billing_company'] = $address['company'];
         $insertArray['billing_first_name'] = $address['first_name'];
         $insertArray['billing_middle_name'] = $address['middle_name'];
         $insertArray['billing_last_name'] = $address['last_name'];
         $insertArray['billing_name'] = preg_replace('/ +/', ' ', $address['first_name'] . ' ' . $address['middle_name'] . ' ' . $address['last_name']);
         $insertArray['billing_email'] = $address['email'];
         $insertArray['billing_gender'] = $address['gender'];
         $insertArray['billing_birthday'] = strtotime($address['birthday']);
         if (!$address['street_name']) {
             // fallback for old custom checkouts
             $insertArray['billing_building'] = $address['building'];
             $insertArray['billing_street_name'] = $address['address'];
             $insertArray['billing_address_number'] = $address['address_number'];
             $insertArray['billing_address_ext'] = $address['address_ext'];
             $insertArray['billing_address'] = $insertArray['billing_street_name'] . ' ' . $insertArray['billing_address_number'] . ($insertArray['billing_address_ext'] ? '-' . $insertArray['billing_address_ext'] : '');
             $insertArray['billing_address'] = preg_replace('/\\s+/', ' ', $insertArray['billing_address']);
         } else {
             $insertArray['billing_building'] = $address['building'];
             $insertArray['billing_street_name'] = $address['street_name'];
             $insertArray['billing_address_number'] = $address['address_number'];
             $insertArray['billing_address_ext'] = $address['address_ext'];
             $insertArray['billing_address'] = $address['address'];
         }
         /*
         			$insertArray['billing_street_name']			=	$address['street_name'];
         			$insertArray['billing_address_number']		=	$address['address_number'];
         			$insertArray['billing_address_ext']			=	$address['address_ext'];
         			$insertArray['billing_address']				=	$insertArray['billing_street_name'].' '.$insertArray['billing_address_number'].($insertArray['billing_address_ext']? '-'.$insertArray['billing_address_ext']:'');
         			$insertArray['billing_address'] 			=	preg_replace('/\s+/', ' ', $insertArray['billing_address']);
         */
         $insertArray['billing_room'] = '';
         $insertArray['billing_city'] = $address['city'];
         $insertArray['billing_zip'] = $address['zip'];
         $insertArray['billing_region'] = $address['state'];
         $insertArray['billing_country'] = $address['country'];
         $insertArray['billing_telephone'] = $address['telephone'];
         $insertArray['billing_mobile'] = $address['mobile'];
         $insertArray['billing_fax'] = '';
         if ($this->ms['MODULES']['CHECKOUT_DISPLAY_VAT_ID_INPUT'] && !empty($address['tx_multishop_vat_id'])) {
             $insertArray['billing_vat_id'] = $address['tx_multishop_vat_id'];
         }
         if ($this->ms['MODULES']['CHECKOUT_DISPLAY_COC_ID_INPUT'] && !empty($address['tx_multishop_coc_id'])) {
             $insertArray['billing_coc_id'] = $address['tx_multishop_coc_id'];
         }
         if (!$address['different_delivery_address']) {
             $insertArray['delivery_email'] = $insertArray['billing_email'];
             $insertArray['delivery_company'] = $insertArray['billing_company'];
             $insertArray['delivery_first_name'] = $insertArray['billing_first_name'];
             $insertArray['delivery_middle_name'] = $insertArray['billing_middle_name'];
             $insertArray['delivery_last_name'] = $insertArray['billing_last_name'];
             $insertArray['delivery_telephone'] = $insertArray['billing_telephone'];
             $insertArray['delivery_mobile'] = $insertArray['billing_mobile'];
             $insertArray['delivery_gender'] = $insertArray['billing_gender'];
             $insertArray['delivery_building'] = $insertArray['billing_building'];
             $insertArray['delivery_street_name'] = $insertArray['billing_street_name'];
             $insertArray['delivery_address_number'] = $insertArray['billing_address_number'];
             $insertArray['delivery_address_ext'] = $insertArray['billing_address_ext'];
             $insertArray['delivery_address'] = $insertArray['billing_address'];
             $insertArray['delivery_zip'] = $insertArray['billing_zip'];
             $insertArray['delivery_city'] = $insertArray['billing_city'];
             $insertArray['delivery_country'] = $insertArray['billing_country'];
             $insertArray['delivery_telephone'] = $insertArray['billing_telephone'];
             $insertArray['delivery_region'] = $insertArray['billing_region'];
             $insertArray['delivery_name'] = $insertArray['billing_name'];
             $insertArray['delivery_birthday'] = $insertArray['billing_birthday'];
         } else {
             $insertArray['delivery_company'] = $address['delivery_company'];
             $insertArray['delivery_first_name'] = $address['delivery_first_name'];
             $insertArray['delivery_middle_name'] = $address['delivery_middle_name'];
             $insertArray['delivery_last_name'] = $address['delivery_last_name'];
             $insertArray['delivery_name'] = preg_replace('/ +/', ' ', $address['delivery_first_name'] . ' ' . $address['delivery_middle_name'] . ' ' . $address['delivery_last_name']);
             $insertArray['delivery_email'] = $address['delivery_email'];
             $insertArray['delivery_gender'] = $address['delivery_gender'];
             if (!$address['street_name']) {
                 // fallback for old custom checkouts
                 $insertArray['delivery_building'] = $address['delivery_building'];
                 $insertArray['delivery_street_name'] = $address['delivery_address'];
                 $insertArray['delivery_address_number'] = $address['delivery_address_number'];
                 $insertArray['delivery_address_ext'] = $address['delivery_address_ext'];
                 $insertArray['delivery_address'] = $insertArray['delivery_street_name'] . ' ' . $insertArray['delivery_address_number'] . ($insertArray['delivery_address_ext'] ? '-' . $insertArray['delivery_address_ext'] : '');
                 $insertArray['delivery_address'] = preg_replace('/\\s+/', ' ', $insertArray['delivery_address']);
             } else {
                 $insertArray['delivery_building'] = $address['delivery_building'];
                 $insertArray['delivery_street_name'] = $address['delivery_street_name'];
                 $insertArray['delivery_address_number'] = $address['delivery_address_number'];
                 $insertArray['delivery_address_ext'] = $address['delivery_address_ext'];
                 $insertArray['delivery_address'] = $address['delivery_address'];
             }
             /*
             				$insertArray['delivery_street_name']		=	$address['delivery_street_name'];
             				$insertArray['delivery_address_number']		=	$address['delivery_address_number'];
             				$insertArray['delivery_address_ext']		=	$address['delivery_address_ext'];
             				$insertArray['delivery_address']			=	$insertArray['delivery_street_name'].' '.$insertArray['delivery_address_number'].($insertArray['delivery_address_ext']? '-'.$insertArray['delivery_address_ext']:'');
             				$insertArray['delivery_address'] 			=	preg_replace('/\s+/', ' ', $insertArray['delivery_address']);
             */
             $insertArray['delivery_city'] = $address['delivery_city'];
             $insertArray['delivery_zip'] = $address['delivery_zip'];
             $insertArray['delivery_room'] = '';
             $insertArray['delivery_region'] = $address['delivery_state'];
             $insertArray['delivery_country'] = $address['delivery_country'];
             $insertArray['delivery_telephone'] = $address['delivery_telephone'];
             $insertArray['delivery_mobile'] = $address['delivery_mobile'];
             $insertArray['delivery_fax'] = '';
             $insertArray['delivery_vat_id'] = '';
             $insertArray['delivery_birthday'] = strtotime($address['delivery_birthday']);
         }
         $insertArray['bill'] = 1;
         $insertArray['crdate'] = time();
         $insertArray['shipping_method'] = $address['shipping_method'];
         $insertArray['shipping_method_label'] = $address['shipping_method_label'];
         $insertArray['payment_method'] = $address['payment_method'];
         $insertArray['payment_method_label'] = $address['payment_method_label'];
         $insertArray['shipping_method_costs'] = $address['shipping_method_costs'];
         $insertArray['payment_method_costs'] = $address['payment_method_costs'];
         $insertArray['hash'] = md5(uniqid('', true));
         $insertArray['store_currency'] = $this->ms['MODULES']['CURRENCY_ARRAY']['cu_iso_3'];
         if (isset($this->ms['MODULES']['CUSTOMER_CURRENCY_ARRAY']['cu_iso_3']) && !empty($this->ms['MODULES']['CUSTOMER_CURRENCY_ARRAY']['cu_iso_3'])) {
             $insertArray['customer_currency'] = $this->ms['MODULES']['CUSTOMER_CURRENCY_ARRAY']['cu_iso_3'];
         } else {
             $insertArray['customer_currency'] = $this->ms['MODULES']['CURRENCY_ARRAY']['cu_iso_3'];
         }
         if (isset($this->cookie['currency_rate']) && !empty($this->cookie['currency_rate'])) {
             $insertArray['currency_rate'] = $this->cookie['currency_rate'];
         } else {
             $insertArray['currency_rate'] = 1;
         }
         $insertArray['language_id'] = $this->sys_language_uid;
         // get default orders status
         $status = mslib_fe::getDefaultOrdersStatus($this->sys_language_uid);
         $default_order_status_id = 0;
         if (is_array($status) && isset($status['id']) && $status['id'] > 0) {
             $default_order_status_id = $status['id'];
         }
         // set the order status based on payment method settings
         $payment_method = mslib_fe::loadPaymentMethod($address['payment_method']);
         $payment_method_vars = unserialize($payment_method['vars']);
         $payment_method_vars['default_order_status'] = (int) $payment_method_vars['default_order_status'];
         if (isset($payment_method_vars['default_order_status']) && is_numeric($payment_method_vars['default_order_status']) && $payment_method_vars['default_order_status'] > 0) {
             $default_order_status_id = $payment_method_vars['default_order_status'];
         }
         if ($default_order_status_id > 0) {
             $insertArray['status'] = $default_order_status_id;
         } else {
             $insertArray['status'] = '';
         }
         if (isset($this->cookie['HTTP_REFERER']) && !empty($this->cookie['HTTP_REFERER'])) {
             $insertArray['http_referer'] = $this->cookie['HTTP_REFERER'];
         } else {
             $insertArray['http_referer'] = '';
         }
         $insertArray['ip_address'] = $this->server['REMOTE_ADDR'];
         $insertArray['user_agent'] = $this->server['HTTP_USER_AGENT'];
         if (isset($address['expected_delivery_date'])) {
             $insertArray['expected_delivery_date'] = $address['expected_delivery_date'];
         }
         $user = mslib_fe::getUser($customer_id);
         $insertArray['payment_condition'] = '';
         if (is_numeric($user['tx_multishop_payment_condition']) && $user['tx_multishop_payment_condition'] > 0) {
             $insertArray['payment_condition'] = $user['tx_multishop_payment_condition'];
         }
         //$insertArray['orders_tax_data']			=	serialize($orders_tax);
         if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPreProc'])) {
             // hook
             $params = array('ms' => $this->ms, 'address' => &$address, 'insertArray' => &$insertArray);
             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPreProc'] as $funcRef) {
                 \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
             }
             // hook oef
         }
         $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
         $query = $GLOBALS['TYPO3_DB']->INSERTquery('tx_multishop_orders', $insertArray);
         $res = $GLOBALS['TYPO3_DB']->sql_query($query);
         // now add the order eof
         $orders_id = $GLOBALS['TYPO3_DB']->sql_insert_id();
         if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPostProc'])) {
             // hook
             $params = array('orders_id' => &$orders_id, 'insertArray' => &$insertArray, 'cart' => &$cart);
             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPostProc'] as $funcRef) {
                 \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
             }
             // hook oef
         }
         if (!$orders_id) {
             $subject = $this->FULL_HTTP_URL . ' - Convert cart to order failed';
             $body = 'Warning. Convert cart to order failed.<br/>Website: ' . $this->FULL_HTTP_URL . '<br/>Error: ' . $GLOBALS['TYPO3_DB']->sql_error() . '<br/>Query:<br/>' . $query;
             $mailuser = array();
             $mailuser['name'] = $this->ms['MODULES']['STORE_NAME'];
             $mailuser['email'] = $this->ms['MODULES']['STORE_EMAIL'];
             if ($this->ms['MODULES']['DEVELOPER_EMAIL']) {
                 $mailuser['email'] = $this->ms['MODULES']['DEVELOPER_EMAIL'];
             }
             if ($mailuser['email']) {
                 mslib_fe::mailUser($mailuser, $subject, $body, $this->ms['MODULES']['STORE_EMAIL'], $this->ms['MODULES']['STORE_NAME']);
             }
         } else {
             // now add the orders products
             if ($cart['user']['payment_method']) {
                 $this->ms['payment_method'] = $cart['user']['payment_method'];
             } elseif ($cart['user']['shipping_method']) {
                 $this->ms['shipping_method'] = $cart['user']['shipping_method'];
             }
             if (is_array($cart['products']) && count($cart['products'])) {
                 foreach ($cart['products'] as $shopping_cart_item => $value) {
                     if (is_numeric($value['products_id'])) {
                         if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
                             $value['tax_rate'] = 0;
                         }
                         $insertArray = array();
                         $insertArray['orders_id'] = $orders_id;
                         $insertArray['products_id'] = $value['products_id'];
                         $insertArray['categories_id'] = $value['categories_id'];
                         // get all cats
                         $cats = mslib_fe::Crumbar($value['categories_id']);
                         $cats = array_reverse($cats);
                         if (count($cats) > 0) {
                             $i = 0;
                             foreach ($cats as $cat) {
                                 $insertArray['categories_id_' . $i] = $cat['id'];
                                 $insertArray['categories_name_' . $i] = $cat['name'];
                                 $i++;
                             }
                         }
                         // get all cats eof
                         if (isset($value['manufacturers_id']) && !empty($value['manufacturers_id'])) {
                             $insertArray['manufacturers_id'] = $value['manufacturers_id'];
                         } else {
                             $insertArray['manufacturers_id'] = '';
                         }
                         if (isset($value['order_unit_id']) && !empty($value['order_unit_id'])) {
                             $insertArray['order_unit_id'] = $value['order_unit_id'];
                         } else {
                             $insertArray['order_unit_id'] = '';
                         }
                         if (isset($value['order_unit_name']) && !empty($value['order_unit_name'])) {
                             $insertArray['order_unit_name'] = $value['order_unit_name'];
                         } else {
                             $insertArray['order_unit_name'] = '';
                         }
                         if (isset($value['order_unit_code']) && !empty($value['order_unit_code'])) {
                             $insertArray['order_unit_code'] = $value['order_unit_code'];
                         } else {
                             $insertArray['order_unit_code'] = '';
                         }
                         $insertArray['qty'] = $value['qty'];
                         $insertArray['products_tax'] = $value['tax_rate'] * 100;
                         $insertArray['products_name'] = $value['products_name'];
                         $insertArray['products_model'] = $value['products_model'];
                         /*
                         $insertArray['products_description']=$value['products_shortdescription'];
                         if (is_array($value['attributes'])) {
                         	// loading the attributes
                         	//$insertArray['products_description'].="\n".strip_tags(mslib_fe::showAttributes($value['products_id'], '', $sessionData, 1));
                         	$insertArray['products_description'].="\n".mslib_fe::showAttributes($value['products_id'], '', $sessionData, 1);
                         	// loading the attributes eof
                         }
                         */
                         $insertArray['products_price'] = $value['products_price'];
                         $insertArray['final_price'] = $value['final_price'];
                         $insertArray['product_capital_price'] = $value['product_capital_price'];
                         $insertArray['type'] = 'P';
                         // P for Product, S for Subscription (returning-costs)
                         $insertArray['ean_code'] = $value['ean_code'];
                         $insertArray['sku_code'] = $value['sku_code'];
                         $insertArray['vendor_code'] = $value['vendor_code'];
                         $insertArray['products_tax_id'] = $value['tax_id'];
                         // micro download
                         if ($value['file_location'] || $value['file_remote_location']) {
                             $insertArray['file_label'] = $value['file_label'];
                             $insertArray['file_location'] = $value['file_location'];
                             $insertArray['file_remote_location'] = $value['file_remote_location'];
                             $insertArray['file_number_of_downloads'] = $value['file_number_of_downloads'];
                             $insertArray['file_download_code'] = md5(uniqid(rand()) . uniqid(rand()));
                         }
                         // micro download eof
                         /*
                          * always use total_tax and total_tax_rate, unless need different calc for country/region
                          * WARNING: country_* and region_* not always have value, depends on the tax ruleset
                          * -----------------------------------------------------------------------------------------
                          */
                         $product_tax['country_tax_rate'] = (string) $value['country_tax_rate'];
                         $product_tax['region_tax_rate'] = (string) $value['region_tax_rate'];
                         $product_tax['total_tax_rate'] = (string) $value['tax_rate'];
                         // -----------------------------------------------------------------------------------------
                         $product_tax['country_tax'] = (string) $value['country_tax'];
                         $product_tax['region_tax'] = (string) $value['region_tax'];
                         $product_tax['total_tax'] = (string) $value['tax'];
                         $product_tax['total_attributes_tax'] = (string) $value['total_attributes_tax'];
                         // -----------------------------------------------------------------------------------------
                         if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                             //$product_tax['total_tax']=mslib_fe::taxDecimalCrop($product_tax['total_tax'], 2, false);
                             //$product_tax['total_attributes_tax']=mslib_fe::taxDecimalCrop($product_tax['total_attributes_tax'], 2, false);
                             $product_tax['total_tax'] = round($product_tax['total_tax'], 2);
                             $product_tax['total_attributes_tax'] = round($product_tax['total_attributes_tax'], 2);
                         }
                         if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
                             $product_tax['country_tax_rate'] = 0;
                             $product_tax['region_tax_rate'] = 0;
                             $product_tax['total_tax_rate'] = 0;
                             $product_tax['country_tax'] = 0;
                             $product_tax['region_tax'] = 0;
                             $product_tax['total_tax'] = 0;
                             $product_tax['total_attributes_tax'] = 0;
                         }
                         // bugfixes bas
                         $sub_total_excluding_vat['final_price'] = $sub_total['final_price'] + $value['final_price'] * $value['qty'];
                         $sub_total['final_price'] = $sub_total['final_price'] + $value['final_price'] * $value['qty'];
                         if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                             $sub_total['total_tax'] = $sub_total['total_tax'] + round($product_tax['total_tax'] * $value['qty'], 2);
                             $sub_total['attributes_tax'] = $sub_total['attributes_tax'] + round($product_tax['total_attributes_tax'] * $value['qty'], 2);
                             $total_order_tax['total_tax'] = $total_order_tax['total_tax'] + round($product_tax['total_tax'] * $value['qty'], 2);
                             $total_order_tax['total_attributes_tax'] = $total_order_tax['total_attributes_tax'] + round($product_tax['total_attributes_tax'] * $value['qty'], 2);
                         } else {
                             $sub_total['total_tax'] = $sub_total['total_tax'] + $product_tax['total_tax'] * $value['qty'];
                             $sub_total['attributes_tax'] = $sub_total['attributes_tax'] + $product_tax['total_attributes_tax'] * $value['qty'];
                             $total_order_tax['total_tax'] = $total_order_tax['total_tax'] + $product_tax['total_tax'] * $value['qty'];
                             $total_order_tax['total_attributes_tax'] = $total_order_tax['total_attributes_tax'] + $product_tax['total_attributes_tax'] * $value['qty'];
                         }
                         $insertArray['products_tax_data'] = serialize($product_tax);
                         // separation of tax
                         $tax_separation[$value['tax_rate'] * 100]['products_total_tax'] += $product_tax['total_tax'] * $value['qty'] + $product_tax['total_attributes_tax'] * $value['qty'];
                         $tax_separation[$value['tax_rate'] * 100]['products_sub_total_excluding_vat'] += $value['final_price'] * $value['qty'];
                         $tax_separation[$value['tax_rate'] * 100]['products_sub_total'] += ($value['final_price'] + $product_tax['total_tax'] + $product_tax['total_attributes_tax']) * $value['qty'];
                         if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersProductPreProc'])) {
                             // hook
                             $params = array('ms' => $this->ms, 'value' => $value, 'insertArray' => &$insertArray);
                             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersProductPreProc'] as $funcRef) {
                                 \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                             }
                             // hook oef
                         }
                         // TYPO3 6.2 LTS NULL FIX
                         $insertArray = mslib_befe::rmNullValuedKeys($insertArray);
                         $query = $GLOBALS['TYPO3_DB']->INSERTquery('tx_multishop_orders_products', $insertArray);
                         $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                         $orders_products_id = $GLOBALS['TYPO3_DB']->sql_insert_id();
                         if (!$orders_products_id) {
                             error_log('ERROR:' . $GLOBALS['TYPO3_DB']->sql_error());
                         }
                         // update orders_products sort_order
                         $updateOrderProductsSortOrder = array();
                         $updateOrderProductsSortOrder['sort_order'] = $orders_products_id;
                         $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders_products', 'orders_products_id=\'' . $orders_products_id . '\'', $updateOrderProductsSortOrder);
                         $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                         if ($this->ms['MODULES']['SUBTRACT_STOCK']) {
                             $continue_update_stock = true;
                             // hook to manipulate the continuity of update stock
                             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_mslib_cart.php']['updateStockPreProc'])) {
                                 // hook
                                 $params = array('ms' => $this->ms, 'value' => $value, 'continue_update_stock' => &$continue_update_stock);
                                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_mslib_cart.php']['updateStockPreProc'] as $funcRef) {
                                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                                 }
                                 // hook oef
                             }
                             //
                             if ($continue_update_stock) {
                                 if ($this->ms['MODULES']['PRODUCT_ATTRIBUTES_STOCK']) {
                                     $sql_as_data = array();
                                     $attributes_count = count($value['attributes']);
                                     foreach ($value['attributes'] as $attribute_key => $attribute_values) {
                                         $sql_as_data[] = '(pas.options_id = ' . $attribute_values['options_id'] . ' and pas.options_values_id = ' . $attribute_values['options_values_id'] . ')';
                                     }
                                     $sql_as = "select pasg.group_id, pasg.attributes_stock from tx_multishop_products_attributes_stock_group pasg, tx_multishop_products_attributes_stock pas where pasg.products_id = " . $value['products_id'] . " and (" . implode(' or ', $sql_as_data) . ") and pasg.group_id = pas.group_id";
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($sql_as);
                                     $total_rows = $GLOBALS['TYPO3_DB']->sql_num_rows($res);
                                     $used_group = 0;
                                     if ($total_rows > 1) {
                                         $group_counter = array();
                                         while ($rs_as = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
                                             $group_counter[$rs_as['group_id']] += 1;
                                         }
                                         foreach ($group_counter as $ref_group_id => $group_ctr_result) {
                                             if ($group_ctr_result == $attributes_count) {
                                                 $used_group = $ref_group_id;
                                                 break;
                                             }
                                         }
                                     } else {
                                         $rs_as = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
                                         $used_group = $rs_as['group_id'];
                                     }
                                     if ($used_group > 0) {
                                         $str = "update tx_multishop_products_attributes_stock_group set attributes_stock=(attributes_stock-" . $value['qty'] . ") where group_id='" . $used_group . "'";
                                         $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     }
                                     $str = "update tx_multishop_products set products_quantity=(products_quantity-" . $value['qty'] . ") where products_id='" . $value['products_id'] . "'";
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     $str = "select products_quantity, alert_quantity_threshold from tx_multishop_products where products_id='" . $value['products_id'] . "'";
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
                                     if ($row['products_quantity'] <= $row['alert_quantity_threshold']) {
                                         $page = mslib_fe::getCMScontent('email_alert_quantity_threshold_letter', $GLOBALS['TSFE']->sys_language_uid);
                                         if ($page[0]['content']) {
                                             // loading the email confirmation letter eof
                                             // replacing the variables with dynamic values
                                             $array1 = array();
                                             $array2 = array();
                                             $array1[] = '###ORDERED_QTY###';
                                             $array2[] = $value['qty'];
                                             $array1[] = '###CURRENT_PRODUCT_QUANTITY###';
                                             $array2[] = $row['products_id'];
                                             $array1[] = '###PRODUCT_ID###';
                                             $array2[] = $row['products_quantity'];
                                             $array1[] = '###PRODUCT_NAME###';
                                             $array2[] = $value['products_name'];
                                             $link_edit_prod = $this->FULL_HTTP_URL . mslib_fe::typolink($this->shop_pid . ',2003', 'tx_multishop_pi1[page_section]=edit_product&pid=' . $value['products_id'] . '&cid=' . $value['categories_id'] . '&action=edit_product');
                                             $array1[] = '###DIRECT_EDIT_PRODUCT_LINK###';
                                             $array2[] = '<a href="' . $link_edit_prod . '" target="_blank">' . htmlspecialchars($this->pi_getLL('admin_edit_product')) . '</a>';
                                             // now mail a copy to the merchant
                                             $merchant = array();
                                             $merchant['name'] = $this->ms['MODULES']['STORE_NAME'];
                                             $merchant['email'] = $this->ms['MODULES']['STORE_EMAIL'];
                                             $mailTo = array();
                                             $mailTo[] = $merchant;
                                             //hook to let other plugins further manipulate the replacers
                                             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_cart.php']['mailAlertQuantityThresholdPostProc'])) {
                                                 $params = array('array1' => &$array1, 'array2' => &$array2, 'page' => &$page, 'mailTo' => &$mailTo);
                                                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_cart.php']['mailAlertQuantityThresholdPostProc'] as $funcRef) {
                                                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                                                 }
                                             }
                                             //end of hook to let other plugins further manipulate the replacers
                                             if ($page[0]['content']) {
                                                 $page[0]['content'] = str_replace($array1, $array2, $page[0]['content']);
                                             }
                                             if ($page[0]['name']) {
                                                 $page[0]['name'] = str_replace($array1, $array2, $page[0]['name']);
                                             }
                                             foreach ($mailTo as $mailuser) {
                                                 mslib_fe::mailUser($mailuser, $page[0]['name'], $page[0]['content'], $this->ms['MODULES']['STORE_EMAIL'], $this->ms['MODULES']['STORE_NAME']);
                                             }
                                         }
                                     }
                                     if ($row['products_quantity'] < 1) {
                                         // stock is negative or zero. lets disable the product
                                         $str = "update tx_multishop_products set products_status=0 where products_id='" . $value['products_id'] . "'";
                                         $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     }
                                 } else {
                                     // now decrease the stocklevel
                                     $str = "update tx_multishop_products set products_quantity=(products_quantity-" . $value['qty'] . ") where products_id='" . $value['products_id'] . "'";
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     $str = "select products_quantity, alert_quantity_threshold from tx_multishop_products where products_id='" . $value['products_id'] . "'";
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                                     $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
                                     if ($row['products_quantity'] <= $row['alert_quantity_threshold']) {
                                         $page = mslib_fe::getCMScontent('email_alert_quantity_threshold_letter', $GLOBALS['TSFE']->sys_language_uid);
                                         if ($page[0]['content']) {
                                             // loading the email confirmation letter eof
                                             // replacing the variables with dynamic values
                                             $array1 = array();
                                             $array2 = array();
                                             $array1[] = '###ORDERED_QTY###';
                                             $array2[] = $value['qty'];
                                             $array1[] = '###CURRENT_PRODUCT_QUANTITY###';
                                             $array2[] = $row['products_quantity'];
                                             $array1[] = '###PRODUCT_NAME###';
                                             $array2[] = $value['products_name'];
                                             $link_edit_prod = $this->FULL_HTTP_URL . mslib_fe::typolink($this->shop_pid . ',2003', 'tx_multishop_pi1[page_section]=edit_product&pid=' . $value['products_id'] . '&cid=' . $value['categories_id'] . '&action=edit_product');
                                             $array1[] = '###DIRECT_EDIT_PRODUCT_LINK###';
                                             $array2[] = '<a href="' . $link_edit_prod . '" target="_blank">edit product stock</a>';
                                             // now mail a copy to the merchant
                                             $merchant = array();
                                             $merchant['name'] = $this->ms['MODULES']['STORE_NAME'];
                                             $merchant['email'] = $this->ms['MODULES']['STORE_EMAIL'];
                                             $mailTo = array();
                                             $mailTo[] = $merchant;
                                             //hook to let other plugins further manipulate the replacers
                                             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_cart.php']['mailAlertQuantityThresholdPostProc'])) {
                                                 $params = array('array1' => &$array1, 'array2' => &$array2, 'page' => &$page, 'mailTo' => &$mailTo);
                                                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_cart.php']['mailAlertQuantityThresholdPostProc'] as $funcRef) {
                                                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                                                 }
                                             }
                                             //end of hook to let other plugins further manipulate the replacers
                                             if ($page[0]['content']) {
                                                 $page[0]['content'] = str_replace($array1, $array2, $page[0]['content']);
                                             }
                                             if ($page[0]['name']) {
                                                 $page[0]['name'] = str_replace($array1, $array2, $page[0]['name']);
                                             }
                                             foreach ($mailTo as $mailuser) {
                                                 mslib_fe::mailUser($mailuser, $page[0]['name'], $page[0]['content'], $this->ms['MODULES']['STORE_EMAIL'], $this->ms['MODULES']['STORE_NAME']);
                                             }
                                         }
                                     }
                                     if ($row['products_quantity'] < 1) {
                                         if ($this->ms['MODULES']['DISABLE_PRODUCT_WHEN_NEGATIVE_STOCK']) {
                                             if (!$this->ms['MODULES']['ALLOW_ORDER_OUT_OF_STOCK_PRODUCT']) {
                                                 // stock is negative or zero. lets turn off the product
                                                 mslib_befe::disableProduct($value['products_id']);
                                             }
                                         }
                                     }
                                     // now decrease the stocklevel eof
                                 }
                             }
                         }
                         if ($orders_products_id and is_array($value['attributes'])) {
                             foreach ($value['attributes'] as $attribute_key => $attribute_values) {
                                 $str = "SELECT products_options_name,listtype from tx_multishop_products_options o where o.products_options_id='" . $attribute_key . "' ";
                                 $qry = $GLOBALS['TYPO3_DB']->sql_query($str);
                                 $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($qry);
                                 //								print_r($row['listtype']);
                                 switch ($row['listtype']) {
                                     case 'checkbox':
                                         $items = $attribute_values;
                                         break;
                                     default:
                                         $items = array($attribute_values);
                                         break;
                                 }
                                 foreach ($items as $item) {
                                     $attributes_tax['country_tax'] = (string) $item['country_tax'];
                                     $attributes_tax['region_tax'] = (string) $item['region_tax'];
                                     $attributes_tax['tax'] = (string) $item['tax'];
                                     if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
                                         $attributes_tax['country_tax'] = 0;
                                         $attributes_tax['region_tax'] = 0;
                                         $attributes_tax['tax'] = 0;
                                     }
                                     $insertAttributes = array();
                                     $insertAttributes['orders_id'] = $orders_id;
                                     $insertAttributes['orders_products_id'] = $orders_products_id;
                                     $insertAttributes['products_options'] = $item['products_options_name'];
                                     $insertAttributes['products_options_values'] = $item['products_options_values_name'];
                                     $insertAttributes['options_values_price'] = $item['options_values_price'];
                                     $insertAttributes['price_prefix'] = $item['price_prefix'];
                                     $insertAttributes['products_options_id'] = $item['options_id'];
                                     $insertAttributes['products_options_values_id'] = $item['options_values_id'];
                                     $sub_total_excluding_vat['attributes_price'] += $item['price_prefix'] . $item['options_values_price'] * $value['qty'];
                                     $sub_total['attributes_price'] += $item['price_prefix'] . $item['options_values_price'] * $value['qty'];
                                     $insertAttributes['attributes_tax_data'] = serialize($attributes_tax);
                                     $insertAttributes = mslib_befe::rmNullValuedKeys($insertAttributes);
                                     $query = $GLOBALS['TYPO3_DB']->INSERTquery('tx_multishop_orders_products_attributes', $insertAttributes);
                                     $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                                 }
                             }
                         }
                         if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersProductsPostProc'])) {
                             // hook
                             $params = array('ms' => $this->ms, 'orders_products_id' => $orders_products_id, 'insertArray' => $insertArray, 'insertAttributes' => $insertAttributes, 'cart' => $cart, 'cart_value' => $value);
                             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersProductsPostProc'] as $funcRef) {
                                 \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                             }
                             // hook eof
                         }
                     }
                 }
             }
             $updateArray = array();
             $orders_tax['sub_total_excluding_vat'] = (string) array_sum($sub_total_excluding_vat);
             $orders_tax['sub_total'] = (string) array_sum($sub_total);
             if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                 $orders_tax['total_orders_tax'] = (string) round(array_sum($total_order_tax), 2);
             } else {
                 $orders_tax['total_orders_tax'] = (string) array_sum($total_order_tax);
             }
             $orders_tax['total_orders_tax_including_discount'] = $orders_tax['total_orders_tax'];
             $grand_total['sub_total'] = array_sum($sub_total);
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersTotalProc'])) {
                 // hook
                 $params = array('sub_total_excluding_vat' => &$sub_total_excluding_vat, 'sub_total' => &$sub_total, 'total_order_tax' => &$total_order_tax, 'orders_tax' => &$orders_tax, 'grand_total' => &$grand_total, 'cart' => $cart);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrdersTotalProc'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
                 // hook eof
             }
             if ($cart['discount_type']) {
                 switch ($cart['discount_type']) {
                     case 'percentage':
                         if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                             $discount_amount = $orders_tax['sub_total_excluding_vat'] / 100 * $cart['discount'];
                         } else {
                             $discount_amount = $orders_tax['sub_total'] / 100 * $cart['discount'];
                         }
                         $discount_percentage = $cart['discount'];
                         break;
                     case 'price':
                         $discount_amount = $cart['discount'];
                         if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                             $discount_percentage = $discount_amount / $orders_tax['sub_total_excluding_vat'] * 100;
                         } else {
                             $discount_percentage = $discount_amount / $orders_tax['sub_total'] * 100;
                         }
                         break;
                 }
                 if ($discount_amount) {
                     if (!$this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT'] || $this->ms['MODULES']['FORCE_CHECKOUT_SHOW_PRICES_INCLUDING_VAT']) {
                         $grand_total['sub_total_excluding_vat'] = $grand_total['sub_total_excluding_vat'] - $discount_amount;
                         if ($this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT']) {
                             $orders_tax['total_orders_tax_including_discount'] = round((1 - $discount_amount / $orders_tax['sub_total']) * $orders_tax['total_orders_tax_including_discount'], 2);
                         } else {
                             $orders_tax['total_orders_tax_including_discount'] = $orders_tax['total_orders_tax_including_discount'] / 100 * (100 - $discount_percentage);
                         }
                     } else {
                         $grand_total['sub_total'] = $grand_total['sub_total'] - $discount_amount;
                         if ($this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT']) {
                             $orders_tax['total_orders_tax_including_discount'] = round((1 - $discount_amount / $orders_tax['sub_total']) * $orders_tax['total_orders_tax_including_discount'], 2);
                         } else {
                             $orders_tax['total_orders_tax_including_discount'] = $orders_tax['total_orders_tax_including_discount'] / 100 * (100 - $discount_percentage);
                         }
                     }
                 }
                 $updateArray['discount'] = $discount_amount;
             }
             $orders_tax['total_orders_tax'] += $orders_tax['shipping_tax'];
             $orders_tax['total_orders_tax'] += $orders_tax['payment_tax'];
             $orders_tax['total_orders_tax_including_discount'] += $orders_tax['shipping_tax'];
             $orders_tax['total_orders_tax_including_discount'] += $orders_tax['payment_tax'];
             $orders_tax['tax_separation'] = $tax_separation;
             if ($this->ms['MODULES']['DISABLE_VAT_RATE']) {
                 $orders_tax['total_orders_tax'] = 0;
             }
             $orders_tax['grand_total'] = (string) array_sum($grand_total);
             $updateArray['orders_tax_data'] = serialize($orders_tax);
             $updateArray['grand_total'] = $orders_tax['grand_total'];
             if (!empty($cart['coupon_code'])) {
                 $updateArray['coupon_code'] = $cart['coupon_code'];
                 $updateArray['coupon_discount_type'] = $cart['discount_type'];
                 $updateArray['coupon_discount_value'] = $cart['discount'];
             }
             $updateArray['orders_last_modified'] = time();
             $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders', 'orders_id=\'' . $orders_id . '\'', $updateArray);
             $res = $GLOBALS['TYPO3_DB']->sql_query($query);
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderDiscountPreProc'])) {
                 // hook
                 $params = array('ms' => $this->ms, 'orders_id' => $orders_id, 'cart' => &$cart);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderDiscountPreProc'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
                 // hook oef
             }
             if ($cart['discount']) {
                 if ($cart['discount']) {
                     if ($cart['coupon_code']) {
                         $str = "update tx_multishop_coupons set times_used=(times_used+1) where code='" . addslashes($cart['coupon_code']) . "'";
                         $res = $GLOBALS['TYPO3_DB']->sql_query($str);
                         $cart['coupon_code'] = '';
                     }
                     $cart['discount'] = '';
                     $cart['discount_type'] = '';
                 }
             }
             mslib_befe::storeCustomerCartContent($cart, $customer_id, 1);
             // debug
             /*
             $order=mslib_fe::getOrder($orders_id);
             $ORDER_DETAILS=mslib_fe::printOrderDetailsTable($order,'email');
             echo $ORDER_DETAILS;
             die();
             */
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPostHook'])) {
                 // hook
                 $params = array('cart' => &$cart, 'orders_id' => &$orders_id);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderPostHook'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
                 // hook oef
             }
             $cart['products'] = array();
             //unset($cart['user']);
             unset($cart['discount_type']);
             unset($cart['discount_amount']);
             //$GLOBALS['TSFE']->fe_user->setKey('ses', $this->cart_page_uid, $cart);
             //$GLOBALS['TSFE']->storeSessionData();
             tx_mslib_cart::storeCart($cart);
             // unset the cart with original key
             $plain_cart_key = 'tx_multishop_cart';
             if ($this->ms['MODULES']['CART_PAGE_UID']) {
                 $plain_cart_key .= '_' . $this->ms['MODULES']['CART_PAGE_UID'];
             }
             $cart2 = $GLOBALS['TSFE']->fe_user->getKey('ses', $plain_cart_key);
             $cart2['products'] = array();
             //unset($cart2['user']);
             unset($cart2['discount_type']);
             unset($cart2['discount_amount']);
             //TODO: plain cart key?
             //$GLOBALS['TSFE']->fe_user->setKey('ses', $plain_cart_key, $cart2);
             //$GLOBALS['TSFE']->storeSessionData();
             tx_mslib_cart::storeCart($cart2);
             // custom error script for checkout
             if ($this->ms['MODULES']['ORDERS_CUSTOM_EXPORT_SCRIPT']) {
                 if (strstr($this->ms['MODULES']['ORDERS_CUSTOM_EXPORT_SCRIPT'], "..")) {
                     die('error in ORDERS_CUSTOM_EXPORT_SCRIPT value');
                 } else {
                     require $this->DOCUMENT_ROOT . $this->ms['MODULES']['ORDERS_CUSTOM_EXPORT_SCRIPT'] . '.php';
                 }
             }
             require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('multishop') . 'pi1/classes/class.tx_mslib_order.php';
             $mslib_order = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('tx_mslib_order');
             $mslib_order->init($this);
             $mslib_order->repairOrder($orders_id);
             // if grand total is zero we have to activate directly
             $order = mslib_fe::getOrder($orders_id);
             if ($order['orders_id'] and $order['grand_total'] < 0.001) {
                 mslib_fe::updateOrderStatusToPaid($order['orders_id']);
             }
             if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderLastPostHook'])) {
                 // hook
                 $params = array('orders_id' => &$orders_id);
                 foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/class.tx_multishop_pi1.php']['insertOrderLastPostHook'] as $funcRef) {
                     \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
                 }
                 // hook oef
             }
             return $orders_id;
         }
     }
 }
Beispiel #6
0
 public function createOrderInvoice($orders_id, $force = 0)
 {
     if (!is_numeric($orders_id)) {
         return false;
     }
     if (is_numeric($orders_id)) {
         $order = mslib_fe::getOrder($orders_id);
         if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_fe.php']['forceCreateOrderInvoice'])) {
             $params = array('force' => &$force, 'order' => $order);
             foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/pi1/classes/class.tx_mslib_fe.php']['forceCreateOrderInvoice'] as $funcRef) {
                 \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
             }
         }
         if (!$force && $order['total_amount'] == 0) {
             // it does not make sense to create an invoice without an amount
             return false;
         }
         if ($order['orders_id'] and $order['bill'] or $order['orders_id'] and $force) {
             $invoice_id = mslib_fe::generateInvoiceId();
             if ($invoice_id) {
                 $hash = md5(uniqid('', true));
                 $insertArray = array();
                 $insertArray['invoice_id'] = $invoice_id;
                 $insertArray['customer_id'] = $order['customer_id'];
                 $insertArray['paid'] = $order['paid'];
                 $insertArray['orders_id'] = $orders_id;
                 $insertArray['crdate'] = time();
                 $insertArray['status'] = 1;
                 $insertArray['page_uid'] = $this->shop_pid;
                 $insertArray['hash'] = $hash;
                 $insertArray['invoice_grand_total'] = $order['grand_total'];
                 $insertArray['invoice_grand_total_excluding_vat'] = $order['grand_total_excluding_vat'];
                 $insertArray['discount'] = $order['discount'];
                 $insertArray['payment_condition'] = $order['payment_condition'];
                 if ($order['billing_company']) {
                     $name = $order['billing_company'];
                 } else {
                     $name = $order['billing_name'];
                 }
                 $insertArray['ordered_by'] = $name;
                 $insertArray['debit_invoice'] = '0';
                 if ($order['debit_order']) {
                     $insertArray['debit_invoice'] = '1';
                 }
                 $query = $GLOBALS['TYPO3_DB']->INSERTquery('tx_multishop_invoices', $insertArray);
                 $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                 if ($res) {
                     // update order to billed and lock the order so nobody can adjust it
                     if ($this->ms['MODULES']['LOCK_ORDER_AFTER_CREATING_INVOICE']) {
                         $lock_order = 1;
                     } else {
                         $lock_order = 0;
                     }
                     $updateArray = array('bill' => 0, 'is_locked' => $lock_order);
                     $updateArray['orders_last_modified'] = time();
                     $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders', 'orders_id=' . $order['orders_id'], $updateArray);
                     $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                     $array = array();
                     $array['hash'] = $hash;
                     $array['invoice_id'] = $invoice_id;
                     return $array;
                 } else {
                     // Fail
                     $array = array();
                     $array['erno'] = array();
                     $array['erno'][] = $GLOBALS['TYPO3_DB']->sql_error();
                     return $array;
                 }
             }
         }
     }
 }
Beispiel #7
0
                         }
                     } elseif ($this->post['tx_multishop_pi1']['action'] == 'update_selected_orders_to_not_paid') {
                         $updateArray = array('paid' => 0);
                         $updateArray['orders_last_modified'] = time();
                         $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders', 'orders_id=' . $orders_id, $updateArray);
                         $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                     }
                 }
             }
         }
     }
     break;
 case 'mail_selected_orders_for_payment_reminder':
     if (is_array($this->post['selected_orders']) and count($this->post['selected_orders'])) {
         foreach ($this->post['selected_orders'] as $orders_id) {
             $tmpArray = mslib_fe::getOrder($orders_id);
             //=mslib_befe::getRecord($orders_id, 'tx_multishop_orders', 'orders_id');
             if ($tmpArray['paid'] == 0) {
                 // replacing the variables with dynamic values
                 $billing_address = '';
                 $delivery_address = '';
                 $full_customer_name = $tmpArray['billing_first_name'];
                 if ($tmpArray['billing_middle_name']) {
                     $full_customer_name .= ' ' . $tmpArray['billing_middle_name'];
                 }
                 if ($tmpArray['billing_last_name']) {
                     $full_customer_name .= ' ' . $tmpArray['billing_last_name'];
                 }
                 $delivery_full_customer_name = $tmpArray['delivery_first_name'];
                 if ($tmpArray['delivery_middle_name']) {
                     $delivery_full_customer_name .= ' ' . $tmpArray['delivery_middle_name'];
Beispiel #8
0
     $array1 = array();
     $array2 = array();
     $array1[] = '###PAYMENT_FALLBACK_LINK###';
     $array2[] = '';
     $array1[] = '###PAYMENT_PAGE_LINK###';
     $array2[] = '';
     $content = str_replace($array1, $array2, $content);
     // custom hook that can be controlled by third-party plugin eof
     break;
     // psp thank you or error pages eof
 // psp thank you or error pages eof
 case 'payment_reminder_checkout':
     if ($this->get['tx_multishop_pi1']['hash']) {
         $tmpArray = mslib_befe::getRecord($this->get['tx_multishop_pi1']['hash'], 'tx_multishop_orders', 'hash');
         if ($tmpArray['orders_id']) {
             $order = mslib_fe::getOrder($tmpArray['orders_id']);
             // replacing the variables with dynamic values
             $billing_address = '';
             $delivery_address = '';
             $full_customer_name = $order['billing_first_name'];
             if ($order['billing_middle_name']) {
                 $full_customer_name .= ' ' . $order['billing_middle_name'];
             }
             if ($order['billing_last_name']) {
                 $full_customer_name .= ' ' . $order['billing_last_name'];
             }
             $delivery_full_customer_name = $order['delivery_first_name'];
             if ($order['delivery_middle_name']) {
                 $delivery_full_customer_name .= ' ' . $order['delivery_middle_name'];
             }
             if ($order['delivery_last_name']) {
 function getOrderWeight($orders_id)
 {
     if (is_numeric($orders_id)) {
         $weight = 0;
         $order = mslib_fe::getOrder($orders_id);
         foreach ($order['products'] as $product) {
             if (is_numeric($product['products_id'])) {
                 $product_db = mslib_fe::getProduct($product['products_id']);
                 $weight = $weight + $product['qty'] * $product_db['products_weight'];
             }
         }
         return $weight;
     }
 }
 $product = mslib_fe::getProduct($this->get['pid'], '', '', 1, 1);
 $quantity = $this->get['qty'];
 if ($product['staffel_price']) {
     $staffel_price['price'] = mslib_fe::calculateStaffelPrice($product['staffel_price'], $quantity) / $quantity;
 } else {
     $staffel_price['price'] = $product['final_price'];
 }
 //if ($this->ms['MODULES']['SHOW_PRICES_INCLUDING_VAT']) {
 $staffel_price['price_include_vat'] = $staffel_price['price'] + $staffel_price['price'] * $product['tax_rate'];
 //}
 $staffel_price['display_price'] = number_format($staffel_price['price'], 2, '.', '');
 $staffel_price['display_price_include_vat'] = number_format($staffel_price['price_include_vat'], 2, '.', '');
 //
 $staffel_price['use_tax_id'] = true;
 if (isset($this->get['oid']) && is_numeric($this->get['oid']) && $this->get['oid'] > 0) {
     $orders = mslib_fe::getOrder($this->get['oid']);
     $iso_customer = mslib_fe::getCountryByName($orders['billing_country']);
     $iso_customer['country'] = $iso_customer['cn_short_en'];
     $vat_id = $orders['billing_vat_id'];
     // hook for adding new fieldsets into edit_order
     if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/scripts/ajax_pages/ajax_products_staffelprice_search.php']['ajaxProductsStaffelPriceSearchExistingOrder'])) {
         $params = array('vat_id' => &$vat_id, 'orders' => &$orders);
         foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/multishop/scripts/ajax_pages/ajax_products_staffelprice_search.php']['ajaxProductsStaffelPriceSearchExistingOrder'] as $funcRef) {
             \TYPO3\CMS\Core\Utility\GeneralUtility::callUserFunction($funcRef, $params, $this);
         }
         // hook oef
     }
     $this->ms['MODULES']['DISABLE_VAT_RATE'] = 0;
     if (strtolower($iso_customer['country']) != strtolower($this->tta_shop_info['country'])) {
         if ($this->ms['MODULES']['DISABLE_VAT_FOR_FOREIGN_CUSTOMERS_WITH_COMPANY_VAT_ID'] and $vat_id) {
             $this->ms['MODULES']['DISABLE_VAT_RATE'] = 1;
Beispiel #11
0
                    if ($this->ms['MODULES']['ENABLE_REORDER_FEATURE_IN_ACCOUNT_ORDER_HISTORY']) {
                        $content .= '
						<div id="navigation">
							<a href="' . mslib_fe::typolink('', 'tx_multishop_pi1[re-order]=1&tx_multishop_pi1[orders_id]=' . $order['orders_id']) . '" class="msFrontButton continueState arrowRight arrowPosLeft"><input type="submit" value="' . htmlspecialchars($this->pi_getLL('re-order')) . '" /></a>
						</div>
						';
                    }
                    $content .= '
					</div>					
					';
                }
            }
            break;
        default:
            if ($this->ms['MODULES']['ENABLE_REORDER_FEATURE_IN_ACCOUNT_ORDER_HISTORY'] && is_numeric($this->get['tx_multishop_pi1']['orders_id']) and $this->get['tx_multishop_pi1']['re-order']) {
                $order = mslib_fe::getOrder($this->get['tx_multishop_pi1']['orders_id']);
                if ($order['customer_id'] == $GLOBALS['TSFE']->fe_user->user['uid']) {
                    foreach ($order['products'] as $product) {
                        $this->post = array();
                        $this->post['products_id'] = $product['products_id'];
                        $this->post['quantity'] = number_format($product['qty']);
                        if (is_array($product['attributes']) and count($product['attributes'])) {
                            foreach ($product['attributes'] as $attribute) {
                                if ($attribute['products_options_values_id']) {
                                    $value = $attribute['products_options_values_id'];
                                } else {
                                    $value = $attribute['products_options_values'];
                                }
                                $this->post['attributes'][$attribute['products_options_id']][] = $value;
                            }
                        }
         }
     }
     echo json_encode($return_data);
     exit;
     break;
 case 'update_invoice_paid_status_save_popup_value':
     $return_data = array();
     $order_id = $this->post['tx_multishop_pi1']['order_id'];
     $invoice_id = $this->post['tx_multishop_pi1']['invoice_id'];
     $invoice_nr = $this->post['tx_multishop_pi1']['invoice_nr'];
     $return_data['status'] = 'NOTOK';
     $return_data['status'] = 'NOTOK';
     if (is_numeric($invoice_id)) {
         $invoice = mslib_fe::getInvoice($invoice_id, 'id');
         if ($invoice['id']) {
             $order = mslib_fe::getOrder($invoice['orders_id']);
             if ($order['orders_id']) {
                 $date_paid = strtotime($this->post['tx_multishop_pi1']['date_paid']);
                 $payment_id = $this->post['tx_multishop_pi1']['payment_id'];
                 //
                 if (is_numeric($payment_id) && $payment_id > 0) {
                     $payment_method = mslib_fe::getPaymentMethod($payment_id);
                     $updateArray = array();
                     $updateArray['payment_method_costs'] = $payment_method['handling_costs'];
                     $updateArray['payment_method'] = $payment_method['code'];
                     $updateArray['payment_method_label'] = $payment_method['name'];
                     $updateArray['orders_last_modified'] = time();
                     $updateArray['orders_paid_timestamp'] = $date_paid;
                     $query = $GLOBALS['TYPO3_DB']->UPDATEquery('tx_multishop_orders', 'orders_id=\'' . $order_id . '\'', $updateArray);
                     $res = $GLOBALS['TYPO3_DB']->sql_query($query);
                     //
Beispiel #13
0
$mslib_cart = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('tx_mslib_cart');
$mslib_cart->init($this);
$cart = $mslib_cart->getCart();
if (!count($cart['products'])) {
    $content .= '<div class="noitems_message">' . $this->pi_getLL('there_are_no_products_in_your_cart') . '</div>';
} else {
    if ($this->post) {
        require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('multishop') . 'pi1/classes/class.tx_mslib_order.php';
        $mslib_order = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('tx_mslib_order');
        $mslib_order->init($this);
        $orders_id = $mslib_cart->convertCartToOrder($GLOBALS['TSFE']->fe_user->getKey('ses', $this->cart_page_uid));
        if ($orders_id) {
            $show_thank_you = 1;
            if ($show_thank_you) {
                // reload the order so all vars are the same
                $order = mslib_fe::getOrder($orders_id);
                $content .= CheckoutStepping($stepCodes, current($stepCodes), $this);
                // good, proceed to the thank you page
                $send_mail = 1;
                if ($send_mail) {
                    // replacing the variables with dynamic values eof
                    // $user=array();
                    // $user['name']	= $full_customer_name;
                    // $user['email']	= $address['email'];
                    mslib_fe::mailOrder($orders_id, 1);
                }
                $order = $GLOBALS['TSFE']->fe_user->getKey('ses', 'tx_multishop_order');
                $order['orders_id'] = $orders_id;
                $GLOBALS['TSFE']->fe_user->setKey('ses', 'tx_multishop_order', $order);
                $GLOBALS['TSFE']->storeSessionData();
                next($stepCodes);
<?php

if (!defined('TYPO3_MODE')) {
    die('Access denied.');
}
$content .= '<div class="checkout_thank_you">';
$order_session = $GLOBALS['TSFE']->fe_user->getKey('ses', 'tx_multishop_order');
if (!$order_session['orders_id']) {
    $content .= 'Something went wrong. Please contact the support department.';
} else {
    $order = mslib_fe::getOrder($order_session['orders_id']);
    $orders_id = $order['orders_id'];
    // replacing the variables with dynamic values
    $billing_address = '';
    $delivery_address = '';
    $full_customer_name = $order['billing_first_name'];
    if ($order['billing_middle_name']) {
        $full_customer_name .= ' ' . $order['billing_middle_name'];
    }
    if ($order['billing_last_name']) {
        $full_customer_name .= ' ' . $order['billing_last_name'];
    }
    $delivery_full_customer_name = $order['delivery_first_name'];
    if ($order['delivery_middle_name']) {
        $delivery_full_customer_name .= ' ' . $order['delivery_middle_name'];
    }
    if ($order['delivery_last_name']) {
        $delivery_full_customer_name .= ' ' . $order['delivery_last_name'];
    }
    $full_customer_name = preg_replace('/\\s+/', ' ', $full_customer_name);
    $delivery_full_customer_name = preg_replace('/\\s+/', ' ', $delivery_full_customer_name);