diff --git a/AMESCoreStudio.Web/Controllers/WHSController.cs b/AMESCoreStudio.Web/Controllers/WHSController.cs index e6628a41..5351ffbe 100644 --- a/AMESCoreStudio.Web/Controllers/WHSController.cs +++ b/AMESCoreStudio.Web/Controllers/WHSController.cs @@ -205,6 +205,30 @@ namespace AMESCoreStudio.Web.Controllers ViewBag.StationList = StationItems; } + private async Task GetExceptionClassesList() + { + var result = await _whsApi.GetExceptionClasses(); + + var ExceptionClasses = new List(); + for (int i = 0; i < result.Count; i++) + { + ExceptionClasses.Add(new SelectListItem(result[i].ExceptionClassName, result[i].ExceptionClassNo)); + } + + ViewBag.ExceptionClasses = ExceptionClasses; + } + private async Task GetExceptionCodesList() + { + var result = await _whsApi.GetExceptionCodes(); + + var GetExceptionCodes = new List(); + for (int i = 0; i < result.Count; i++) + { + GetExceptionCodes.Add(new SelectListItem(result[i].ExceptionDescCH, result[i].ExceptionNo)); + } + + ViewBag.ExceptionCodes = GetExceptionCodes; + } #endregion @@ -1474,9 +1498,10 @@ namespace AMESCoreStudio.Web.Controllers } //新增頁面 - public IActionResult WHS015C() + public async Task WHS015C() { - + + await GetExceptionClassesList(); return View(); } @@ -1485,7 +1510,9 @@ namespace AMESCoreStudio.Web.Controllers public async Task WHS015UAsync(string id) { var result = await _whsApi.GetExceptionCode(id); - + var result2 = await _whsApi.GetExceptionClass(result[0].ExceptionClassNo); + await GetExceptionClassesList(); + ViewBag.ExceptionGroupNo = result2[0].ExceptionGroupNo; if (result.Count == 0) { return View(); @@ -1532,6 +1559,9 @@ namespace AMESCoreStudio.Web.Controllers public async Task WHS015USaveAsync(ExceptionCode model) { + var value = ViewBag.ExceptionGroupNo; + await GetExceptionClassesList(); + if (ModelState.IsValid) { IResultModel result; @@ -1545,14 +1575,10 @@ namespace AMESCoreStudio.Web.Controllers } else { - if (result.Errors.Count > 0) - { - ModelState.AddModelError(result.Errors[0].Id, result.Errors[0].Msg); - } - else - { - ModelState.AddModelError("error", result.Msg); - } + + ViewBag.ExceptionGroupNo = value; + ModelState.AddModelError("error", result.Msg); + } } return View("WHS015U", model); @@ -1607,6 +1633,12 @@ namespace AMESCoreStudio.Web.Controllers public async Task WHS016UAsync(string id) { var result = await _whsApi.GetExceptionReason(id); + var result2 = await _whsApi.GetExceptionCode(result[0].ExceptionNo); + ViewBag.ClassNo = result2[0].ExceptionClassNo; + var result3 = await _whsApi.GetExceptionClass(result2[0].ExceptionClassNo); + ViewBag.GroupNo = result3[0].ExceptionGroupNo; + await GetExceptionClassesList(); + await GetExceptionCodesList(); if (result.Count == 0) { @@ -1639,14 +1671,11 @@ namespace AMESCoreStudio.Web.Controllers } else { - if (result.Errors.Count > 0) - { - ModelState.AddModelError(result.Errors[0].Id, result.Errors[0].Msg); - } - else - { - ModelState.AddModelError("error", result.Msg); - } + + await GetExceptionClassesList(); + await GetExceptionCodesList(); + ModelState.AddModelError("error", result.Msg); + } } return View("WHS016C", model); @@ -1654,6 +1683,10 @@ namespace AMESCoreStudio.Web.Controllers public async Task WHS016USaveAsync(ExceptionReason model) { + + var ExceptionGroupNo = ViewBag.GroupNo ; + var ExceptionClassNo = ViewBag.ClassNo; + if (ModelState.IsValid) { IResultModel result; @@ -1667,14 +1700,14 @@ namespace AMESCoreStudio.Web.Controllers } else { - if (result.Errors.Count > 0) - { - ModelState.AddModelError(result.Errors[0].Id, result.Errors[0].Msg); - } - else - { - ModelState.AddModelError("error", result.Msg); - } + + await GetExceptionClassesList(); + await GetExceptionCodesList(); + ViewBag.GroupNo = ExceptionGroupNo; + ViewBag.ClassNo = ExceptionClassNo; + + ModelState.AddModelError("error", result.Msg); + } } return View("WHS016U", model); diff --git a/AMESCoreStudio.Web/Views/WHS/WHS003.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS003.cshtml index 0e4d16ab..ce70d31b 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS003.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS003.cshtml @@ -13,7 +13,7 @@
-
@@ -45,233 +45,136 @@
@section Scripts{ - + + ////搜索 + $('#querysubmit').click(function () { + hg.msghide("刷新数据!"); + tt(); + }); + //新增 + $('#btnAdd').click(function () { + var unit = $("#unitNo").val(); + var lineID = $('#lineID').val(); + if (lineID) { + hg.open('新增標準工時', '/WHS/WHS003C?unit=' + unit + "&lineID=" + lineID, 480, 480); + } + else { + alert("請選擇線別!!"); + } + + + }); + + var table; + $(function () { + tt(); + }); + //基本数据表格 + function tt() { + var unit = $("#unitNo").val(); + var lineID = $('#lineID').val(); + var keywords = $('#modelname').val(); + table = hg.table.datatable('test', '標準工時資料', '/WHS/GetStandardWorkTimes2?u=' + unit + '&l=' + lineID + '&i=' + keywords + , {}, tableCols, toolbar, true, 'full-100', ['filter', 'print', 'exports']); + } + + + @**@ } \ No newline at end of file diff --git a/AMESCoreStudio.Web/Views/WHS/WHS006.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS006.cshtml index b14f6daf..4e3a8b06 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS006.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS006.cshtml @@ -339,13 +339,13 @@ //通过行tool编辑,lay-event="edit" function edit(obj) { if (obj.data.powerID) { - hg.open('修改每日工時資料', '/WHS/WHS006U/' + obj.data.powerID, 640, 320); + hg.open('修改每日工時資料', '/WHS/WHS006U/' + obj.data.powerID, 480, 480); } } //通过行tool删除,lay-event="del" function del(obj) { if (obj.data.powerID) { - hg.confirm("每日工時:" + obj.data.powerID + ",确定要删除吗?", function () { + hg.confirm("每日工時:" + obj.data.userNo + "-" + obj.data.userName+",確定要删除嗎?", function () { $.ajax({ url: '/WHS/WHS006D', data: { id: obj.data.powerID }, diff --git a/AMESCoreStudio.Web/Views/WHS/WHS006C.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS006C.cshtml index 85e3b619..77a40c97 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS006C.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS006C.cshtml @@ -30,7 +30,9 @@
- +
@@ -84,6 +86,11 @@
+
+ + + +
diff --git a/AMESCoreStudio.Web/Views/WHS/WHS006U.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS006U.cshtml index 50859c94..20acf940 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS006U.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS006U.cshtml @@ -15,9 +15,9 @@ - - - + + +
@@ -31,8 +31,11 @@
- - + + +
@@ -47,7 +50,7 @@
-
@@ -68,7 +71,7 @@
-
@@ -81,6 +84,11 @@
+
+ + + +
diff --git a/AMESCoreStudio.Web/Views/WHS/WHS015.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS015.cshtml index 714382c9..1eccf21b 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS015.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS015.cshtml @@ -151,11 +151,11 @@ //通过行tool删除,lay-event="del" function del(obj) { - if (obj.data.groupID) { + if (obj.data.exceptionNo) { hg.confirm("異常工時代碼:" + obj.data.exceptionDescCH + ",確定要刪除嗎?", function () { $.ajax({ - url: '/WHS/WHS001D', - data: { id: obj.data.groupID }, + url: '/WHS/WHS015D', + data: { id: obj.data.exceptionNo }, type: 'POST', success: function (data) { if (data.success) { diff --git a/AMESCoreStudio.Web/Views/WHS/WHS015U.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS015U.cshtml index 9c75928a..626ec484 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS015U.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS015U.cshtml @@ -13,7 +13,7 @@
-
+
@@ -23,21 +23,21 @@
-
-
- +
diff --git a/AMESCoreStudio.Web/Views/WHS/WHS016.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS016.cshtml index ff4a3041..75067566 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS016.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS016.cshtml @@ -169,7 +169,7 @@ var tableCols = [[ { field: 'reasonNo', - title: '異常工時原因No.' + title: '異常工時原因代碼' }, { field: 'reasonDescCH', @@ -196,18 +196,18 @@ //通过行tool编辑,lay-event="edit" function edit(obj) { - if (obj.data.groupID) { - hg.open('修改異常工時原因', '/WHS/WHS016U/' + obj.data.groupID, 640, 320); + if (obj.data.reasonNo) { + hg.open('修改異常工時原因', '/WHS/WHS016U/' + obj.data.reasonNo, 640, 320); } } //通过行tool删除,lay-event="del" function del(obj) { - if (obj.data.groupID) { - hg.confirm("異常工時原因:" + obj.data.groupName + ",确定要删除吗?", function () { + if (obj.data.reasonNo) { + hg.confirm("異常工時原因:" + obj.data.reasonDescCH + ",确定要删除吗?", function () { $.ajax({ url: '/WHS/WHS001D', - data: { id: obj.data.groupID }, + data: { id: obj.data.reasonNo }, type: 'POST', success: function (data) { if (data.success) { diff --git a/AMESCoreStudio.Web/Views/WHS/WHS016U.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS016U.cshtml index 54bbad53..d6704e42 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS016U.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS016U.cshtml @@ -23,7 +23,7 @@
- @@ -31,13 +31,13 @@
-
- diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.dll b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.dll index d3fd4ce8..e07d7ca3 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.dll and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.dll differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.pdb b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.pdb index 938bb278..ab88a41c 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.pdb and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.Views.pdb differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.dll b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.dll index a42a9fbf..4fa48ab7 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.dll and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.dll differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.pdb b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.pdb index 029be5a8..8606439a 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.pdb and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.Web.pdb differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll index 28184278..725706cd 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb index 8936783d..9767e4e6 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll index 8908aa93..8a85a76c 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb index ad1fcf35..3a094aec 100644 Binary files a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb and b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb differ diff --git a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml index 7908f82c..5b12ec40 100644 --- a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml +++ b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml @@ -502,6 +502,32 @@ + + + 燒機記錄資料表 + + + + + ByBarcodeID 查詢 + + 序號ID + + + + + 更新燒機記錄資料表 + + + + + + + 新增燒機記錄資料表 + + + + @@ -835,7 +861,7 @@ - + 修改異常工時代碼資料檔 @@ -1033,6 +1059,20 @@ 序號 + + + 新增檢驗單明細資料檔 + + + + + + + 新增檢驗單明細資料檔 + + + + 入庫單資料檔 @@ -2468,6 +2508,13 @@ + + + By 治具編號 查詢 + + 治具編號 + + @@ -3605,9 +3652,16 @@ 序號 + + + 新增工單條碼區間設定檔 + + + + - 更新 + 更新工單條碼區間設定檔 @@ -3630,6 +3684,14 @@ WipNo + + + 查詢燒機時間 + + WipNo + 0:沒資料 -1:欄位格式有誤 + 0:沒資料 -1:欄位格式有誤 + 新增工單資訊-板卡工程資訊 @@ -3662,6 +3724,13 @@ + + + 新增工單箱號資料檔 + + + + 工單資訊確認 @@ -3688,6 +3757,13 @@ + + + 新增工單確認 + + + + 各班別數量資料檔 @@ -4196,6 +4272,14 @@ WipNo + + + 查詢燒機時間 + + WipNo + 0:沒資料 -1:欄位格式有誤 + 0:沒資料 -1:欄位格式有誤 + 新增工單資訊-系統組裝工程資訊 @@ -4399,30 +4483,44 @@ - + BarcodeInfo-條碼資料檔 - + - BarcodeInfo-條碼資料檔 + BarcodeStation-條碼過站資料檔 - + - BarcodeStation-條碼過站資料檔 + BarcodeItem-組件资料 - + - NgInfo-組件资料 + BarcodeOutfit-治具資料 + + + + + + + OutfitInfo-設備資料檔 使用次數 + + + + + + + BurnInfo-燒入資料檔 @@ -4533,12 +4631,27 @@ 內部序號 + + + 燒機判斷 + + 工單號碼 + 內部序號ID + 作業站ID + + 確認組件狀態 + + + 確認治具狀態 + + + 確認組件數量正確 @@ -4579,7 +4692,16 @@ 工單號碼 生產單位ID 作業站ID - 0:完工 -1:不是 + Success(true)是 (false)不是 + + + + 確認目前該站是否為第一站 + + 工單號碼 + 生產單位ID + 作業站ID + Y:是 N:不是 @@ -5624,6 +5746,7 @@ + @@ -5932,6 +6055,8 @@ 根据用户ID获取该用户角色资料 + + @@ -6955,6 +7080,11 @@ 設備名稱 + + + 設備名稱 + + 生產單位代號 @@ -6965,6 +7095,16 @@ 生產單位 + + + 作業站ID + + + + + 作業站名稱 + + 工單製程對應SOP資料檔 DTO @@ -7085,6 +7225,11 @@ 治具條碼 + + + 出貨序號 + + 紀錄組件或不良代碼 @@ -8274,6 +8419,11 @@ 出貨序號規則 + + + 燒機記錄資料表 + + 條碼變更資料表 @@ -8615,6 +8765,11 @@ 內部序號對應的治具序號明細 + + + 條碼治具ID + + 生產序號 @@ -8815,6 +8970,96 @@ 修改時間 + + + 燒機記錄資料表 + + + + + 燒機紀錄ID + + + + + 生產序號ID + + + + + 工單號碼 + + + + + 燒機型態(靜態/動態) + + + + + 燒機臺車編號 + + + + + 計畫燒機時間 + + + + + 開始燒機時間 + + + + + 排程完成時間 + + + + + 實際燒機完成時間 + + + + + BI人員ID + + + + + BO人員ID + + + + + 狀態 + + + + + 燒機區域位置 + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 日曆 @@ -9107,7 +9352,7 @@ - 異常工時代碼代碼 + 異常工時代碼 @@ -14069,6 +14314,11 @@ 生產單位代號 + + + 作業站 + + 建立UserID diff --git a/AMESCoreStudio.WebApi/Controllers/AMES/ExceptionCodesController.cs b/AMESCoreStudio.WebApi/Controllers/AMES/ExceptionCodesController.cs index 823c6fe0..fb75d095 100644 --- a/AMESCoreStudio.WebApi/Controllers/AMES/ExceptionCodesController.cs +++ b/AMESCoreStudio.WebApi/Controllers/AMES/ExceptionCodesController.cs @@ -107,7 +107,7 @@ namespace AMESCoreStudio.WebApi.Controllers.AMES /// /// [HttpPut("{id}")] - public async Task> PutBarcodeItems(string id, [FromBody] ExceptionCode ExceptionCode) + public async Task> PutExceptionCode(string id, [FromBody] ExceptionCode ExceptionCode) { ResultModel result = new ResultModel(); if (id != ExceptionCode.ExceptionNo) diff --git a/AMESCoreStudio.WebApi/Models/AMES/ExceptionCode.cs b/AMESCoreStudio.WebApi/Models/AMES/ExceptionCode.cs index 53ac46fa..b88ef7c5 100644 --- a/AMESCoreStudio.WebApi/Models/AMES/ExceptionCode.cs +++ b/AMESCoreStudio.WebApi/Models/AMES/ExceptionCode.cs @@ -13,12 +13,12 @@ namespace AMESCoreStudio.WebApi.Models.AMES public class ExceptionCode { /// - /// 異常工時代碼代碼 + /// 異常工時代碼 /// [Key] [Column("EXCEPTION_NO")] [Required(ErrorMessage = "{0},不能空白")] - [Display(Name = "異常群組代碼")] + [Display(Name = "異常工時代碼")] [StringLength(12, ErrorMessage = "{0},不能大于{1}")] [DataMember] public string ExceptionNo { get; set; } diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll index 28184278..725706cd 100644 Binary files a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll and b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.dll differ diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb index 8936783d..9767e4e6 100644 Binary files a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb and b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.Views.pdb differ diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll index 8908aa93..8a85a76c 100644 Binary files a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll and b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.dll differ diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb index ad1fcf35..3a094aec 100644 Binary files a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb and b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.pdb differ diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml index 7908f82c..5b12ec40 100644 --- a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml +++ b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml @@ -502,6 +502,32 @@ + + + 燒機記錄資料表 + + + + + ByBarcodeID 查詢 + + 序號ID + + + + + 更新燒機記錄資料表 + + + + + + + 新增燒機記錄資料表 + + + + @@ -835,7 +861,7 @@ - + 修改異常工時代碼資料檔 @@ -1033,6 +1059,20 @@ 序號 + + + 新增檢驗單明細資料檔 + + + + + + + 新增檢驗單明細資料檔 + + + + 入庫單資料檔 @@ -2468,6 +2508,13 @@ + + + By 治具編號 查詢 + + 治具編號 + + @@ -3605,9 +3652,16 @@ 序號 + + + 新增工單條碼區間設定檔 + + + + - 更新 + 更新工單條碼區間設定檔 @@ -3630,6 +3684,14 @@ WipNo + + + 查詢燒機時間 + + WipNo + 0:沒資料 -1:欄位格式有誤 + 0:沒資料 -1:欄位格式有誤 + 新增工單資訊-板卡工程資訊 @@ -3662,6 +3724,13 @@ + + + 新增工單箱號資料檔 + + + + 工單資訊確認 @@ -3688,6 +3757,13 @@ + + + 新增工單確認 + + + + 各班別數量資料檔 @@ -4196,6 +4272,14 @@ WipNo + + + 查詢燒機時間 + + WipNo + 0:沒資料 -1:欄位格式有誤 + 0:沒資料 -1:欄位格式有誤 + 新增工單資訊-系統組裝工程資訊 @@ -4399,30 +4483,44 @@ - + BarcodeInfo-條碼資料檔 - + - BarcodeInfo-條碼資料檔 + BarcodeStation-條碼過站資料檔 - + - BarcodeStation-條碼過站資料檔 + BarcodeItem-組件资料 - + - NgInfo-組件资料 + BarcodeOutfit-治具資料 + + + + + + + OutfitInfo-設備資料檔 使用次數 + + + + + + + BurnInfo-燒入資料檔 @@ -4533,12 +4631,27 @@ 內部序號 + + + 燒機判斷 + + 工單號碼 + 內部序號ID + 作業站ID + + 確認組件狀態 + + + 確認治具狀態 + + + 確認組件數量正確 @@ -4579,7 +4692,16 @@ 工單號碼 生產單位ID 作業站ID - 0:完工 -1:不是 + Success(true)是 (false)不是 + + + + 確認目前該站是否為第一站 + + 工單號碼 + 生產單位ID + 作業站ID + Y:是 N:不是 @@ -5624,6 +5746,7 @@ + @@ -5932,6 +6055,8 @@ 根据用户ID获取该用户角色资料 + + @@ -6955,6 +7080,11 @@ 設備名稱 + + + 設備名稱 + + 生產單位代號 @@ -6965,6 +7095,16 @@ 生產單位 + + + 作業站ID + + + + + 作業站名稱 + + 工單製程對應SOP資料檔 DTO @@ -7085,6 +7225,11 @@ 治具條碼 + + + 出貨序號 + + 紀錄組件或不良代碼 @@ -8274,6 +8419,11 @@ 出貨序號規則 + + + 燒機記錄資料表 + + 條碼變更資料表 @@ -8615,6 +8765,11 @@ 內部序號對應的治具序號明細 + + + 條碼治具ID + + 生產序號 @@ -8815,6 +8970,96 @@ 修改時間 + + + 燒機記錄資料表 + + + + + 燒機紀錄ID + + + + + 生產序號ID + + + + + 工單號碼 + + + + + 燒機型態(靜態/動態) + + + + + 燒機臺車編號 + + + + + 計畫燒機時間 + + + + + 開始燒機時間 + + + + + 排程完成時間 + + + + + 實際燒機完成時間 + + + + + BI人員ID + + + + + BO人員ID + + + + + 狀態 + + + + + 燒機區域位置 + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 日曆 @@ -9107,7 +9352,7 @@ - 異常工時代碼代碼 + 異常工時代碼 @@ -14069,6 +14314,11 @@ 生產單位代號 + + + 作業站 + + 建立UserID