class Origami::CashInsController < BaseOrigamiController def new end def create reference = params[:reference] remark = params[:remark] amount = params[:amount] payment_method = params[:payment_method] payment_method_reference = params[:payment_method_reference] type = params[:type] p_jour = PaymentJournal.new p_jour.cash_in(reference, remark, amount, payment_method, payment_method_reference, current_user) shift = ShiftSale.current_open_shift(current_user) current_shift = ShiftSale.current_shift # set cashier if shift != nil shift = shift else open_cashier = Employee.where("role = 'cashier' AND token_session <> ''") if open_cashier.count>0 shift = ShiftSale.current_open_shift(open_cashier[0]) if shift emp = Employee.find_by_id(shift.employee_id) shift = ShiftSale.current_open_shift(emp) else shift = ShiftSale.current_open_shift(current_shift) end else # shift = Employee.find(current_shift.employee_id).name shift =current_shift end end shift.cash_in = shift.cash_in + amount.to_f shift.save end end