$sale_price = get_post_meta( $cart_item['product_id'], '_sale_price', true );
if(! isset($sale_price) ) :
$product_price = get_post_meta( $cart_item['product_id'], 'woo_second_price', true );
$products_total += $product_price * $cart_item['quantity'];
endif;