searchlogic icon indicating copy to clipboard operation
searchlogic copied to clipboard

table name ambiguity when including spaces

Open trevarthan opened this issue 12 years ago • 0 comments

I have the following named scope:

Shifts::Shift.cases_service_type_case_customer_referrer_last_name_like("Williams").count => 15

I also have this scope:

Shifts::Shift.cases_service_type_case_customer_name_like("Test").count => 2

customer is a table. customer_referrer is a table.

When I try this, it breaks:

Shifts::Shift.search( :cases_service_type_case_customer_referrer_last_name_like => "Williams", :order => :desce nd_by_cases_service_type_case_customer_referrer_last_name).count NoMethodError: undefined method descend_by_referrer_last_name' for #<Class:0x7f6c4651d560> from /home/jesse/bsm/ccn/vendor/plugins/searchlogic/lib/searchlogic/named_scopes/conditions.rb:88:inmethod_missing' from /home/jesse/bsm/ccn/vendor/plugins/searchlogic/lib/searchlogic/named_scopes/association_conditions.rb :19:in `method_missing'

Did you see what it did there? It looks like it sees 'customer_referrer' and interprets it as 'customer.referrer'.

Is there a work around for this sort of thing?

trevarthan avatar Oct 14 '11 21:10 trevarthan