How to display the sum of Balances in the "Manage Gift Card Accounts" in magento admin control panel. Customers => Gift Card Accounts

I want to display the sum of balances as Total at the bottom of the table.

link|improve this question

70% accept rate
Would that be the sum of Balances for the displayed list, or all the gift cards in the system? – ShaunOReilly Jan 24 at 6:20
Its the sum of balances for the displayed list – Anz Jan 24 at 8:11
you can easily do that in the template, by just incrementing a running total value, every time that a row gets added. Adding it to the Model object might be more challenging. – ShaunOReilly Jan 24 at 8:41
Where should I locate the template file for the Gift Card Accounts, I am a beginner to magento – Anz Jan 24 at 9:45
1  
There is no special template for this page because it is ordinary magento backend grid. – Zyava Jan 24 at 10:07
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Have a look at this file: app/code/core/Enterprise/GiftCardAccount/Block/Adminhtml/Giftcardaccount/Grid.php

and

app/design/adminhtml/default/default/template/enterprise/giftcardaccount/sales/order/totals/giftcardaccount.phtml

This will give you some ideas.

I think it might need heavy surgery, to add a separate row down the bottom.

You might be better off doing a report.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.