0
我在我的視圖中顯示查詢的結果,此查詢使用兩個不同的表和數據搜索我使用ransack gem執行搜索,但它顯示我在搜索中出現以下錯誤形式:使用搜索寶石搜索
ActionView::Template::Error (undefined method `Producto_cont' for Ransack::Search<class: Stoc, base: Grouping <combinator: and>>:Ransack::Search):
字段「PRODUCTO」我從所謂的「PRODUCTOS」另一個表中獲取它,它是查詢的結果,那隻能說明我與另外一個,我等領域的錯誤在查詢中,而不是與我所調用的方法相同,即「Stoc」
這是我的方法控制器:
@search = Stoc.productos_de_un_stock(params).search(search_params)
@search.sorts = 'Stock desc' if @search.sorts.empty?
@stock = @search.result().page(params[:stock]).per(15)
這是我的查詢:
def self.productos_de_un_stock(params)
query = select("[stock].IdStock, [stock].Stock, [productos].Clave AS Clave_producto, [productos].Producto, [productosxpzas].PzaXCja AS PzaXCja")
.joins('inner join productos ON stock.Articulo = productos.Clave inner join productosxpzas ON productos.Clave = productosxpzas.Producto')
.where('stock.Ruta = ? AND stock.IdEmpresa = ?', (params[:search]), (params[:search6]))
query
end
這是我的搜索形式:
<%= search_form_for @search, :remote=>"true", url: busqueda_stock_path, :method => :get do |f| %>
<div class="rwd">
<table class="table table-striped table-bordered table-condensed table-hover rwd_auto">
<thead>
<tr>
<th class="component_name_header_col"><%= sort_link @search, :Articulo, "Clave","stoc", {}, { :remote => true, :method => :get } %></th>
<th class="action_col"><%= t("basic.action") %></th>
</tr>
<tr>
<th><%= f.text_field :Articulo_cont, class:"campo" %></th>
<%= f.search_field :Producto_cont %>
<input id="search" type="hidden" value="<%=params[:search] %>" name="search"/>
<input id="search6" type="hidden" value="<%=params[:search6] %>" name="search6"/>
<th><%= f.submit "Buscar" %></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<% end %>
謝謝你的迴應,非常感謝你的例子,我理解你的觀點,但如果我想從查詢中獲取數據,請選擇字段被重命名爲「AS」 ?例如,從這部分:: select(「[rutas] .Ruta AS ruta,[clientes] .IdCli AS Cliente」) – luis31