Explorar el Código

Fixed another DM.get error

pull/3/head
Adrian Short hace 14 años
padre
commit
08baca0f26
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      app.rb

+ 2
- 2
app.rb Ver fichero

@@ -100,7 +100,7 @@ end

get '/services/:slug/payments' do
@service = Service.first(:slug => params[:slug])
@payments = Payment.all(:service => @service, :amount.gte => 0, :order => [ 'd' ])
@payments = Payment.all(:service_id => @service.id, :amount.gte => 0, :order => [ 'd' ])
@total = @payments.sum(:amount)
haml :servicepayments
end
@@ -111,7 +111,7 @@ get '/services/:slug/paymentsdetail' do
if params[:min].to_i > 0
min = params[:min].to_i
end
@payments = Payment.all(:service => @service, :amount.gte => min, :order => [ 'd' ])
@payments = Payment.all(:service_id => @service.id, :amount.gte => min, :order => [ 'd' ])
@total = @payments.sum(:amount)
haml :servicepaymentsdetail, :layout => false
end


Cargando…
Cancelar
Guardar