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.
13 lines
546 B
13 lines
546 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// 分页查询库存信息
|
|
export const getInventoryStockList = data => createAPI(`ifsInventoryInit/getInventoryStockList`, 'POST', data)
|
|
|
|
// 创建HandlingUnit
|
|
export const createHandlingUnits = data => createAPI(`ifsInventoryInit/createHandlingUnits`, 'POST', data)
|
|
|
|
// 打印标签
|
|
export const printLabel = data => createAPI('/label/setting/printLabel','post',data)
|
|
|
|
// 修改已打印数量
|
|
export const updatePrintQty = data => createAPI(`ifsInventoryInit/updatePrintQty`, 'POST', data)
|