0
votes
1answer
47 views

Subtracting two totals

I have a table linked though mysql. I have 5 columns showing: Name, Shop, Description, Amount Owed and cost. I have written a script to tally up the totals of of "amount owed" and "cost". I am having ...
1
vote
2answers
726 views

jquery table rows line totals and grand total

I'm currently writing a small plugin for computer repair techs and I'm now trying to code the invoice section but not having much luck! I've got the fields being populated from the database but I'm ...
3
votes
1answer
1k views

Magento, getSubtotal and getGrandTotal always return zero

I have a weird problem. I have developed a module which adds a line to totals according to some value in database. But in my module model (which is inherited from ...
1
vote
2answers
506 views

PHP + MySQL: Finding total of values by recursing through mySQL parent children groups

I have a mySQL table like this: Folders [id] [name] [parent_id] 1 fruits 0 2 orange 1 3 lemon 2 4 steak 0 Projects [id] [name] [parent_id] [hours] 1 project1 1 ...