- Timestamp:
- 2007/08/03 21:22:52 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/SC_CartSession.php
r15080 r15177 81 81 $price = $_SESSION[$this->key][$i]['price']; 82 82 $quantity = $_SESSION[$this->key][$i]['quantity']; 83 $pre_tax = sfPreTax($price, $arrInfo['tax'], $arrInfo['tax_rule']);83 $pre_tax = SC_Utils_Ex::sfPreTax($price, $arrInfo['tax'], $arrInfo['tax_rule']); 84 84 $total = $pre_tax * $quantity; 85 85 return $total; … … 149 149 $price = $_SESSION[$this->key][$i]['price']; 150 150 $quantity = $_SESSION[$this->key][$i]['quantity']; 151 $tax = sfTax($price, $arrInfo['tax'], $arrInfo['tax_rule']);151 $tax = SC_Utils_Ex::sfTax($price, $arrInfo['tax'], $arrInfo['tax_rule']); 152 152 $total+= ($tax * $quantity); 153 153 } … … 165 165 $point_rate = $_SESSION[$this->key][$i]['point_rate']; 166 166 $id = $_SESSION[$this->key][$i]['id'][0]; 167 $point = sfPrePoint($price, $point_rate, POINT_RULE, $id);167 $point = SC_Utils_Ex::sfPrePoint($price, $point_rate, POINT_RULE, $id); 168 168 $total+= ($point * $quantity); 169 169 }
Note: See TracChangeset
for help on using the changeset viewer.
