<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
    <title>Magento Issue Tracking</title>
    <link>http://www.magentocommerce.com/bug-tracking/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>MagentoCommerce</dc:creator>
    <dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
    <dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        <item>
        <title>View Issue #6585 / Grouped product price without TAX - Starting at</title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=2849</link>
        <description><![CDATA[<strong>Posted:</strong> 2008-08-20 10:07:06<br/><strong>Category:</strong> Product<br/><strong>Version:</strong> 1.1.3<br/><strong>Priority:</strong> high<br/><strong>Status:</strong> closed<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></strong><br/><br/>The Grouped product price which is shown after &quot;Starting at:&quot; is displayed excluding tax although all the simple products which are associated are shown including tax.<br/><br/><hr/>]]></description>
    </item>
    
                    <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#1 / Comment by <a href="http://www.magentocommerce.com/boards/member/14677/">Gui</a></em><br/><br/>Confirmed on 1.1.3.]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#2 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>The status is resoved now? in which version? 1.1.4 or 1.1.5 or .....?]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#3 / Comment by Magento Team</em><br/><br/>Hello senders,<br />
<br />
This issue was fixed and the changes will be available in the next bugfix release.<br />
<br />
Thank you.]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#4 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>Hello Magento Team,<br />
<br />
I am sorry this bug isn't fixed.<br />
It is still in current version of Magento 1.1.6!!!<br />
<br />
Thanks]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#5 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>ok, with a quite raw installation of 1.1.6 it is fixed.<br />
But with the pear update, it won't be updated although I made the changed in the template file<br />
/app/design/frontend/default/default/template/catalog/product/price.phtml<br />
<br />
Can you please send me the changes which you made for this bug  to resolve it.<br />
<br />
Or can I see it with the svn, like the sympphony framework projekt is doing it?<br />
<br />
There every changes of the bug tracker is compined with the svn.<br />
<br />
Thanks]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#6 / Comment by <a href="http://www.magentocommerce.com/boards/member/14677/">Gui</a></em><br/><br/>I can confim that this bug will not be fixed if you use Magento connect to update. Hoping to see a fix for that fix with the 1.1.7 release.]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#7 / Comment by <a href="http://www.magentocommerce.com/boards/member/14677/">Gui</a></em><br/><br/>okay just found out that re-saving the grouped product will display the starting price including tax. Tried to purge cache but that did not work. great]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#8 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>Can Varien give us feedback please!]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#9 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>Problem is that:<br />
$_inclTax = $this-&gt;helper('tax')-&gt;getPrice($_product, $_minimalPriceValue, $includingTax = true);<br />
<br />
gives only the price without tax<br />
<br />
in<br />
<br />
\app\design\frontend\default\default\template\catalog\product\price.phtml]]></description>
    </item>
            <item>
        <title>RE: Grouped product price without TAX - Starting at</title>
        <description><![CDATA[<em>#10 / Comment by <a href="http://www.magentocommerce.com/boards/member/13527/">senders</a></em><br/><br/>I found out the real reason why it is not working:<br />
<br />
I think in the new versions where it should be fixed the row tax_class_id   in table catalogindex_minimal_price was added.<br />
<br />
But the Update scripts doesn't import the data from catalogindex_price to catalogindex_minimal_price.<br />
<br />
So you have to do it manually after upgrading:<br />
<br />
<br />
UPDATE catalogindex_minimal_price AS t1 LEFT JOIN catalogindex_price AS t2 ON( t1.entity_id = t2.entity_id AND t1.customer_group_id = t2.customer_group_id) SET t1.tax_class_id=t2.tax_class_id;<br />
<br />
No Warranty for this SQL Statement. Please Backup your database before. For me it is working fine!!!<br />
<br />
Varien: Please include it in the next 1.1.7 Version!]]></description>
    </item>
        </channel>
</rss>