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.
22 lines
981 B
22 lines
981 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)
|
|
|
|
// 批量创建HandlingUnit
|
|
export const batchCreateHandlingUnits = data => createAPI(`ifsInventoryInit/batchCreateHandlingUnits`, 'POST', data)
|
|
|
|
// 打印标签
|
|
export const printLabel = data => createAPI('/label/setting/printLabel','post',data)
|
|
|
|
// 修改已打印数量
|
|
export const updatePrintQty = data => createAPI(`ifsInventoryInit/updatePrintQty`, 'POST', data)
|
|
|
|
// 导入IFS库存Excel
|
|
export const uploadIfsInventoryExcel = data => createAPI(`ifsInventoryInit/uploadIfsInventoryExcel`, 'POST', data)
|
|
|
|
// 根据站点和料号查询料件属性详情
|
|
export const getPartAttributeInfo = data => createAPI('/factory/partAttribute/info', 'get', data)
|