prefix . "usces_order"; $meta_table = $wpdb->prefix . "usces_order_meta"; $query = $wpdb->prepare("SELECT o.*, om.meta_value AS order_country FROM {$order_table} AS o LEFT JOIN {$meta_table} AS om ON o.ID = om.order_id AND om.meta_key = 'customer_country' WHERE o.ID = %d", $order_id); $data = $wpdb->get_row( $query, ARRAY_A ); $this->customer['mem_id'] = $data['mem_id']; $this->customer['email'] = $data['order_email']; $this->customer['name1'] = $data['order_name1']; $this->customer['name2'] = $data['order_name2']; $this->customer['name3'] = $data['order_name3']; $this->customer['name4'] = $data['order_name4']; $this->customer['zip'] = $data['order_zip']; $this->customer['pref'] = $data['order_pref']; $this->customer['address1'] = $data['order_address1']; $this->customer['address2'] = $data['order_address2']; $this->customer['address3'] = $data['order_address3']; $this->customer['tel'] = $data['order_tel']; $this->customer['fax'] = $data['order_fax']; $this->customer['country_code'] = $data['order_country']; $this->customer['country'] = $usces_settings['country'][$data['order_country']]; $this->deliveri = (array)unserialize($data['order_delivery']); $this->cart = (array)unserialize($data['order_cart']); $this->condition = (array)unserialize($data['order_condition']); $this->order['ID'] = $order_id; $this->order['note'] = $data['order_note']; $this->order['delidue_date'] = $data['order_delidue_date']; $this->order['delivery_date'] = $data['order_delivery_date']; $this->order['delivery_time'] = $data['order_delivery_time']; $this->order['delivery_method'] = $data['order_delivery_method']; $this->order['payment_name'] = $data['order_payment_name']; $this->order['item_total_price'] = $data['order_item_total_price']; $this->order['getpoint'] = $data['order_getpoint']; $this->order['usedpoint'] = $data['order_usedpoint']; $this->order['discount'] = $data['order_discount']; $this->order['shipping_charge'] = $data['order_shipping_charge']; $this->order['cod_fee'] = $data['order_cod_fee']; $this->order['tax'] = $data['order_tax']; $this->order['date'] = $data['order_date']; $this->order['modified'] = $data['order_modified']; $this->order['status'] = $data['order_status']; $this->order['check'] = $data['order_check']; $this->order['total_full_price'] = $data['order_item_total_price'] - $data['order_usedpoint'] + $data['order_discount'] + $data['order_shipping_charge'] + $data['order_cod_fee'] + $data['order_tax']; $this->reserve = array(); } } ?>