Browse Source

Merge branch 'dev_web' of http://dev.ccwin-in.com:3000/BoXu.Zheng/WZC2 into dev_web

dev_web_online
安虹睿 2 years ago
parent
commit
ed7c4a1326
  1. 2
      fe/PC/src/utils/detailsTableColumns/index.js
  2. 2
      fe/PC/src/views/rawMaterialManage/purchaseReturn/returnJob.vue
  3. 22
      fe/PC/src/views/rawMaterialManage/quality/InspectRequest.vue

2
fe/PC/src/utils/detailsTableColumns/index.js

@ -218,7 +218,6 @@ export const InspectRequest = [
{ label: "收货数量", prop: "receiveQty" }, { label: "收货数量", prop: "receiveQty" },
{ label: "生产批次", prop: "lot" }, { label: "生产批次", prop: "lot" },
{ label: "箱码", prop: "packingCode" }, { label: "箱码", prop: "packingCode" },
{ label: "状态", prop: "status", type: "tagFilter", filters: "requestStatus" },
{ label: "检验状态", prop: "detailInspectStatus", type: "filter", filters: "detailInspectStatus" }, { label: "检验状态", prop: "detailInspectStatus", type: "filter", filters: "detailInspectStatus" },
{ label: "库位", prop: 'locationCode' }, { label: "库位", prop: 'locationCode' },
{ label: "ERP库位", prop: 'locationErpCode' }, { label: "ERP库位", prop: 'locationErpCode' },
@ -258,6 +257,7 @@ export const InspectRequest = [
{ label: "尺寸", prop: 'volume' }, { label: "尺寸", prop: 'volume' },
{ label: "重量", prop: 'weight' }, { label: "重量", prop: 'weight' },
{ label: "其他属性", prop: 'otherPropertyJson' }, { label: "其他属性", prop: 'otherPropertyJson' },
// { label: "状态", prop: "status", type: "tagFilter", filters: "requestStatus" },
// { label: "检验人姓名", prop: 'inspectUserName' }, // { label: "检验人姓名", prop: 'inspectUserName' },
// { label: "检验人电话", prop: 'inspectUserPhone' }, // { label: "检验人电话", prop: 'inspectUserPhone' },
// { label: "检验人邮件", prop: 'inspectUserEmail' }, // { label: "检验人邮件", prop: 'inspectUserEmail' },

2
fe/PC/src/views/rawMaterialManage/purchaseReturn/returnJob.vue

@ -91,7 +91,7 @@ export default {
}, },
data () { data () {
return { return {
URL: 'wms/job/purchase-return-job', URL: 'wms/store/purchase-return-job',
// //
currenButtonData: [ currenButtonData: [
this.defaultFieldSettingBtn(),// this.defaultFieldSettingBtn(),//

22
fe/PC/src/views/rawMaterialManage/quality/InspectRequest.vue

@ -737,6 +737,13 @@ export default {
delete item.buttonHide delete item.buttonHide
} }
}) })
// ,
this.loading = false
getDetailed(this.propsData.id, this.URL).then(res => {
this.propsData = res
})
this.paging()
this.loading = false
this.inspectNoticeDetailsTableLoading = false this.inspectNoticeDetailsTableLoading = false
}).catch(err => { }).catch(err => {
console.log(err) console.log(err)
@ -864,6 +871,13 @@ export default {
item.buttonHide = false item.buttonHide = false
} }
}) })
// ,
this.loading = false
getDetailed(this.propsData.id, this.URL).then(res => {
this.propsData = res
})
this.paging()
this.loading = false
}).catch(err => { }).catch(err => {
console.log(err) console.log(err)
}) })
@ -900,6 +914,13 @@ export default {
item.buttonHide = false item.buttonHide = false
} }
}) })
// ,
this.loading = false
getDetailed(this.propsData.id, this.URL).then(res => {
this.propsData = res
})
this.paging()
this.loading = false
}).catch(err => { }).catch(err => {
console.log(err) console.log(err)
}) })
@ -911,6 +932,7 @@ export default {
} else if (val[0] == 2) { } else if (val[0] == 2) {
this.inspectShow = false this.inspectShow = false
} }
}, },
// table // table
inspectAddTable(val) { inspectAddTable(val) {

Loading…
Cancel
Save