로그인이 필요합니다.
클라우드 서비스 보급·확산 사업 공급기업 선정! 이용료 최대 80% 지원

개발가이드(ver2.0)

출고회차 개요

회차별로 출고지시내린 출고 건을 출고회차 조회하거나 피킹리스트로 피킹할 상품을 조회할 수 있습니다.
출고회차 조회는 회차별로 출고가 얼마나 진행됐는지 조회할 때 이용합니다.
피킹리스트 조회는 회차별로 처리 할 상품정보를 조회할 때 이용합니다.
출고회차는 물류사만 접근가능하므로, 고객사는 이용할 수 없습니다.

사방넷 풀필먼트 매뉴얼 : 출고회차별조회 바로가기 ▶

지원 method

출고회차 기본 Object 구조

데이터필드 자료형 설명
shipping_order_info_id integer 출고지시 ID
member_id integer 고객사 ID

해당 회차에 포함된 고객사 ID를 콤마(,)로 구분하여 표시
예) 1, 2, 3

order_date string(8) 출고지시일

YYYYMMDD 형식

order_seq integer 출고회차
interconnect_shipping integer 택배 연동 여부

1.사용, 0.미사용
해당 회차에 택배접수를 사용한지 여부에 상관없이, 사방넷 풀필먼트에 택배연동한 경우 1.사용으로 표시함

delivery_agency_id integer 택배사 ID

택배사 참고

interconnect_work_uid integer 택배연동 접수 정보 ID

- 택배접수를 이용해 접수한 경우 : 작업 ID
- 택배접수를 이용하지 않은 경우 : 0

error_cnt integer 오류 건수
picking_id integer 피킹담당자 member_id
order_cnt integer 출고지시 개수
work_cnt integer 출고 작업중 개수
complete_cnt integer 출고 완료 개수
order_time string(20) 출고지시 시간

HH:MM(시:분) 형식

work_start_time string(20) 작업시작 시간

HH:MM(시:분) 형식

work_end_time string(20) 작업 완료 시간

HH:MM(시:분) 형식

work_time string(20) 소요 시간

HH:MM(시:분) 형식

add_barcode_object 구조

데이터필드 자료형 설명
barcode string(100) 바코드
quantity integer 매칭 수량

출고회차 조회(벌크)

Request URI /v2/release/shipping_work
Method GET
권한 물류사

Request Param

데이터필드 자료형 설명
order_date string(8) 작업지시일

필수, YYYYMMDD 형식

member_id integer 고객사 ID
page integer 페이지번호

Response Param

데이터필드 자료형 설명
code string(4) 응답코드
message string(100) 응답메시지
response total_count integer 전체 갯수
total_page integer 전체 페이지수
current_page integer 현재 페이지 번호
data_list

처리 데이터 리스트

dataList 출고회차 기본 Object 구성 ▶

Request Sample

/v2/release/shipping_work?member_id=70&order_date=20220110&page=1

Response Sample

{
    "code": "9999",
    "message": "ok",
    "response": {
        "total_count": 3,
        "total_page": 1,
        "current_page": 1,
        "data_list": [
            {
                "shipping_order_info_id": "3193",
                "member_id": "4,70",
                "order_date": "20220621",
                "order_seq": "1",
                "interconnect_shipping": 1,
                "delivery_agency_id": "",
                "picking_id": "",
                "order_cnt": "2",
                "work_cnt": "0",
                "complete_cnt": "0",
                "order_time": "15:51",
                "work_start_time": "",
                "work_end_time": "",
                "work_time": "",
                "interconnect_work_uid": 2542,
                "error_cnt": 0
            },
            {
                "shipping_order_info_id": "3194",
                "member_id": "4,70",
                "order_date": "20220621",
                "order_seq": "2",
                "interconnect_shipping": 1,
                "delivery_agency_id": "1",
                "picking_id": "",
                "order_cnt": "0",
                "work_cnt": "2",
                "complete_cnt": "0",
                "order_time": "15:53",
                "work_start_time": "15:53",
                "work_end_time": "",
                "work_time": "",
                "interconnect_work_uid": 2543,
                "error_cnt": 0
            },
            {
                "shipping_order_info_id": "3195",
                "member_id": "4",
                "order_date": "20220621",
                "order_seq": "3",
                "interconnect_shipping": 1,
                "delivery_agency_id": "",
                "picking_id": "",
                "order_cnt": "1",
                "work_cnt": "0",
                "complete_cnt": "0",
                "order_time": "17:05",
                "work_start_time": "",
                "work_end_time": "",
                "work_time": "",
                "interconnect_work_uid": 2544,
                "error_cnt": 0
            }
        ]
    }
}

피킹리스트 조회(벌크)

