Browse Source

修改检验显示

wms3.0_pda
lijuncheng 11 months ago
parent
commit
2cbf2353ad
  1. 20
      common/directory.js
  2. 2
      pages/index/index.vue
  3. 21
      pages/inspect/coms/inspectInfoPopup.vue
  4. 12
      pages/productionReturn/request/returnToStoreRequestSubmit.vue
  5. 2
      static/config.json

20
common/directory.js

@ -14,6 +14,7 @@ let scrapReasonList = [];
let inspectFailedReasonList = []; let inspectFailedReasonList = [];
let nextActionList = []; let nextActionList = [];
let inspectTypeList = []; let inspectTypeList = [];
let sampleMethodList = [];
// 获取业务类型字典项 // 获取业务类型字典项
@ -45,6 +46,7 @@ export function clearCacheData() {
inspectFailedReasonList = []; inspectFailedReasonList = [];
nextActionList = []; nextActionList = [];
inspectTypeList = []; inspectTypeList = [];
sampleMethodList =[]
} }
//获取字典信息 //获取字典信息
@ -385,4 +387,22 @@ export function getInspectType(value) {
} }
return resultInfo return resultInfo
} }
//获取抽检方式
export function getSampleMethod(value) {
var resultInfo = "";
if (sampleMethodList.length == 0) {
sampleMethodList = getDirectoryInfo("sample_method")
}
if (sampleMethodList.length > 0) {
for (let item of sampleMethodList) {
if (item.value == value) {
resultInfo = item.label
break;
}
}
}
return resultInfo
}

2
pages/index/index.vue

@ -272,7 +272,7 @@
types:["job_status","location_type","item_status","uom", types:["job_status","location_type","item_status","uom",
"inventory_status","container_type","pack_unit","unplanned_receipt_reason", "inventory_status","container_type","pack_unit","unplanned_receipt_reason",
"unplanned_issue_reason","scrap_reason","inspect_failed_reason", "unplanned_issue_reason","scrap_reason","inspect_failed_reason",
"request_status","inspect_type","next_action"] "request_status","inspect_type","next_action","sample_method"]
} }
getDictionaryItem(params).then(res => { getDictionaryItem(params).then(res => {
if (res.data.length > 0) { if (res.data.length > 0) {

21
pages/inspect/coms/inspectInfoPopup.vue

@ -38,7 +38,7 @@
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">检验类型 : </text> <text class="item_title">检验类型 : </text>
<text class="text_wrap">{{dataContent.inspectType}} </text> <text class="text_wrap">{{getInspectType(dataContent.inspectType)}} </text>
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">下一步检验动作 : </text> <text class="item_title">下一步检验动作 : </text>
@ -46,11 +46,11 @@
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">抽检方式 : </text> <text class="item_title">抽检方式 : </text>
<text class="text_wrap">{{dataContent.sampleMethod}} </text> <text class="text_wrap">{{getSampleMethod(dataContent.sampleMethod)}} </text>
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">计量单位 : </text> <text class="item_title">计量单位 : </text>
<text class="text_wrap">{{dataContent.uom}} </text> <text class="text_wrap">{{getUnitInfo(dataContent.uom)}} </text>
</view> </view>
<view class="item"> <view class="item">
<text class="item_title">收货数量 : </text> <text class="item_title">收货数量 : </text>
@ -70,6 +70,10 @@
<script> <script>
import jobCommonInfo from '@/mycomponents/job/jobCommonInfo.vue' import jobCommonInfo from '@/mycomponents/job/jobCommonInfo.vue'
import{getInspectType,
getSampleMethod,
getUnitInfo
} from "@/common/directory.js"
export default { export default {
components: { components: {
jobCommonInfo, jobCommonInfo,
@ -94,6 +98,17 @@
closePopup() { closePopup() {
this.$refs.popup.close() this.$refs.popup.close()
}, },
getInspectType(value){
return getInspectType(value);
},
getSampleMethod(value){
return getSampleMethod(value);
},
getUnitInfo(value){
var info = getUnitInfo(value)
return info.label;
},
} }
} }
</script> </script>

12
pages/productionReturn/request/returnToStoreRequestSubmit.vue

@ -23,7 +23,7 @@
<comMessage ref="comMessage"></comMessage> <comMessage ref="comMessage"></comMessage>
</view> </view>
</view> </view>
<comReturnRequestPopup ref="comIssueRequestPopup" @confirm='requestConfirm'></comReturnRequestPopup> <comReturnRequestPopup ref="comIssueRequestPopup" @confirm='requestConfirm' title="申请信息"></comReturnRequestPopup>
</template> </template>
<script> <script>
@ -106,7 +106,6 @@
itemCode: item.itemCode, itemCode: item.itemCode,
itemName: item.itemName, itemName: item.itemName,
inventoryStatus:"OK", inventoryStatus:"OK",
batch:"000000",
packingNumber:"", packingNumber:"",
fromLocationCode:item.rawLocationCode, fromLocationCode:item.rawLocationCode,
qty: item.qty, qty: item.qty,
@ -156,10 +155,15 @@
setParams() { setParams() {
if(this.fromType=="ReturnToStore"){ if(this.fromType=="ReturnToStore"){
this.detailSource.isOK = true this.detailSource.isOK = true
this.detailSource.subList.forEach(res => {
res.batch ="000000"
})
}else if(this.fromType=="ReturnToHold"){ }else if(this.fromType=="ReturnToHold"){
this.detailSource.isOK = false this.detailSource.isOK = false
}else { this.detailSource.subList.forEach(res => {
this.detailSource.isOK = false res.batch = ""
})
} }
return this.detailSource return this.detailSource
}, },

2
static/config.json

@ -18,7 +18,7 @@
"request_url": { "request_url": {
"name": "request_url", "name": "request_url",
"value": "http://192.168.0.178:12080/admin-api", "value": "http://192.168.0.230:12080/admin-api",
"dev2": "http://192.168.0.157:12080/admin-api", "dev2": "http://192.168.0.157:12080/admin-api",
"chefang": "http://192.168.0.178:12080/admin-api", "chefang": "http://192.168.0.178:12080/admin-api",
"chenxinming": "http://192.168.0.230:12080/admin-api", "chenxinming": "http://192.168.0.230:12080/admin-api",

Loading…
Cancel
Save