This is just an add on to the excellent Quantity Price Breaks Per Product contribution. It replaces includes/classes/PriceFormatter.php. Back-up of course. I just wanted the price table to be visually consistant with the rest of the store.
I am hoping the author of QPBPP or somebody integrates a Quantity Price Break Per Product Attribute. It's essential for wholesale stores. Also note that QPBPP should support "specials" somehow.
Legend: 
Download

Report
PriceFormatter.php
For those who has this installed:
- Separate Pricing Per Customer V4.2.0
- Hide products from customer groups for SPPC V2.0.2
- Quantity Price Breaks for Separate Pricing Per Customer V1.0.2
:)
NOTE: the zip file is not a real zip. Rename to .rar and try again if you have problems opening it.
I downloaded Ashely's 'PriceFomatter.php' and uploaded on mine. The price table was looking good. But, for some reason, the total always render $0.00 regardless I have items in the shopping cart.
This replacement file will fix the problem.
Use this file instead of the previous file, the previous file had an error in it where if a product had a special price, that price would override any quantity price breaks in the shopping cart. I corrected the code so that if one of the quantity prices is lower than the specials price, the correct price will be calculated in the shopping cart.
Someone below asked for this and I also wanted a way to show this simple but much nicer table format of the Quantity Price Breaks table, but I also needed it to display the original price of the product before the quantity price breaks come into play (with the previous versions only the quantity price breaks were shown starting at whatever level your first price break was). I also added a hack that would show the discount % for the base price if there is a special/discount price loaded.
This is not a complete package, just a rewrite of the PriceFormatter.php class file.
To install, simply upload this file over your previously existing includes/classes/PriceFormatter.php file.
This worked great for me so I wanted to share it, but I have not tested it in all browsers/environments so as always, BACK UP your files before installing.
Bah - Just realised I had the file added before the salemaker fix, this file has the priceformatter with the salemaker fix included.
Basically I have added a new function that calculates the percentage saving from the original price and displays it in the table outputted to the product info screen.
This is the same priceformatter file taken from the below addition to this contribution.
Basically I have added a new function that calculates the percentage saving from the original price and displays it in the table outputted to the product info screen.
This is a small fix so that getting special prices gets the right price when used with the SaleMaker contribution (and any other contributions that get the special price by calling tep_get_products_special_price).
Find this line
$this->specialPrice=$prices['specials_new_products_price'];
Replace it with
$this->specialPrice=tep_get_products_special_price($prices['products_id']);
This version of PriceFormatter.php supports specials. If any price break level has a price greater than the special price it is lowered to the special price.
I also completed supported for 8 price break levels. I don't know if version 1.11.1 just had an old file or if the person who added the extra price break levels never botherd to test it because the extra 4 price levels in version 1.11.1 do not work.
Great Change ... But how do I move the table to the bottom of the page and keep the original "Single Price" at the top of the page as original? Is there a contribution for this?
Can anyone help? Simular to specials?
This is just an add on to the excellent Quantity Price Breaks Per Product contribution. It replaces includes/classes/PriceFormatter.php. Back-up of course. I just wanted the price table to be visually consistant with the rest of the store.
I am hoping the author of QPBPP or somebody integrates a Quantity Price Break Per Product Attribute. It's essential for wholesale stores. Also note that QPBPP should support "specials" somehow.