Request URI /v2/release/picking_list/{출고지시ID}
Method GET
권한 물류사 전용

Request Param

데이터필드 자료형 설명
page integer 페이지번호

Response Param

데이터필드 자료형 설명
code string(4) 응답코드
message string(100) 응답메시지
response total_count integer 전체 갯수
total_page integer 전체 페이지수
current_page integer 현재 페이지 번호
data_list

처리 데이터 리스트

shipping_order_info_id integer 출고지시 ID
shipping_order_name string(30) 회차명

날짜 + 회차

shipping_product_id integer 출고상품 ID
product_code string(20) 출고상품코드
product_name string(100) 출고상품명
upc string(50) 대표바코드
location_id integer 로케이션 ID
location_name string(20) 로케이션명
expire_date string(8) 유통기한

YYYYMMDD 형식

quantity integer 수량
add_barcode_list childDataObject add_barcode_object 구성 ▶

추가바코드 리스트

Request Sample

/v2/release/picking_list/2608?page=1

Response Sample

{
  "code": "9999",
  "message": "ok",
  "response": {
    "total_count": 11,
    "total_page": 2,
    "current_page": 1,
    "data_list": [
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43778",
        "product_code": "006",
        "product_name": "소고기라면",
        "upc": "687848455111",
        "location_id": "28",
        "location_name": "001-01",
        "expire_date": "",
        "quantity": 6,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "878444444"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43771",
        "product_code": "005",
        "product_name": "마우스 키보드 세트",
        "upc": "8754545211",
        "location_id": "28",
        "location_name": "001-01",
        "expire_date": "",
        "quantity": 8,
        "add_barcode_list": []
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43770",
        "product_code": "CO_100",
        "product_name": "소고기볶음밥",
        "upc": "UPC888090642",
        "location_id": "28",
        "location_name": "001-01",
        "expire_date": "",
        "quantity": 4,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "87848444"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43797",
        "product_code": "012",
        "product_name": "새우볶음밥",
        "upc": "687848455111",
        "location_id": "28",
        "location_name": "001-01",
        "expire_date": "",
        "quantity": 4,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "878444444"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43795",
        "product_code": "010",
        "product_name": "전복죽",
        "upc": "687848455111",
        "location_id": "28",
        "location_name": "001-01",
        "expire_date": "",
        "quantity": 4,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "878444444"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43778",
        "product_code": "006",
        "product_name": "야채볶음밥",
        "upc": "687848455111",
        "location_id": "10",
        "location_name": "100-01",
        "expire_date": "20221230",
        "quantity": 2,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "878444444"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "43794",
        "product_code": "009",
        "product_name": "마우스패드",
        "upc": "687848455112",
        "location_id": "10",
        "location_name": "100-01",
        "expire_date": "",
        "quantity": 4,
        "add_barcode_list": []
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "41668",
        "product_code": "G00400021",
        "product_name": "낙지볶음밥",
        "upc": "00000112202",
        "location_id": "10",
        "location_name": "100-01",
        "expire_date": "",
        "quantity": 7,
        "add_barcode_list": [
          {
            "quantity": "1",
            "barcode": "411115541"
          },
          {
            "quantity": "1",
            "barcode": "T_T힝힝"
          },
          {
            "quantity": "1",
            "barcode": "00000001a"
          },
          {
            "quantity": "1",
            "barcode": "asdTs0123"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "41669",
        "product_code": "G00400002",
        "product_name": "소고기낙지볶음밥",
        "upc": "000112228",
        "location_id": "62",
        "location_name": "A-01010101",
        "expire_date": "",
        "quantity": 3,
        "add_barcode_list": [
          {
            "quantity": "10",
            "barcode": "888090631"
          },
          {
            "quantity": "1",
            "barcode": "888090632"
          },
          {
            "quantity": "2",
            "barcode": "888090643"
          },
          {
            "quantity": "1",
            "barcode": "01545451213"
          },
          {
            "quantity": "1",
            "barcode": "12120312452"
          }
        ]
      },
      {
        "shipping_order_info_id": 2608,
        "shipping_order_name": "2022-01-11 / 7회차",
        "shipping_product_id": "41667",
        "product_code": "003",
        "product_name": "야채죽",
        "upc": "888090641",
        "location_id": "2",
        "location_name": "출고가능 기본존",
        "expire_date": "20220131",
        "quantity": 7,
        "add_barcode_list": [
          {
            "quantity": "10",
            "barcode": "888090643"
          },
          {
            "quantity": "10",
            "barcode": "888090642"
          },
          {
            "quantity": "1",
            "barcode": "01545451211"
          },
          {
            "quantity": "1",
            "barcode": "12120312451"
          },
          {
            "quantity": "1",
            "barcode": "00000001"
          }
        ]
      }
    ]
  }
}
Top