You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.2 KiB
25 lines
1.2 KiB
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// ================== 标签特殊信息修改 - rqrq ==================
|
|
|
|
// 分页查询标签列表 - rqrq
|
|
export const searchHandlingUnitList = data => createAPI('/warehouse/handlingunit/list', 'POST', data)
|
|
|
|
// 获取标签详细信息 - rqrq
|
|
export const getHandlingUnitDetail = data => createAPI('/warehouse/handlingunit/detail', 'POST', data)
|
|
|
|
// 修改标签特殊信息 - rqrq
|
|
export const updateHandlingUnitSpecial = data => createAPI('/warehouse/handlingunit/updateSpecial', 'POST', data)
|
|
|
|
// 批量修改标签特殊信息 - rqrq
|
|
export const batchUpdateHandlingUnitSpecial = data => createAPI('/warehouse/handlingunit/batchUpdateSpecial', 'POST', data)
|
|
|
|
// 批量修改Availability Control ID(调用IFS接口同步)- rqrq
|
|
export const batchChangeAvailabilityControlId = data => createAPI('/warehouse/handlingunit/batchChangeAvailabilityControlId', 'POST', data)
|
|
|
|
// 批量修改失效日期(调用IFS接口同步)- rqrq
|
|
export const batchChangeExpiryDate = data => createAPI('/warehouse/handlingunit/batchChangeExpiryDate', 'POST', data)
|
|
|
|
// 批量修改WDR(调用IFS接口同步)- rqrq
|
|
export const batchChangeWdr = data => createAPI('/warehouse/handlingunit/batchChangeWdr', 'POST', data)
|
|
|