Update payments_controller.rb

This commit is contained in:
2016-08-15 07:46:48 -04:00
committed by GitHub
parent 9b444d638b
commit 8a67cdf37c

View File

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