Browse Source

【NEV-PC】暂存

ag_report_nev
安虹睿 1 year ago
parent
commit
d6724aa4f7
  1. 2
      fe/PC/src/filters/status.js
  2. 129
      fe/PC/src/router/index.js
  3. 8
      fe/PC/src/views/basicData/ItemsManage/PositionCode.vue
  4. 2
      fe/PC/src/views/finishedProductManage/customerReturn/customerReturnNote.vue

2
fe/PC/src/filters/status.js

@ -2478,7 +2478,7 @@ export function positionCodeType(index, prop) {
}, },
2: { 2: {
value: 2, value: 2,
label: "器具" label: "半成品"
}, },
3: { 3: {
value: 3, value: 3,

129
fe/PC/src/router/index.js

@ -190,54 +190,7 @@ export const constantRoutes = [
} }
}] }]
}, },
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'completDumpNoteZS',
component: () => import('@/views/finishedProductManage/completDump/completDumpNoteZS.vue'),
name: 'completDumpNoteZS',
meta: {
keepAlive : true,
title: '完工转储记录(注塑)',
icon: '完工转储申请',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'completDumpNotePT',
component: () => import('@/views/finishedProductManage/completDump/completDumpNotePT.vue'),
name: 'completDumpNotePT',
meta: {
keepAlive : true,
title: '完工转储记录(喷涂)',
icon: '完工转储申请',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'completDumpNoteZP',
component: () => import('@/views/finishedProductManage/completDump/completDumpNoteZP.vue'),
name: 'completDumpNoteZP',
meta: {
keepAlive : true,
title: '完工转储记录(装配)',
icon: '完工转储申请',
}
}]
},
{ {
path: '/', path: '/',
component: Layout, component: Layout,
@ -478,86 +431,6 @@ export const constantRoutes = [
} }
}] }]
}, },
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'ItemContainer',
component: () => import('@/views/basicData/ItemsManage/ItemContainer.vue'),
name: 'ItemContainer',
meta: {
keepAlive : true,
title: '收容数标包',
icon: '成品发运任务',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'ThirdLocationRequest',
component: () => import('@/views/ThirdLocationManage/ThirdLocationRequest.vue'),
name: 'ThirdLocationRequest',
meta: {
keepAlive : true,
title: '三方库申请',
icon: '成品发运任务',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'ThirdLocationJob',
component: () => import('@/views/ThirdLocationManage/ThirdLocationJob.vue'),
name: 'ThirdLocationJob',
meta: {
keepAlive : true,
title: '三方库任务',
icon: '成品发运任务',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'ThirdLocationNote',
component: () => import('@/views/ThirdLocationManage/ThirdLocationNote.vue'),
name: 'ThirdLocationNote',
meta: {
keepAlive : true,
title: '三方库记录',
icon: '成品发运任务',
}
}]
},
{
path: '/',
component: Layout,
redirect: '/gridlayout',
hidden: true,
children: [{
path: 'customerReturnNote',
component: () => import('@/views/finishedProductManage/customerReturn/customerReturnNote.vue'),
name: 'customerReturnNote',
meta: {
keepAlive : true,
title: '客户退货',
icon: '成品发运任务',
}
}]
},
] ]

8
fe/PC/src/views/basicData/ItemsManage/PositionCode.vue

@ -286,7 +286,7 @@ export default {
this.CreateFormData.codeType = 'W' this.CreateFormData.codeType = 'W'
break; break;
case 2: case 2:
this.CreateFormData.codeType = 'Q' this.CreateFormData.codeType = 'B'
break; break;
case 3: case 3:
this.CreateFormData.codeType = 'K' this.CreateFormData.codeType = 'K'
@ -301,7 +301,7 @@ export default {
this.editFormData.codeType = 'W' this.editFormData.codeType = 'W'
break; break;
case 2: case 2:
this.editFormData.codeType = 'Q' this.editFormData.codeType = 'B'
break; break;
case 3: case 3:
this.editFormData.codeType = 'K' this.editFormData.codeType = 'K'
@ -343,8 +343,8 @@ export default {
// todo:-code // todo:-code
this.initCodeType(this.editFormData.type) this.initCodeType(this.editFormData.type)
console.log([1,2,3].indexOf(this.editFormData.type)) console.log([1,2,3].indexOf(this.editFormData.type))
// this.editFormData.type = (this.editFormData.type == 'W' || this.editFormData.type == 'Q' || this.editFormData.type == 'K') ? this.editFormData.type : (this.editFormData.code && this.editFormData.code.length > 0 ? this.editFormData.code.slice(0,1) : null) // this.editFormData.type = (this.editFormData.type == 'W' || this.editFormData.type == 'B' || this.editFormData.type == 'K') ? this.editFormData.type : (this.editFormData.code && this.editFormData.code.length > 0 ? this.editFormData.code.slice(0,1) : null)
// this.editFormData.type = (this.editFormData.type == 'W' || this.editFormData.type == 'Q' || this.editFormData.type == 'K') ? this.editFormData.type : null // this.editFormData.type = (this.editFormData.type == 'W' || this.editFormData.type == 'B' || this.editFormData.type == 'K') ? this.editFormData.type : null
this.editFormData.codeSuffix = [1,2,3].indexOf(this.editFormData.type) >= 0 ? (this.editFormData.code && this.editFormData.code.length > 0 ? this.editFormData.code.slice(1) : null) : this.editFormData.code this.editFormData.codeSuffix = [1,2,3].indexOf(this.editFormData.type) >= 0 ? (this.editFormData.code && this.editFormData.code.length > 0 ? this.editFormData.code.slice(1) : null) : this.editFormData.code
}else{ }else{
this.drawerbutton(val) this.drawerbutton(val)

2
fe/PC/src/views/finishedProductManage/customerReturn/customerReturnNote.vue

@ -71,7 +71,7 @@ export default {
data () { data () {
let _this = this; let _this = this;
return { return {
URL: 'wms/store/production-return-note', URL: 'wms/store/customer-production-return-note',
tableLoading: false, tableLoading: false,
handleMultipleSelection: [], handleMultipleSelection: [],
// //

Loading…
Cancel
Save