Guest User

Untitled

a guest
Dec 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <config>
  2. ...
  3. <global>
  4. ...
  5. <catalog>
  6. <product>
  7. <type>
  8. <simple translate="label" module="catalog">
  9. <price_model><!-- YOUR_PRICE_MODEL --></price_model>
  10. </simple>
  11. </type>
  12. </product>
  13. </catalog>
  14. </global>
  15. </config>
  16.  
  17. class /*YOUR_PRICE_MODEL*/ extends Mage_Catalog_Model_Product_Type_Price
  18. {
  19. public function getPrice($product){
  20. // your custom calculate price
  21. }
  22. public function getFinalPrice($qty=null, $product){
  23. // your custom calculate final price
  24. }
  25. }
Add Comment
Please, Sign In to add comment