search for: price_after_tax

Displaying 1 result from an estimated 1 matches for "price_after_tax".

Did you mean: price_after_taxes
2006 Mar 28
1
How to create a taxes column
Hello all, I have a table that has all existent taxes in my country and I want to use it to calculate the tax value for every product in my Product table. What''s the best way to do this? Maybe add some kind of virtual column to Product table? I have the following classes: class Product < ActiveRecord:Base belongs_to: tax end class Tax < ActiveRecord:Base end Can anyone tell