Hạn sử dụng sản phẩm

Request

curl --location 'https://pos.open.nhanh.vn/v3.0/product/expire?appId={{appId}}&businessId={{businessId}}' \
--header 'Authorization: {{accessToken}}' \
--header 'Content-Type: application/json'
--data '{
    "filters": {
        "billId": "ID hóa đơn"
    },
}'

Filters

Key
Type
Description

billId

int

ID hóa đơn xuất nhập kho

depotId

int

ID kho hàng

categoryId

int

ID danh mục của sản phẩm

internalCategoryId

int

ID danh mục nội bộ của sản phẩm

expiredDateFrom

string

Thời gian hết hạn từ, định dạng Y-m-d

expiredDateTo

string

Thời gian hết hạn đến, định dạng Y-m-d

daysWarningFrom

int

Số ngày cảnh báo trước từ

daysWarningTo

int

Số ngày cảnh báo trước đến

status

int

Trạng thái 1 = Active 2 = Inactive

Response

Failed response

Successful response

{
  "code": 1,
  "paginator": {
    "next": "Giá trị để lấy dữ liệu trang tiếp theo"
  },
  "data": [
    {
      "depot": {
        "id": "(int) ID kho hàng",
        "name": "(string) Tên kho hàng"
      },
      "product": {
        "id": "(int) ID sản phẩm",
        "name": "(string) Tên sản phẩm"
      },
      "billId": "(int) ID xuất nhập kho",
      "quantity": "(double) Số lượng",
      "expiredDate": "(string) Thời gian hết hạn, định dạng Y-m-d",
      "priorWarningDays": "(int) Số ngày cảnh báo trước",
      "status": "(int) Trạng thái"
    }
  ]
}

Last updated