diff --git a/cel_lead/cel_lead.module b/cel_lead/cel_lead.module
index 9598169..b8e9181 100644
--- a/cel_lead/cel_lead.module
+++ b/cel_lead/cel_lead.module
@@ -183,7 +183,11 @@ function cel_lead_exit_step0_submit($form, &$form_state) {
 	$to_insert[0]['origin'] = $my_sw->generated_origin;
 	$to_insert[0]['drupal_id'] = $my_sw->generated_origin . '::' . $to_insert[0]['wf_nid_prospect'] . '::' . time();
 	$to_insert[0]['school_year'] = $my_sw->school_year;
-	$to_insert[0]['amount'] = $product->commerce_price[LANGUAGE_NONE][0]['amount'];
+	
+	$price = commerce_product_calculate_sell_price($product);
+	$price_to_post = commerce_currency_amount_to_decimal($price['amount'], $price['currency_code']);
+	$to_insert[0]['amount'] = $price_to_post;
+	
 	
 	if(isset($product->field_cel_pd_exam[LANGUAGE_NONE][0]['value'])) {
 		$_SESSION['cel_lead_entrance_exam_after_add_cart'] = $product->field_cel_pd_exam[LANGUAGE_NONE][0]['value'];
