Skip to content

Commit

Permalink
just a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Apr 16, 2012
1 parent 7ef9fff commit 74d1cc0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion classes/class-wc-order.php
Expand Up @@ -254,7 +254,10 @@ function get_taxes() {
endif;
return $this->taxes;
}



/** Total Getters *******************************************************/

/** Gets shipping and product tax */
function get_total_tax() {
return $this->order_tax + $this->order_shipping_tax;
Expand Down Expand Up @@ -354,6 +357,9 @@ function get_row_cost( $item, $inc_tax = false ) {
return $this->get_line_total( $item, $inc_tax );
}

/** End Total Getters *******************************************************/


/** Gets line subtotal - formatted for display */
function get_formatted_line_subtotal( $item ) {
$subtotal = 0;
Expand Down

0 comments on commit 74d1cc0

Please sign in to comment.