2012-11-27 16:22:47 +00:00
|
|
|
<?php
|
2014-06-11 19:06:31 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-11-12 13:41:54 +00:00
|
|
|
?>
|
2014-06-11 19:06:31 +00:00
|
|
|
<tr class="fee <?php echo ( ! empty( $class ) ) ? $class : ''; ?>" data-order_item_id="<?php echo $item_id; ?>">
|
2012-11-12 13:41:54 +00:00
|
|
|
<td class="check-column"><input type="checkbox" /></td>
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-11-12 13:41:54 +00:00
|
|
|
<td class="thumb"></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">
|
2014-06-11 19:06:31 +00:00
|
|
|
<?php echo ! empty( $item['name'] ) ? esc_html( $item['name'] ) : __( 'Fee', 'woocommerce' ); ?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
|
|
|
<div class="edit" style="display:none">
|
2014-06-11 19:06:31 +00:00
|
|
|
<input type="text" placeholder="<?php _e( 'Fee Name', 'woocommerce' ); ?>" name="order_item_name[<?php echo absint( $item_id ); ?>]" value="<?php echo ( isset( $item['name'] ) ) ? esc_attr( $item['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 ); ?>" />
|
|
|
|
</div>
|
2012-11-12 13:41:54 +00:00
|
|
|
</td>
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-11-12 13:41:54 +00:00
|
|
|
<td class="quantity" width="1%">1</td>
|
|
|
|
|
|
|
|
<td class="line_cost" width="1%">
|
2013-08-15 15:49:09 +00:00
|
|
|
<div class="view">
|
2014-06-11 19:06:31 +00:00
|
|
|
<?php echo ( isset( $item['line_total'] ) ) ? wc_price( wc_round_tax_total( $item['line_total'] ) ) : ''; ?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
|
|
|
<div class="edit" style="display:none">
|
2014-06-11 19:06:31 +00:00
|
|
|
<label><?php _e( 'Total', 'woocommerce' ); ?>: <input type="text" name="line_total[<?php echo absint( $item_id ); ?>]" placeholder="<?php echo wc_format_localized_price( 0 ); ?>" value="<?php echo ( isset( $item['line_total'] ) ) ? esc_attr( wc_format_localized_price( $item['line_total'] ) ) : ''; ?>" class="line_total wc_input_price" /></label>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2012-11-12 13:41:54 +00:00
|
|
|
</td>
|
|
|
|
|
2014-07-19 04:08:02 +00:00
|
|
|
|
|
|
|
|
2014-06-11 19:06:31 +00:00
|
|
|
<?php if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) : ?>
|
2013-01-11 11:29:13 +00:00
|
|
|
|
2012-11-12 13:41:54 +00:00
|
|
|
<td class="line_tax" width="1%">
|
2013-08-15 15:49:09 +00:00
|
|
|
<div class="view">
|
2014-06-11 19:06:31 +00:00
|
|
|
<?php echo ( isset( $item['line_tax'] ) ) ? wc_price( wc_round_tax_total( $item['line_tax'] ) ) : ''; ?>
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
|
|
|
<div class="edit" style="display:none">
|
2014-06-11 19:06:31 +00:00
|
|
|
<input type="text" name="line_tax[<?php echo absint( $item_id ); ?>]" placeholder="<?php echo wc_format_localized_price( 0 ); ?>" value="<?php echo ( isset( $item['line_tax'] ) ) ? esc_attr( wc_format_localized_price( $item['line_tax'] ) ) : ''; ?>" class="line_tax wc_input_price" />
|
2013-08-15 15:49:09 +00:00
|
|
|
</div>
|
2012-11-12 13:41:54 +00:00
|
|
|
</td>
|
|
|
|
|
2013-01-11 11:29:13 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2014-07-08 09:51:10 +00:00
|
|
|
<td class="wc-order-item-refund-quantity" width="1%" style="display:none">
|
2014-07-17 18:48:03 +00:00
|
|
|
<input type="number" step="1" min="0" max="1" autocomplete="off" name="order_item_refund_qty[<?php echo absint( $item_id ); ?>]" placeholder="0" size="4" class="quantity" />
|
2014-07-08 09:51:10 +00:00
|
|
|
</td>
|
|
|
|
|
2014-07-07 15:45:08 +00:00
|
|
|
<td class="wc-order-edit-line-item">
|
|
|
|
<div class="wc-order-edit-line-item-actions">
|
2014-07-17 20:17:54 +00:00
|
|
|
<a class="edit-order-item" href="#"></a><a class="delete-order-item" href="#"></a>
|
2014-07-07 15:45:08 +00:00
|
|
|
</div>
|
2013-08-15 15:49:09 +00:00
|
|
|
</td>
|
2014-07-17 18:48:03 +00:00
|
|
|
</tr>
|