Files
hht-xinrui-mes/src/config/getData3.js

24 lines
905 B
JavaScript
Raw Normal View History

2024-10-17 10:20:02 +08:00
import {post} from '@config/http.js'
2024-10-31 18:11:24 +08:00
/** 软废无袋组桶标签打印-新-2024/10/17 */
2024-10-17 10:20:02 +08:00
// 根据ERP编码查询MES编码
export const queryErpId = (code) => post('api/pda/set/bucketNotbag/queryErpId', {
material_code: code
})
// 软废无袋组桶标签打印-确定组桶(点击确定组桶按钮)
export const confirmGroupBucketNo = (mst) => post('api/pda/set/bucketNotbag/confirmGroupBucket', {
mst: mst
})
// 软废无袋组桶标签打印-确定组桶打印(点击确定组桶按钮)
export const bucketPrintNo = (code) => post('api/pda/set/bucketNotbag/print', {
bucketunique: code
})
2024-10-31 18:11:24 +08:00
/** 矿用软废组桶-2024/10/31 */
// 1.3根据袋码码查询信息(扫描袋码触发的后台查询请求)--->变更为扫二维码掉后台
export const bucketCheckCode = (code, bk, pcsn) => post('api/pda/set/bucket/checkCode', {
code_info: code,
bucketunique: bk,
pcsn: pcsn
})