diff --git a/AMESCoreStudio.Web/Controllers/REPController.cs b/AMESCoreStudio.Web/Controllers/REPController.cs index 2ad71ff6..b1999d8d 100644 --- a/AMESCoreStudio.Web/Controllers/REPController.cs +++ b/AMESCoreStudio.Web/Controllers/REPController.cs @@ -511,7 +511,7 @@ namespace AMESCoreStudio.Web.Controllers //判斷組件是否更換 for (int i = 0; i < ng_component.Count; i++) { - if (ng_component[i].NewPartNo != "") + if (ng_component[i].NewPartNo != "" && ng_component[i].NewPartNo != null) { items.Add(new BarCodeCheckDto.inputItem { @@ -522,6 +522,11 @@ namespace AMESCoreStudio.Web.Controllers } } + if (items.Count == 0) + { + items = null; + } + if (repairComplete) { //判断全部维修完成过站 diff --git a/AMESCoreStudio.Web/Views/REP/REP001V.cshtml b/AMESCoreStudio.Web/Views/REP/REP001V.cshtml index bbccf672..bb5ec274 100644 --- a/AMESCoreStudio.Web/Views/REP/REP001V.cshtml +++ b/AMESCoreStudio.Web/Views/REP/REP001V.cshtml @@ -134,13 +134,19 @@ templet: '
{{ layui.util.toDateString(d.updateDate, "yyyy/MM/dd") }}
' }, { - field: 'right', + field: 'status', width: 120, title: '操作', align: 'center', fixed: 'right', templet: function (d) { - return ' 維修 ' + if (d.status == 0) { + return ' 維修 ' + } + else + { + return ""; + } } }] ];