def create
    if FixityCheck.find_by_fixity_check_id(params[:fixity_check_id]).present?
      render nothing: true, status: 409 and return
    else
      @fixity_check = FixityCheck.new(create_params(params))