diff --git a/app/assets/stylesheets/origami.scss b/app/assets/stylesheets/origami.scss index 9f7de6dd..e097b448 100755 --- a/app/assets/stylesheets/origami.scss +++ b/app/assets/stylesheets/origami.scss @@ -59,11 +59,13 @@ select.form-control { padding: 0px 0px 7px 0px; } +/* .order-info { min-height:300px; max-height:500px; overflow:auto } +*/ .others-payment{ line-height:100px; diff --git a/app/controllers/transactions/bookings_controller.rb b/app/controllers/transactions/bookings_controller.rb index 66418caa..3b8e241e 100644 --- a/app/controllers/transactions/bookings_controller.rb +++ b/app/controllers/transactions/bookings_controller.rb @@ -20,7 +20,9 @@ class Transactions::BookingsController < ApplicationController @bookings = 0 end end - + @receipt_no = filter + @from = from + @to = to respond_to do |format| format.html # index.html.erb format.json { render json: @bookings } diff --git a/app/controllers/transactions/credit_notes_controller.rb b/app/controllers/transactions/credit_notes_controller.rb index e28b5331..09f48d66 100755 --- a/app/controllers/transactions/credit_notes_controller.rb +++ b/app/controllers/transactions/credit_notes_controller.rb @@ -14,20 +14,21 @@ class Transactions::CreditNotesController < ApplicationController to = params[:to] if filter.nil? && from.nil? && to.nil? && customer.nil? - @sales = Sale.where('payment_status = ?', Sale::SALE_STATUS_OUTSTANDING) + @credit_notes = Sale.where('payment_status = ?', Sale::SALE_STATUS_OUTSTANDING) else sale = Sale.search_credit_sales(customer,filter,from,to) if sale.count > 0 - @sales = sale - @sales = Kaminari.paginate_array(@sales).page(params[:page]).per(20) + @credit_notes = sale + @credit_notes = Kaminari.paginate_array(@credit_notes).page(params[:page]).per(20) else - @sales = 0 + @credit_notes = 0 end end - +puts "sssssssssssss" +puts @credit_notes.to_json respond_to do |format| format.html # index.html.erb - format.json { render json: @sales } + format.json { render json: @credit_notes } end end diff --git a/app/controllers/transactions/orders_controller.rb b/app/controllers/transactions/orders_controller.rb index 496d43cd..7bc1e969 100755 --- a/app/controllers/transactions/orders_controller.rb +++ b/app/controllers/transactions/orders_controller.rb @@ -20,6 +20,10 @@ class Transactions::OrdersController < ApplicationController else @orders = [] end + + @receipt_no = filter + @from = from + @to = to respond_to do |format| format.html # index.html.erb diff --git a/app/controllers/transactions/sales_controller.rb b/app/controllers/transactions/sales_controller.rb index 8486d9ca..fafc89f3 100755 --- a/app/controllers/transactions/sales_controller.rb +++ b/app/controllers/transactions/sales_controller.rb @@ -22,6 +22,9 @@ class Transactions::SalesController < ApplicationController @sales = 0 end end + @receipt_no = receipt_no + @from = from + @to = to # if receipt_no.nil? && search_date.nil? # @sales = Sale.where("NOT sale_status = 'void' " ).order("sale_id desc").limit(500) diff --git a/app/views/origami/surveys/_form.html.erb b/app/views/origami/surveys/_form.html.erb index 321ec745..b5e9e8e4 100755 --- a/app/views/origami/surveys/_form.html.erb +++ b/app/views/origami/surveys/_form.html.erb @@ -1,57 +1,118 @@