2012-11-27 16:22:47 +00:00
|
|
|
<?php
|
2015-01-14 11:32:00 +00:00
|
|
|
/**
|
|
|
|
* Shows an order item fee
|
2015-02-03 14:02:38 +00:00
|
|
|
*
|
|
|
|
* @var object $item The item being displayed
|
|
|
|
* @var int $item_id The id of the item being displayed
|
2015-01-14 11:32:00 +00:00
|
|
|
*/
|
2015-02-03 14:02:38 +00:00
|
|
|
|
2014-06-11 19:06:31 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2015-01-14 11:32:00 +00:00
|
|
|
exit;
|
2014-06-11 19:06:31 +00:00
|
|
|
}
|
2012-11-12 13:41:54 +00:00
|
|
|
?>
|
2017-11-21 17:50:30 +00:00
|
|
|
<tr class="fee <?php echo ( ! empty( $class ) ) ? esc_attr( $class ) : ''; ?>" data-order_item_id="<?php echo esc_attr( $item_id ); ?>">
|
2014-07-22 13:27:47 +00:00
|
|
|
<td class="thumb"><div></div></td>
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-11-12 13:41:54 +00:00
|
|
|
<td class="name">
|
2013-08-15 15:49:09 +00:00
|
|
|
<div class="view">
|
2016-08-19 14:08:00 +00:00
|
|
|
<?php echo esc_html( $item->get_name() ? $item->get_name() : __( 'Fee', 'woocommerce' ) ); ?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2014-07-21 02:26:40 +00:00
|
|
|
<div class="edit" style="display: none;">
|
2016-10-12 10:16:30 +00:00
|
|
|
<input type="text" placeholder="<?php esc_attr_e( 'Fee name', 'woocommerce' ); ?>" name="order_item_name[<?php echo absint( $item_id ); ?>]" value="<?php echo ( $item->get_name() ) ? esc_attr( $item->get_name() ) : ''; ?>" />
|
2013-08-15 15:49:09 +00:00
|
|
|
<input type="hidden" class="order_item_id" name="order_item_id[]" value="<?php echo esc_attr( $item_id ); ?>" />
|
2016-08-19 14:08:00 +00:00
|
|
|
<input type="hidden" name="order_item_tax_class[<?php echo absint( $item_id ); ?>]" value="<?php echo esc_attr( $item->get_tax_class() ); ?>" />
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2017-11-21 17:50:30 +00:00
|
|
|
<?php do_action( 'woocommerce_after_order_fee_item_name', $item_id, $item, null ); ?>
|
2012-11-12 13:41:54 +00:00
|
|
|
</td>
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2015-01-20 11:06:15 +00:00
|
|
|
<?php do_action( 'woocommerce_admin_order_item_values', null, $item, absint( $item_id ) ); ?>
|
2014-07-24 09:21:47 +00:00
|
|
|
|
2014-11-11 13:40:44 +00:00
|
|
|
<td class="item_cost" width="1%"> </td>
|
2014-07-28 10:45:16 +00:00
|
|
|
<td class="quantity" width="1%"> </td>
|
2012-11-12 13:41:54 +00:00
|
|
|
|
|
|
|
<td class="line_cost" width="1%">
|
2013-08-15 15:49:09 +00:00
|
|
|
<div class="view">
|
2014-07-25 16:32:16 +00:00
|
|
|
<?php
|
2018-03-05 18:59:17 +00:00
|
|
|
echo wc_price( $item->get_total(), array( 'currency' => $order->get_currency() ) );
|
2014-07-25 15:48:19 +00:00
|
|
|
|
2018-03-05 18:59:17 +00:00
|
|
|
if ( $refunded = $order->get_total_refunded_for_item( $item_id, 'fee' ) ) {
|
|
|
|
echo '<small class="refunded">-' . wc_price( $refunded, array( 'currency' => $order->get_currency() ) ) . '</small>';
|
|
|
|
}
|
2014-07-25 15:48:19 +00:00
|
|
|
?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2014-07-21 02:26:40 +00:00
|
|
|
<div class="edit" style="display: none;">
|
2017-11-21 17:50:30 +00:00
|
|
|
<input type="text" name="line_total[<?php echo absint( $item_id ); ?>]" placeholder="<?php echo esc_attr( wc_format_localized_price( 0 ) ); ?>" value="<?php echo esc_attr( wc_format_localized_price( $item->get_total() ) ); ?>" class="line_total wc_input_price" />
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2014-07-24 09:56:32 +00:00
|
|
|
<div class="refund" style="display: none;">
|
2017-11-21 17:50:30 +00:00
|
|
|
<input type="text" name="refund_line_total[<?php echo absint( $item_id ); ?>]" placeholder="<?php echo esc_attr( wc_format_localized_price( 0 ) ); ?>" class="refund_line_total wc_input_price" />
|
2014-07-24 09:21:47 +00:00
|
|
|
</div>
|
2012-11-12 13:41:54 +00:00
|
|
|
</td>
|
|
|
|
|
2014-07-20 03:21:33 +00:00
|
|
|
<?php
|
2018-03-05 18:59:17 +00:00
|
|
|
if ( ( $tax_data = $item->get_taxes() ) && wc_tax_enabled() ) {
|
|
|
|
foreach ( $order_taxes as $tax_item ) {
|
|
|
|
$tax_item_id = $tax_item->get_rate_id();
|
|
|
|
$tax_item_total = isset( $tax_data['total'][ $tax_item_id ] ) ? $tax_data['total'][ $tax_item_id ] : '';
|
|
|
|
?>
|
|
|
|
<td class="line_tax" width="1%">
|
|
|
|
<div class="view">
|
|
|
|
<?php
|
|
|
|
echo ( '' !== $tax_item_total ) ? wc_price( wc_round_tax_total( $tax_item_total ), array( 'currency' => $order->get_currency() ) ) : '–';
|
2012-11-12 13:41:54 +00:00
|
|
|
|
2018-03-05 18:59:17 +00:00
|
|
|
if ( $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id, 'fee' ) ) {
|
|
|
|
echo '<small class="refunded">-' . wc_price( $refunded, array( 'currency' => $order->get_currency() ) ) . '</small>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="edit" style="display: none;">
|
|
|
|
<input type="text" name="line_tax[<?php echo absint( $item_id ); ?>][<?php echo esc_attr( $tax_item_id ); ?>]" placeholder="<?php echo esc_attr( wc_format_localized_price( 0 ) ); ?>" value="<?php echo ( isset( $tax_item_total ) ) ? esc_attr( wc_format_localized_price( $tax_item_total ) ) : ''; ?>" class="line_tax wc_input_price" />
|
|
|
|
</div>
|
|
|
|
<div class="refund" style="display: none;">
|
|
|
|
<input type="text" name="refund_line_tax[<?php echo absint( $item_id ); ?>][<?php echo esc_attr( $tax_item_id ); ?>]" placeholder="<?php echo esc_attr( wc_format_localized_price( 0 ) ); ?>" class="refund_line_tax wc_input_price" data-tax_id="<?php echo esc_attr( $tax_item_id ); ?>" />
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<?php
|
2016-08-19 14:08:00 +00:00
|
|
|
}
|
2018-03-05 18:59:17 +00:00
|
|
|
}
|
2014-07-20 03:21:33 +00:00
|
|
|
?>
|
2014-07-07 15:45:08 +00:00
|
|
|
<td class="wc-order-edit-line-item">
|
2014-09-03 09:09:04 +00:00
|
|
|
<?php if ( $order->is_editable() ) : ?>
|
2014-07-22 19:25:37 +00:00
|
|
|
<div class="wc-order-edit-line-item-actions">
|
|
|
|
<a class="edit-order-item" href="#"></a><a class="delete-order-item" href="#"></a>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</td>
|
2014-07-17 18:48:03 +00:00
|
|
|
</tr>
|