You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
4.0 KiB
103 lines
4.0 KiB
<?php
|
|
/**
|
|
* Review order table
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/checkout/review-order.php.
|
|
*
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
* the readme will list any important changes.
|
|
*
|
|
* @see https://woocommerce.com/document/template-structure/
|
|
* @package WooCommerce\Templates
|
|
* @version 5.2.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
?>
|
|
|
|
|
|
<table class="shop_table woocommerce-checkout-review-order-table">
|
|
<!-- <thead>
|
|
<tr>
|
|
<th class="product-name"><?php esc_html_e( 'Product', 'woocommerce' ); ?></th>
|
|
<th class="product-total"><?php esc_html_e( 'Subtotal', 'woocommerce' ); ?></th>
|
|
</tr>
|
|
</thead> -->
|
|
|
|
<tfoot>
|
|
|
|
<tr class="order-your-calculation__item">
|
|
<th class="order-your-calculation__title"><?php pll_e('Товары') ?></th>
|
|
<td class="order-your-calculation__value order-your-calculation__value--price"><?php wc_cart_totals_subtotal_html(); ?></td>
|
|
</tr>
|
|
|
|
<?php foreach ( WC()->cart->get_coupons() as $code => $coupon ) : ?>
|
|
<tr class="order-your-calculation__item cart-discount coupon-<?php echo esc_attr( sanitize_title( $code ) ); ?>">
|
|
<th class="order-your-calculation__title"><?php wc_cart_totals_coupon_label( $coupon ); ?></th>
|
|
<td class="order-your-calculation__value order-your-calculation__value--price order-your-calculation__value--discount"><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
|
|
<?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; ?>
|
|
|
|
<tr class="order-your-calculation__item">
|
|
<th class="order-your-calculation__title"><?php pll_e('Доставка') ?></th>
|
|
<?php
|
|
$chosen_shipping_methods = WC()->session->get( 'chosen_shipping_methods' );
|
|
?>
|
|
<?php if (!isset( $chosen_shipping_methods[0])): ?>
|
|
<td class="order-your-calculation__description"><?php pll_e('Введите адрес доставки') ?></td>
|
|
<?php
|
|
else:
|
|
?>
|
|
<td class="order-your-calculation__value order-your-calculation__value--price"><?php echo WC()->cart->get_shipping_total(); ?> ₽</td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
|
|
|
|
<?php foreach ( WC()->cart->get_fees() as $fee ) : ?>
|
|
<tr class="fee">
|
|
<th><?php echo esc_html( $fee->name ); ?></th>
|
|
<td><?php wc_cart_totals_fee_html( $fee ); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
|
|
<?php if ( wc_tax_enabled() && ! WC()->cart->display_prices_including_tax() ) : ?>
|
|
<?php if ( 'itemized' === get_option( 'woocommerce_tax_total_display' ) ) : ?>
|
|
<?php foreach ( WC()->cart->get_tax_totals() as $code => $tax ) : // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited ?>
|
|
<tr class="tax-rate tax-rate-<?php echo esc_attr( sanitize_title( $code ) ); ?>">
|
|
<th><?php echo esc_html( $tax->label ); ?></th>
|
|
<td><?php echo wp_kses_post( $tax->formatted_amount ); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else : ?>
|
|
<tr class="tax-total">
|
|
<th><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></th>
|
|
<td><?php wc_cart_totals_taxes_total_html(); ?></td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'woocommerce_review_order_before_order_total' ); ?>
|
|
|
|
<tr class="order-your-calculation__line"></tr>
|
|
<tr class="order-your-calculation__item">
|
|
<th class="order-your-calculation__result"><?php esc_html_e( 'Total', 'woocommerce' ); ?></th>
|
|
<td class="order-your-calculation__result order-your-calculation__value--price"><?php wc_cart_totals_order_total_html(); ?></td>
|
|
</tr>
|
|
|
|
<?php do_action( 'woocommerce_review_order_after_order_total' ); ?>
|
|
|
|
</tfoot>
|
|
</table>
|