diff --git a/fe/PDA/api/index.js b/fe/PDA/api/index.js index a511538df..dcfbb957b 100644 --- a/fe/PDA/api/index.js +++ b/fe/PDA/api/index.js @@ -208,6 +208,14 @@ export const getitems = (code) => request( method: 'get', data: code }); + +// +//查询单件码 通过单件码查询零件号信息 +export const getMesBarCode = (mesBarCode) => request( + devUrl + "/api/pda/store/product-receipt/get-itemcode-by-mesbarcode?mesBarCode=" + mesBarCode, { + method: 'post', + data: {} + }); //根据库位查询零件 export const getItemsByLocation = (params) => promise( diff --git a/fe/PDA/mycomponents/comjob/comJobScanDetail.vue b/fe/PDA/mycomponents/comjob/comJobScanDetail.vue index df40c4cf5..93354b9f1 100644 --- a/fe/PDA/mycomponents/comjob/comJobScanDetail.vue +++ b/fe/PDA/mycomponents/comjob/comJobScanDetail.vue @@ -10,13 +10,21 @@ --> - 总数量 + {{allCountHint}} {{ allCount}} {{scanHint}} {{ scanCount}} + + 未发数量 + {{ allCount-scanCount}} + + + 收容数 + {{shouRongCount}} + @@ -38,6 +46,7 @@ type: Object, default: {} }, + allCount: { type: Number, default: 0 @@ -46,6 +55,14 @@ type: Number, default: 0 }, + shouRongCount: { + type: Number, + default: null + }, + allCountHint: { + type: String, + default: "总数量" + }, scanHint: { type: String, default: "已扫描" @@ -53,6 +70,14 @@ isShowScanHint:{ type: Boolean, default: true + }, + isShowOther:{ + type: Boolean, + default: false + }, + isShowShouRong:{ + type: Boolean, + default: false } }, data() { diff --git a/fe/PDA/mycomponents/coms/task/comKittingIssue.vue b/fe/PDA/mycomponents/coms/task/comKittingIssue.vue index ae43ac8d9..3b39cc3fb 100644 --- a/fe/PDA/mycomponents/coms/task/comKittingIssue.vue +++ b/fe/PDA/mycomponents/coms/task/comKittingIssue.vue @@ -13,6 +13,18 @@ {{dataContent.kittingRequestNumber}} + + 类型 : 按数量发料 + + + + 类型 : 按箱发料 + + + + 操作人 : {{dataContent.worker}} + + + + + + + + + + + + diff --git a/fe/PDA/pages/task/unProducePickWipDetail.vue b/fe/PDA/pages/task/unProducePickWipDetail.vue new file mode 100644 index 000000000..061291662 --- /dev/null +++ b/fe/PDA/pages/task/unProducePickWipDetail.vue @@ -0,0 +1,429 @@ + + + + + + \ No newline at end of file diff --git a/fe/PDA/pages/task/unProduceReturn.vue b/fe/PDA/pages/task/unProduceReturn.vue index 7eb51e6d8..c85abc886 100644 --- a/fe/PDA/pages/task/unProduceReturn.vue +++ b/fe/PDA/pages/task/unProduceReturn.vue @@ -8,7 +8,7 @@ - + @@ -110,7 +110,8 @@ pageSize: that.pageSize, pageIndex: that.pageIndex, isCreationTimeSorting: that.isIssueTimeChange, - isToday: that.isToday + isToday: that.isToday, + enumUnplannedReceiptType:1 }; getUnProduceReturnList(params) .then(res => { diff --git a/fe/PDA/pages/task/unProduceReturnDetail.vue b/fe/PDA/pages/task/unProduceReturnDetail.vue index a178dd071..9fc2809d8 100644 --- a/fe/PDA/pages/task/unProduceReturnDetail.vue +++ b/fe/PDA/pages/task/unProduceReturnDetail.vue @@ -114,7 +114,6 @@ takeIssueJob, cancelTakeIssueJob, finshUnProduceReturnJob, - getBalancesByFilter } from '@/api/index.js'; import { getJobStatuStyle, diff --git a/fe/PDA/pages/task/unProduceReturnWip.vue b/fe/PDA/pages/task/unProduceReturnWip.vue new file mode 100644 index 000000000..e9212830e --- /dev/null +++ b/fe/PDA/pages/task/unProduceReturnWip.vue @@ -0,0 +1,178 @@ + + + + diff --git a/fe/PDA/pages/task/unProduceReturnWipDetail.vue b/fe/PDA/pages/task/unProduceReturnWipDetail.vue new file mode 100644 index 000000000..2f2afced5 --- /dev/null +++ b/fe/PDA/pages/task/unProduceReturnWipDetail.vue @@ -0,0 +1,429 @@ + + + + + + \ No newline at end of file