Magento – totals sort of custom added row in the account order view

extensionsmoduleorderstotals

I have problem with sort custom added row in totals.

I successfully sort new row in cart and checkout page with this in my moduele config.xml

   <default>
        <sales>
            <totals_sort>
                <rowtotal>20</rowtotal>
            </totals_sort>
        </sales>
  </default>

Also with success sort new row in pdf invoice with tag <sort_order> in my module config.xml

    <pdf>
    <totals>
      <rowtotal translate="title">
        <title>Ukupno s popustom</title>
        <source_field>rowtot_alamount</source_field>
        <model>Devpassion_Rowtotal_Model_Pdf_Total_Totalpdf</model>
        <font_size>7</font_size>
        <display_zero>0</display_zero>
        <sort_order>300</sort_order>
      </rowtotal>
    </totals>
</pdf>

I don't have idea how to sort this new row in My orders view and email order view.

Related Topic