diff --git a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/EdiReceive/V2Dtos/ImportNoteInputDto.cs b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/EdiReceive/V2Dtos/ImportNoteInputDto.cs index 357153d..a63974e 100644 --- a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/EdiReceive/V2Dtos/ImportNoteInputDto.cs +++ b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/EdiReceive/V2Dtos/ImportNoteInputDto.cs @@ -19,6 +19,10 @@ namespace WY.NewJit.EdiReceive.Dtos /// public virtual string VehicleModelCode { get; set; } + /// + /// 车型名称 + /// + public virtual string VehicleModelName { get; set; } /// /// 涂装下线时间起 /// @@ -62,7 +66,7 @@ namespace WY.NewJit.EdiReceive.Dtos /// /// 生产线:A/B /// - public virtual string ProductLine { get; set; } + //public virtual string ProductLine { get; set; } /// /// 创建时间起 diff --git a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/WY.NewJit.Application.Contracts.xml b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/WY.NewJit.Application.Contracts.xml index 12a21ef..dd8f515 100644 --- a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/WY.NewJit.Application.Contracts.xml +++ b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application.Contracts/WY.NewJit.Application.Contracts.xml @@ -814,6 +814,11 @@ 车型代码 + + + 车型名称 + + 涂装下线时间起 @@ -854,11 +859,6 @@ 流水号止 - - - 生产线:A/B - - 创建时间起 diff --git a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/EdiReceive/ImportNoteAppService.cs b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/EdiReceive/ImportNoteAppService.cs index 7e827cc..476ed22 100644 --- a/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/EdiReceive/ImportNoteAppService.cs +++ b/src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/EdiReceive/ImportNoteAppService.cs @@ -124,6 +124,10 @@ namespace WY.NewJit.EdiReceive { where += string.Format(" and VehicleModelCode = '{0}'", input.VehicleModelCode); } + if (input.VehicleModelName.HasValue()) + { + where += string.Format(" and VehicleModelName like '%{0}%'", input.VehicleModelName); + } if (input.PaintOfflineTimeBegin.HasValue()) { where += string.Format(" and PaintOfflineTime >= '{0}'", input.PaintOfflineTimeBegin?.ToString("yyyy-MM-dd HH:mm:ss")); diff --git a/vue/src/router/modules/fis.js b/vue/src/router/modules/fis.js index 3a403ae..4a1a858 100644 --- a/vue/src/router/modules/fis.js +++ b/vue/src/router/modules/fis.js @@ -21,11 +21,22 @@ const pgfis = { component: () => import('@/views/pg-fis/basedate/planControl/index.vue'), name: 'pg-planControl',//命名路由 meta: { - title: '计划管理', + title: '计划管理(E001车型)', //roles: ['SettleAccount.Reports'], icon: '客户零件' } }, + { + path: '/pg-planControl_V2', + component: () => import('@/views/pg-fis/basedate/planControl_V2/index.vue'), + name: 'pg-planControl_V2', //命名路由 + meta: { + title: '计划管理(D077-E007车型)', + //roles: ['SettleAccount.Reports'], + icon: '客户零件' + } + }, + // { // path: '/customerPartCfg', // component: () => import('@/views/pg-fis/basedate/customerPartCfg'), diff --git a/vue/src/views/pg-fis/basedate/planControl_V2/index.vue b/vue/src/views/pg-fis/basedate/planControl_V2/index.vue new file mode 100644 index 0000000..cd84298 --- /dev/null +++ b/vue/src/views/pg-fis/basedate/planControl_V2/index.vue @@ -0,0 +1,614 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + 导出(Excel)查询信息 + + 导入 + + + + + + + + + + + + + + {{ scope.column.label }} + + + + + + + + + + + + + + + + \ No newline at end of file