Exemplo n.º 1
0
echo tep_image(DIR_WS_IMAGES . 'table_background_history.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT);
?>
</td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td><?php 
echo tep_draw_separator('pixel_trans.gif', '100%', '10');
?>
</td>
      </tr>
      <tr>
        <td>
<?php 
$orders_total = tep_count_customer_orders();
if ($orders_total > 0) {
    $history_query_raw = "select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int) $customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int) $languages_id . "' and s.public_flag = '1' order by orders_id DESC";
    $history_split = new splitPageResults($history_query_raw, MAX_DISPLAY_ORDER_HISTORY);
    $history_query = tep_db_query($history_split->sql_query);
    while ($history = tep_db_fetch_array($history_query)) {
        $products_query = tep_db_query("select count(*) as count from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . (int) $history['orders_id'] . "'");
        $products = tep_db_fetch_array($products_query);
        if (tep_not_null($history['delivery_name'])) {
            $order_type = TEXT_ORDER_SHIPPED_TO;
            $order_name = $history['delivery_name'];
        } else {
            $order_type = TEXT_ORDER_BILLED_TO;
            $order_name = $history['billing_name'];
        }
        ?>
Exemplo n.º 2
0
    </table></td>
<!-- body_text //-->
    <td width="100%" valign="top">
	<?php
    if ($messageStack->size('account') > 0)
    {
    echo $messageStack->output('account');
    }
	?>
    <table border="0" width="100%" cellspacing="10" cellpadding="10">
      <tr>
        <td><h1><?php echo Translate('Mijn account'); ?></h1></td>
      </tr>
<?
if ((SOAP_STATUS!='true')||(SOAP_ACCOUNT_HISTORY!='true')) {
  if (tep_count_customer_orders() > 0) {
?>
	<tr>
		<td>
			<div class="orders">
				<h2><?php echo Translate('Overzicht'); ?> <?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL') . '">' . Translate('Laatste bestellingen') . '</a>'; ?></h2>
				<table border="0" width="100%" cellspacing="0" cellpadding="2">
<?php
$orders_query = tep_db_query("select o.orders_id, o.date_purchased, o.delivery_name, o.delivery_country, o.billing_name, o.billing_country, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' order by orders_id desc limit 3");
$i=0;
while ($orders = tep_db_fetch_array($orders_query)) {
	if (tep_not_null($orders['delivery_name'])) {
		$order_name = convert_to_entities($orders['delivery_name']);
		$order_country = convert_to_entities($orders['delivery_country']);
	} else {
		$order_name = convert_to_entities($orders['billing_name']);
Exemplo n.º 3
0
				}
		<?php 
                } else {
                    $coversAll = false;
                    ?>
				function clearRadeos(){
					document.checkout.cot_gv.checked=!document.checkout.cot_gv.checked;
				}
		<?php 
                }
            }
            ?>
		//-->
		</script>
		<?php 
            echo '</div>';
        }
    }
}
// End - CREDIT CLASS Gift Voucher Contribution
if (is_array($buysafe_result) && $buysafe_result['IsBuySafeEnabled'] == 'true') {
    $buysafe_module->draw_payment_page();
}
//BOF Points/Rewards
if (USE_POINTS_SYSTEM == 'true' && USE_REDEEM_SYSTEM == 'true') {
    echo points_selection();
    if (tep_not_null(USE_REFERRAL_SYSTEM) && tep_count_customer_orders() == 0) {
        echo referral_input();
    }
}
//EOF Points/Rewards