矿用软废组桶

This commit is contained in:
蔡玲
2024-10-31 18:11:24 +08:00
parent 5afd1bc1db
commit ab748b7771
3 changed files with 420 additions and 1 deletions

View File

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