|
|
|
@ -1,31 +1,31 @@ |
|
|
|
import { createAPI } from "@/utils/httpRequest.js"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取其它入库单列表 |
|
|
|
* 获取其他入库单列表 |
|
|
|
* @param {Object} data - 查询参数 |
|
|
|
*/ |
|
|
|
export const getOtherInboundList = data => createAPI(`otherInbound/getInboundList`, 'post', data) |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取其它入库单详情 |
|
|
|
* 获取其他入库单详情 |
|
|
|
* @param {Object} data - 查询参数 |
|
|
|
*/ |
|
|
|
export const getOtherInboundDetails = data => createAPI(`otherInbound/getInboundDetails`, 'post', data) |
|
|
|
|
|
|
|
/** |
|
|
|
* 验证物料与其它入库单是否匹配(通过存储过程GetScanLabelVerification) |
|
|
|
* 验证物料与其他入库单是否匹配(通过存储过程GetScanLabelVerification) |
|
|
|
* @param {Object} data - 验证参数(包含documentType: '其他入库') |
|
|
|
*/ |
|
|
|
export const validateLabelWithOtherInbound = data => createAPI(`otherInbound/validateLabelWithOtherInbound`, 'post', data) |
|
|
|
|
|
|
|
/** |
|
|
|
* 确认其它入库(通过存储过程GetSaveLabelVerification) |
|
|
|
* 确认其他入库(通过存储过程GetSaveLabelVerification) |
|
|
|
* @param {Object} data - 入库数据(包含documentType: '其他入库') |
|
|
|
*/ |
|
|
|
export const confirmOtherInbound = data => createAPI(`otherInbound/confirmOtherInbound`, 'post', data) |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取其它入库单物料清单 |
|
|
|
* 获取其他入库单物料清单 |
|
|
|
* @param {Object} data - 查询参数 {site, buNo, inboundNo} |
|
|
|
*/ |
|
|
|
export const getMaterialList = data => createAPI(`otherInbound/getMaterialList`, 'post', data) |
|
|
|
|