Files
hht-ynhl-one-uni/utils/getData4.js

78 lines
1.7 KiB
JavaScript
Raw Normal View History

2025-05-30 10:03:32 +08:00
import request from './request.js'
/**
* add
*/
// 管芯备货-查询管芯库存
2025-07-01 14:47:32 +08:00
export const showPapervehicleView = (area, code, qty) => request({
2025-05-30 10:03:32 +08:00
url:'api/pda/stockingivt/showPapervehicleView',
data: {
product_area: area,
material_code: code,
2025-07-01 14:47:32 +08:00
material_qty: qty
2025-05-30 10:03:32 +08:00
}
})
// 管芯备货-备货
2025-07-01 16:26:53 +08:00
export const moveStock = (data) => request({
2025-05-30 10:03:32 +08:00
url:'api/pda/stockingivt/moveStock',
2025-07-01 16:26:53 +08:00
data: data
2025-05-30 10:03:32 +08:00
})
// 管芯备货-区域下拉框
export const queryProductArea = () => request({
url:'api/pda/stockingivt/queryProductArea',
data: {}
})
// 管芯备货-管芯规格下拉框
export const queryPaperMaterial = () => request({
url:'api/pda/paper/queryPaperMaterial',
data: {}
})
2025-06-19 16:25:34 +08:00
/**
* 分切下轴-确认下轴
*/
export const downShafts = (device, code) => request({
url:'api/pda/slitter/downShafts',
data: {
device_code: device,
container: code
}
2025-06-24 16:51:01 +08:00
})
/**
* 分切上料-人工呼叫
*/
export const feedinghandleConfirm = (obj) => request({
url:'api/pda/feeding/handleConfirm',
data: {
raw_jo: obj
}
})
2025-07-30 13:22:17 +08:00
// 木箱库-空木箱入库
export const boxIn = (pcode, vcode) => request({
url:'api/boxStackInOut/boxIn',
data: {
point_code: pcode,
vehicle_code: vcode
}
})
// 木箱库-空木箱维护
2025-08-01 17:20:58 +08:00
export const updateWeight = (vcode, weight) => request({
2025-07-30 13:22:17 +08:00
url:'api/boxStackInOut/updateWeight',
data: {
2025-08-01 17:20:58 +08:00
vehicle_code: vcode,
2025-07-30 13:22:17 +08:00
weight: weight
}
})
// 木箱库-点位维护
export const updatePoint = (pcode, mcode, vcode) => request({
url:'api/boxStackInOut/updatePoint',
data: {
point_code: pcode,
material_code: mcode,
vehicle_code: vcode
}
})
// 木箱库-查询木箱物料信息
export const getBoxSpecInfo = (pcode, mcode, vcode) => request({
url:'api/boxStackInOut/getBoxSpecInfo',
data: {}
})