PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-pro
/
templates
/
orders
/
views
<?php /** * Shows a shipping line * * @var object $item The item being displayed * @var int $item_id The id of the item being displayed */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } ?> <tr class="shipping <?php echo ( ! empty( $class ) ) ? $class : ''; ?>" data-order_item_id="<?php echo $item_id; ?>"> <!-- <td class="check-column"><input type="checkbox" /></td> --> <td class="thumb"><div><i class="fa fa-truck"></i></div></td> <td class="name"> <div class="view"> <?php echo ! empty( $item['name'] ) ? esc_html( $item['name'] ) : __( 'Shipping', 'dokan' ); ?> </div> <div class="edit" style="display: none;"> <input style="width:60px" type="text" placeholder="<?php _e( 'Shipping Name', 'dokan' ); ?>" name="shipping_method_title[<?php echo $item_id; ?>]" value="<?php echo ( isset( $item['name'] ) ) ? esc_attr( $item['name'] ) : ''; ?>" /> <select name="shipping_method[<?php echo $item_id; ?>]"> <optgroup label="<?php _e( 'Shipping Method', 'dokan' ); ?>"> <option value=""><?php _e( 'N/A', 'dokan' ); ?></option> <?php $found_method = false; foreach ( $shipping_methods as $method ) { $method_id = isset( $item['method_id'] ) ? $item['method_id'] : ''; $current_method = ( 0 === strpos( $method_id, $method->id ) ) ? $method_id : $method->id; echo '<option value="' . esc_attr( $current_method ) . '" ' . selected( $method_id == $current_method, true, false ) . '>' . esc_html( $method->get_title() ) . '</option>'; if ( $method_id == $current_method ) { $found_method = true; } } if ( ! $found_method && ! empty( $method_id ) ) { echo '<option value="' . esc_attr( $method_id ) . '" selected="selected">' . __( 'Other', 'dokan' ) . '</option>'; } else { echo '<option value="other">' . __( 'Other', 'dokan' ) . '</option>'; } ?> </optgroup> </select> <input type="hidden" name="shipping_method_id[]" value="<?php echo esc_attr( $item_id ); ?>" /> </div> </td> <?php do_action( 'woocommerce_admin_order_item_values', null, $item, absint( $item_id ) ); ?> <td class="item_cost" width="1%"> </td> <td class="quantity" width="1%"> </td> <td class="line_cost" width="1%"> <div class="view"> <?php echo ( isset( $item['cost'] ) ) ? wc_price( wc_round_tax_total( $item['cost'] ), array( 'currency' => dokan_get_prop( $order, 'get_order_currency', 'get_currency' ) ) ) : ''; if ( $refunded = $order->get_total_refunded_for_item( $item_id, 'shipping' ) ) { echo ' <small class="refunded">-' . wc_price( $refunded, array( 'currency' => dokan_get_prop( $order, 'get_order_currency', 'get_currency' ) ) ) . '</small>'; } ?> </div> <div class="edit" style="display: none;"> <input style="width:60px" type="text" name="shipping_cost[<?php echo $item_id; ?>]" placeholder="<?php echo wc_format_localized_price( 0 ); ?>" value="<?php echo ( isset( $item['cost'] ) ) ? esc_attr( wc_format_localized_price( $item['cost'] ) ) : ''; ?>" class="line_total wc_input_price" /> </div> <?php if ( 'seller' === dokan()->commission->get_shipping_fee_recipient( $order->get_id() ) ) : ?> <div class="refund" style="display: none;"> <input style="width:60px" type="text" name="refund_line_total[<?php echo absint( $item_id ); ?>]" placeholder="<?php echo wc_format_localized_price( 0 ); ?>" class="refund_line_total wc_input_price" /> </div> <?php endif; ?> </td> <?php if ( empty( $legacy_order ) && wc_tax_enabled() ) : $shipping_taxes = isset( $item['taxes'] ) ? $item['taxes'] : ''; $tax_data = maybe_unserialize( $shipping_taxes ); foreach ( $order_taxes as $tax_item ) : $tax_item_id = $tax_item['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' => dokan_get_prop( $order, 'get_order_currency', 'get_currency' ) ) ) : '–'; if ( $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id, 'shipping' ) ) { echo ' <small class="refunded">-' . wc_price( $refunded, array( 'currency' => dokan_get_prop( $order, 'get_order_currency', 'get_currency' ) ) ) . '</small>'; } ?> </div> <div class="edit" style="display: none;"> <input style="width:60px" type="text" name="shipping_taxes[<?php echo absint( $item_id ); ?>][<?php echo esc_attr( $tax_item_id ); ?>]" placeholder="<?php echo 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 style="width:60px" type="text" name="refund_line_tax[<?php echo absint( $item_id ); ?>][<?php echo esc_attr( $tax_item_id ); ?>]" placeholder="<?php echo 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 endforeach; endif; ?> <td class="wc-order-edit-line-item"> <?php if ( $order->is_editable() ) : ?> <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; ?> </td> </tr>
[+]
..
[-] html-product-attribute.php
[edit]
[-] html-variation-admin.php
[edit]
[-] html-order-shipping.php
[edit]
[-] html-order-fee.php
[edit]
[-] html-product-download.php
[edit]
[-] html-order-refund.php
[edit]
[-] html-order-items.php
[edit]
[-] html-order-item.php
[edit]
[-] html-order-download-permission.php
[edit]
[-] html-product-variation-download.php
[edit]