软废无袋组桶标签打印修改

This commit is contained in:
蔡玲
2024-10-17 10:20:02 +08:00
parent 520d34a951
commit 7bba00c9aa
4 changed files with 343 additions and 18 deletions

15
src/config/getData3.js Normal file
View File

@@ -0,0 +1,15 @@
import {post} from '@config/http.js'
/** 软废组桶标签打印-新-2024/10/17 */
// 根据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
})