质保单上传整体结构

This commit is contained in:
砂糖
2025-08-02 13:38:04 +08:00
parent 8f900ceed9
commit d3656ef18b
12 changed files with 508 additions and 77 deletions

View File

@@ -82,7 +82,25 @@ export function updateStockIoStatus(stockIoId, status) {
})
}
/**
* 创建入库单,含明细
* 入库单主表:
* 单号stockIoCode
* 类型: ioType,
* 业务类型bizType,
* 状态status,
* 备注remark,
*
* 入库单明细:
* warehouseId: 仓库ID,
* itemType: 物料类型,
* itemId: 物料ID,
* quantity: 数量,
* unit: 单位,
* batchNo: 批次号,
* remark: 备注
*
*/
export function addStockIoWithDetail(data) {
return request({
url: '/wms/stockIo/withDetail',