import request from './request.js' /** * add */ // 管芯备货-查询管芯库存 export const showPapervehicleView = (area, code, qty) => request({ url:'api/pda/stockingivt/showPapervehicleView', data: { product_area: area, material_code: code, material_qty: qty } }) // 管芯备货-备货 export const moveStock = (data) => request({ url:'api/pda/stockingivt/moveStock', data: data }) // 管芯备货-区域下拉框 export const queryProductArea = () => request({ url:'api/pda/stockingivt/queryProductArea', data: {} }) // 管芯备货-管芯规格下拉框 export const queryPaperMaterial = () => request({ url:'api/pda/paper/queryPaperMaterial', data: {} }) /** * 分切下轴-确认下轴 */ export const downShafts = (device, code) => request({ url:'api/pda/slitter/downShafts', data: { device_code: device, container: code } }) /** * 分切上料-人工呼叫 */ export const feedinghandleConfirm = (obj) => request({ url:'api/pda/feeding/handleConfirm', data: { raw_jo: obj } }) // 木箱库-空木箱入库 export const boxIn = (pcode, vcode) => request({ url:'api/boxStackInOut/boxIn', data: { point_code: pcode, vehicle_code: vcode } }) // 木箱库-空木箱维护 export const updateWeight = (pcode, weight) => request({ url:'api/boxStackInOut/updateWeight', data: { point_code: pcode, 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: {} })