class Origami::InDutiesController < BaseOrigamiController before_action :set_in_duty, only: %i[show edit update edit_in_duty update_for_in_duty destroy destroy_in_duty] def index_in_duty @booking_id = params[:booking_id] booking = Booking.where("booking_id=?",@booking_id).first @duty_in = InDuty.where('dinning_id=? and booking_id=?', booking.dining_facility_id, @booking_id) @table = DiningFacility.find(booking.dining_facility_id) @in_duty = InDuty.new @duties_in = Kaminari.paginate_array(@duty_in).page(params[:page]).per(10) end # GET /in_duties/1 # GET /in_duties/1.json def show; end # GET /in_duties/new def new # this one use for new @in_duty = InDuty.new @table = DiningFacility.find(params[:table_id]) @commissioner = @in_duty.commissioner render partial: 'form' end # GET /in_duties/1/edit def edit; end def edit_in_duty @in_duty = InDuty.find(params[:id]) booking = Booking.where("booking_id=?",@in_duty.booking_id).first @booking_id = booking.booking_id @table = DiningFacility.find(booking.dining_facility_id) @commissioner = @in_duty.commissioner render json: {in_duty: @in_duty, commissioner: @commissioner} # render partial: 'form' end def assign_in_duty @in_duty = InDuty.new @table = DiningFacility.find(params[:table_id]) end # POST /in_duties # POST /in_duties.json def create_for_in_duty # this one use for create and update in_duty = in_duty_params @in_duty = InDuty.new in_duty_id = in_duty[:id] unless in_duty_id.empty? @in_duty = InDuty.find(in_duty_id.to_i) end data = InDuty.find_by_booking_id(in_duty_params[:booking_id]) if !data.nil? if !data.sale_id.nil? @in_duty.sale_id = data.sale_id end end @in_duty.dinning_id = in_duty_params[:dinning_id] @in_duty.booking_id = in_duty_params[:booking_id] @in_duty.commissioner_ids = in_duty_params[:commissioner_ids] @in_duty.in_time = in_duty['in_time'] @in_duty.out_time = in_duty['out_time'] respond_to do |format| if @in_duty.save if in_duty_id.nil? format.html { redirect_to origami_index_in_duty_path, notice: 'In duty was successfully created.' } format.json { render :show, status: :created, location: @in_duty } else format.html { redirect_to origami_index_in_duty_path, notice: 'In duty was successfully updated.' } format.json { render :show, status: :created, location: @in_duty } end else format.html { render :new } format.json { render json: @in_duty.errors, status: :unprocessable_entity } end end end # PATCH/PUT /in_duties/1 # PATCH/PUT /in_duties/1.json def update_for_in_duty in_duty = in_duty_params # in_time = DateTime.new in_duty['in_time(1i)'].to_i, in_duty['in_time(2i)'].to_i, in_duty['in_time(3i)'].to_i, in_duty['in_time(4i)'].to_i, in_duty['in_time(5i)'].to_i # in_time = in_time.change(offset: '+06:30') # out_time = DateTime.new in_duty['out_time(1i)'].to_i, in_duty['out_time(2i)'].to_i, in_duty['out_time(3i)'].to_i, in_duty['out_time(4i)'].to_i, in_duty['out_time(5i)'].to_i # out_time = out_time.change(offset: '+06:30') @in_duty.commissioner_ids = in_duty_params[:commissioner_ids] @in_duty.in_time = in_duty_params[:in_time] @in_duty.out_time = in_duty_params[:out_time] respond_to do |format| if @in_duty.save format.html { redirect_to origami_index_in_duty_path(in_duty_params[:booking_id]), notice: 'In duty was successfully updated.' } format.json { render :show, status: :ok, location: @in_duty } else format.html { render :edit } format.json { render json: @in_duty.errors, status: :unprocessable_entity } end end end # DELETE /in_duties/1 # DELETE /in_duties/1.json def destroy_in_duty @table_id = params[:table_id] @booking_id = params[:booking_id] booking = Booking.where("booking_id=?",@booking_id).first @in_duty.destroy flash[:notice] = 'In duty was successfully destroyed.' render :json => {:status=> "Success", :url => origami_index_in_duty_path }.to_json end private # Use callbacks to share common setup or constraints between actions. def set_in_duty @in_duty = InDuty.find(params[:id]) end # Never trust parameters from the scary internet, only allow the white list through. def in_duty_params params.require(:in_duty).permit(:id, :dinning_id, :booking_id, :commissioner_ids, :in_time, :out_time) end end