<?php
/**
 * Review order form
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.1.8
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

?>
<?php if ( ! is_ajax() ) : ?><div id="order_review"><?php endif; ?>

	<table class="shop_table table table-striped">
		<thead>
			<tr>
				<th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
				<th class="product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
			</tr>
		</thead>
		<tfoot>
			<tr class="cart-subtotal">
				<th><?php _e( 'Cart Subtotal', 'woocommerce' ); ?></th>
				<td><?php wc_cart_totals_subtotal_html(); ?></td>
			</tr>

			<?php if ( WC()->cart->get_discounts_before_tax() ) : ?>

				<tr class="discount">
					<th><?php _e( 'Cart Discount', 'woocommerce' ); ?></th>
					<td>-<?php echo WC()->cart->get_discounts_before_tax(); ?></td>
				</tr>

			<?php endif; ?>

			<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>

				<?php do_action('woocommerce_review_order_before_shipping'); ?>

				<?php wc_cart_totals_shipping_html(); ?>

				<?php do_action('woocommerce_review_order_after_shipping'); ?>

			<?php endif; ?>

			<?php foreach ( WC()->cart->get_fees() as $fee ) : ?>

				<tr class="fee fee-<?php echo $fee->id ?>">
					<th><?php echo $fee->name ?></th>
					<td><?php
						if ( WC()->cart->tax_display_cart == 'excl' )
							echo woocommerce_price( $fee->amount );
						else
							echo woocommerce_price( $fee->amount + $fee->tax );
						?></td>
				</tr>

			<?php endforeach; ?>

			<?php
			// Show the tax row if showing prices exlcusive of tax only
			if ( WC()->cart->tax_display_cart == 'excl' ) {
				foreach ( WC()->cart->get_tax_totals() as $code => $tax ) {
					echo '<tr class="tax-rate tax-rate-' . $code . '">
									<th>' . $tax->label . '</th>
									<td>' . $tax->formatted_amount . '</td>
								</tr>';
				}
			}
			?>

			<?php if ( WC()->cart->get_discounts_after_tax() ) : ?>

				<tr class="discount">
					<th><?php _e( 'Order Discount', 'woocommerce' ); ?></th>
					<td>-<?php echo WC()->cart->get_discounts_after_tax(); ?></td>
				</tr>

			<?php endif; ?>

			<?php do_action( 'woocommerce_review_order_before_order_total' ); ?>

			<tr class="total">
				<th><strong><?php _e( 'Order Total', 'woocommerce' ); ?></strong></th>
				<td>
					<strong><?php echo WC()->cart->get_total(); ?></strong>
					<?php
					// If prices are tax inclusive, show taxes here
					if ( WC()->cart->tax_display_cart == 'incl' ) {
						$tax_string_array = array();

						foreach ( WC()->cart->get_tax_totals() as $code => $tax ) {
							$tax_string_array[] = sprintf( '%s %s', $tax->formatted_amount, $tax->label );
						}

						if ( ! empty( $tax_string_array ) ) {
							?><small class="includes_tax"><?php printf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ); ?></small><?php
						}
					}
					?>
				</td>
			</tr>

			<?php do_action( 'woocommerce_review_order_after_order_total' ); ?>

		</tfoot>
		<tbody>
			<?php
			do_action( 'woocommerce_review_order_before_cart_contents' );

			if (sizeof(WC()->cart->get_cart())>0) :
				foreach (WC()->cart->get_cart() as $cart_item_key => $values) :
					$_product = $values['data'];
					if ($_product->exists() && $values['quantity']>0) :
						echo '<tr class="' . esc_attr( apply_filters('woocommerce_checkout_table_item_class', 'checkout_table_item', $values, $cart_item_key ) ) . '">
								<td class="product-name">' .
									apply_filters( 'woocommerce_checkout_product_title', $_product->get_title(), $_product ) . ' ' .
									apply_filters( 'woocommerce_checkout_item_quantity', '<strong class="product-quantity">&times; ' . $values['quantity'] . '</strong>', $values, $cart_item_key ) .
									WC()->cart->get_item_data( $values ) .
								'</td>
								<td class="product-total">' . apply_filters( 'woocommerce_checkout_item_subtotal', WC()->cart->get_product_subtotal( $_product, $values['quantity'] ), $values, $cart_item_key ) . '</td>
							</tr>';
					endif;
				endforeach;
			endif;

			do_action( 'woocommerce_review_order_after_cart_contents' );
			?>
		</tbody>
	</table>



	<div id="payment">
		<?php if (WC()->cart->needs_payment()) : ?>

			<h3><?php _e('Payment', 'woocommerce'); ?></h3>
		<ul class="payment_methods methods">
			<?php
				$available_gateways = WC()->payment_gateways->get_available_payment_gateways();
				if ( ! empty( $available_gateways ) ) {

					// Chosen Method
					if ( isset( WC()->session->chosen_payment_method ) && isset( $available_gateways[ WC()->session->chosen_payment_method ] ) ) {
						$available_gateways[ WC()->session->chosen_payment_method ]->set_current();
					} elseif ( isset( $available_gateways[ get_option( 'woocommerce_default_gateway' ) ] ) ) {
						$available_gateways[ get_option( 'woocommerce_default_gateway' ) ]->set_current();
					} else {
						current( $available_gateways )->set_current();
					}

					foreach ( $available_gateways as $gateway ) {
						?>
						<li>
							<input type="radio" id="payment_method_<?php echo $gateway->id; ?>" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> />
							<label for="payment_method_<?php echo $gateway->id; ?>"><?php echo $gateway->get_title(); ?> <?php echo $gateway->get_icon(); ?></label>
							<?php
								if ( $gateway->has_fields() || $gateway->get_description() ) :
									echo '<div class="payment_box payment_method_' . $gateway->id . '" ' . ( $gateway->chosen ? '' : 'style="display:none;"' ) . '>';
									$gateway->payment_fields();
									echo '</div>';
								endif;
							?>
						</li>
						<?php
					}
				} else {

					if ( ! WC()->customer->get_country() )
						echo '<p>' . __( 'Please fill in your details above to see available payment methods.', 'woocommerce' ) . '</p>';
					else
						echo '<p>' . __( 'Sorry, it seems that there are no available payment methods for your state. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce' ) . '</p>';

				}
			?>
		</ul>
		<?php endif; ?>

		<div class="form-row place-order">

			<noscript><?php _e( 'Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so.', 'woocommerce' ); ?><br/><button type="submit" class="button alt" name="woocommerce_checkout_update_totals"><?php _e( 'Update totals', 'woocommerce' ); ?></button></noscript>

			<?php wp_nonce_field( 'woocommerce-process_checkout' ); ?>

			<?php do_action( 'woocommerce_review_order_before_submit' ); ?>

			<?php
			$order_button_text = apply_filters('woocommerce_order_button_text', __( 'Place order', 'woocommerce' ));

			echo apply_filters('woocommerce_order_button_html', '<br/><div class="wrapper"><button type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order">' . $order_button_text . '</button></div>' );
			?>

			<?php if (woocommerce_get_page_id('terms')>0) : ?>
				<p class="form-row terms">
					<label for="terms" class="checkbox"><?php _e( 'I have read and accept the', 'woocommerce' ); ?> <a href="<?php echo esc_url( get_permalink(woocommerce_get_page_id('terms')) ); ?>" target="_blank"><?php _e( 'terms &amp; conditions', 'woocommerce' ); ?></a></label>
					<input type="checkbox" class="input-checkbox" name="terms" <?php checked( isset( $_POST['terms'] ), true ); ?> id="terms" />
				</p>
			<?php endif; ?>

			<?php do_action( 'woocommerce_review_order_after_submit' ); ?>

		</div>

		<div class="clear"></div>

	</div>

<?php if ( ! is_ajax() ) : ?></div><?php endif; ?>
