Files
hht-hl-three-uni/utils/getData1.js

34 lines
677 B
JavaScript
Raw Normal View History

2023-08-29 15:11:11 +08:00
import request from './request.js'
2023-08-31 17:31:20 +08:00
/**
2023-09-01 16:25:18 +08:00
* 半成品出库
2023-08-31 17:31:20 +08:00
*/
// 1.1半成品出库页面
export const iosOutgetIvt = (mspec) => request({
url:'api/pda/hrBcp/iosOut/getIvt',
data: {
material_spec: mspec
}
})
// 1.5出库确认(按钮) -- 多选
export const iosOutconfirm = (rows) => request({
url:'api/pda/hrBcp/iosOut/confirm',
rows: rows
})
/**
* 空箱出库
*/
// 1.1空箱出库页面
export const empOutgetIvt = (scode) => request({
url:'api/pda/hrBcp/empOut/getIvt',
data: {
storagevehicle_code: scode
}
})
// 1.5出库确认(按钮) -- 多选
export const empOutconfirm = (rows) => request({
url:'api/pda/hrBcp/empOut/confirm',
rows: rows
})