Update payments_controller.rb

This commit is contained in:
2016-08-15 07:47:44 -04:00
committed by GitHub
parent 8a67cdf37c
commit 9f6103ad89

View File

@@ -17,7 +17,7 @@ class PaymentsController < ApplicationController
def new
@payment = Payment.new
@customers = Customer.all.sort :name
@customers = Customer.all.sort_by :name
@accounts = Qbo.get_base(:account).service.query("SELECT Id, Name FROM Account WHERE AccountType = 'Bank' Order By Name")