Displaying 2 results from an estimated 2 matches for "taxauthid".
2009 Jul 28
1
complex find
...belongs_to :debtortrans, :foreign_key => ''debtortransid''
Now I want to find Debtortrans records but only those with specific
Debtortranstaxes values...
@debtor = Debtortrans.find(:all,
:conditions => ["trandate > ? and trandate < ? AND
debtortranstaxes.taxauthid = ?", @per1, @per.lastdate_in_period, "24"],
:include => ''debtortranstaxes'',
:select => ''debtorno, trandate, transno, ovamount'')
but this gives me an error...
NameError: undefined local variable or method `debtortranstaxes'' for...
2009 Jul 29
9
partials...
I am getting a blank page, no errors, just a blank page.
I have 2 files...
reports/city_taxes_print.erb
reports/_city_taxes_print.erb
and my method is city_taxes_print and after getting variables from the
controller, my erb file which is fairly basic...
<% # City of Scottsdale
@taxauthids = [ "32", "40" ]
@report_title = "Scottsdale Sales Tax Detail Report for the Period
Ending " + @period.lastdate_in_period.strftime("%m-%d-%Y")
@taxes = Debtortranstaxes.find(:all, :conditions => ["trandate
BETWEEN :begin AND :end AND taxauthid...