@@ -177,7 +178,7 @@
$("#ExceptionType").change(function () {
var data = $("#ExceptionType").val();
//console.info(data);
- getExceptionNo(data);
+ getExceptionClass(data);
});
$("#ExceptionClass").change(function () {
var data = $("#ExceptionClass").val();
@@ -274,7 +275,7 @@
};
function getExceptionClass(data) {
$.ajax({
- url: "/PPS/GetExceptionClasses",
+ url: "/WHS/GetExceptionClasses",
dataType: 'json',
//data: { id: data },
contentType: "application/json",
@@ -282,6 +283,7 @@
success: function (result) {
if (result.data) {
$("#ExceptionClass").empty();
+ $('#ExceptionClass').append(new Option("請選擇", ""));
var count = 0;
$.each(result.data, function (index, item) {
if (item.exceptionGroupNo == data) {//修改等號 EXCEPTION_GROUP_NO
@@ -308,7 +310,7 @@
};
function getExceptionNo(data) {
$.ajax({
- url: "/PPS/GetExceptionCodes",
+ url: "/WHS/GetExceptionCodes",
dataType: 'json',
//data: { id: data },
contentType: "application/json",
diff --git a/AMESCoreStudio.Web/Views/WHS/WHS009U.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS009U.cshtml
index b4ae4eab..b0ad9a94 100644
--- a/AMESCoreStudio.Web/Views/WHS/WHS009U.cshtml
+++ b/AMESCoreStudio.Web/Views/WHS/WHS009U.cshtml
@@ -276,7 +276,7 @@
};
function getExceptionClass(data) {
$.ajax({
- url: "/BAS/GetLineInfoByUnit",
+ url: "/WHS/GetExceptionClasses",
dataType: 'json',
//data: { id: data },
contentType: "application/json",
@@ -286,7 +286,7 @@
$("#ExceptionClass").empty();
var count = 0;
$.each(result.data, function (index, item) {
- if (item.deptID == data) {//修改等號
+ if (item.exceptionGroupNo == data) {//修改等號
$('#ExceptionClass').append(new Option(item.userName, item.userID));//修改參數
count = count + 1;
}
@@ -310,7 +310,7 @@
};
function getExceptionNo(data) {
$.ajax({
- url: "/BAS/GetLineInfoByUnit",
+ url: "/WHS/GetExceptionCodes",
dataType: 'json',
//data: { id: data },
contentType: "application/json",
@@ -322,7 +322,7 @@
$('#ExceptionNo').append(new Option("請選擇", ""));
var count = 0;
$.each(result.data, function (index, item) {
- if (item.deptID == data) { //修改等號
+ if (item.exceptionClassNo == data) { //修改等號
$('#ExceptionNo').append(new Option(item.userName, item.userID));//修改參數
count = count + 1;
}
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 eeda8e40..d80ac8d7 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 69c2da1a..35574d92 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 6c4e8865..0ef7e6d5 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 9530dd39..3648f405 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 54bf0921..1f48514c 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 3ddcfffc..4a394e88 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 66a221d5..1d4850c1 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 a847a82a..38236cc5 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 5fe11377..dba9d9bc 100644
--- a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml
+++ b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml
@@ -60,6 +60,27 @@
+
+
+ 用BarCodeID取條碼關聯資料檔
+
+ BarCodeID
+
+
+
+
+ 用GroupID取條碼關聯資料檔
+
+ GroupID
+
+
+
+
+ 用GroupID刪除條碼關聯資料檔
+
+
+
+
條碼變更資料表
@@ -218,6 +239,21 @@
+
+
+ 用barcodeID獲取資料
+
+ barcodeID
+
+
+
+
+ 確認組件代碼是否重複
+
+ 組件代碼
+ 組件條碼
+
+
更新條碼资料
@@ -286,7 +322,7 @@
barcodeID
-
+
用工單ID查是否有過站紀錄
@@ -590,6 +626,159 @@
+
+
+ 異常工時類別資料檔
+
+
+
+
+ 建構式
+
+
+
+
+
+ 查詢異常工時類別資料檔
+
+
+
+
+
+ 異常工時類別資料檔byID
+
+ ItemID
+
+
+
+
+ 異常工時類別資料檔 by GROUP ID
+
+ ItemID
+
+
+
+
+ 新增異常工時類別資料檔
+
+
+
+
+
+
+ 修改異常工時類別資料檔
+
+
+
+
+
+ 刪除異常工時類別
+
+
+
+
+
+
+ 異常工時代碼資料檔
+
+
+
+
+ 建構式
+
+
+
+
+
+ 查詢異常工時代碼資料檔
+
+
+
+
+
+ 異常工時代碼資料檔
+
+ ItemID
+
+
+
+
+ 異常工時代碼資料檔
+
+ ItemID
+
+
+
+
+ 新增異常工時代碼資料檔
+
+
+
+
+
+
+ 修改異常工時代碼資料檔
+
+
+
+
+
+ 刪除異常工時代碼
+
+
+
+
+
+
+ 異常工時原因資料檔
+
+
+
+
+ 建構式
+
+
+
+
+
+ 查詢異常工時原因資料檔
+
+
+
+
+
+ 異常工時原因資料檔
+
+ ItemID
+
+
+
+
+ 異常工時原因資料檔
+
+ ItemID
+
+
+
+
+ 新增異常工時原因資料檔
+
+
+
+
+
+
+ 修改異常工時原因資料檔
+
+
+
+
+
+ 刪除異常工時原因
+
+
+
+
工作群組維護
@@ -706,6 +895,92 @@
+
+
+ FQC條碼資料檔
+
+
+
+
+ 檢驗單明細資料檔
+
+
+
+
+ 入庫單資料檔
+
+
+
+
+ 更新入庫單
+
+
+
+
+
+
+ 新增入庫單
+
+
+
+
+
+
+ 刪除入庫單
+
+ 入庫單號
+ 順序
+
+
+
+
+ FQC檢驗結果ID
+
+
+
+
+ 檢驗结果維護資料檔
+
+
+
+
+ 查詢檢驗结果維護 by Table
+
+ 頁數
+ 筆數
+
+
+
+
+ 更新檢驗结果維護
+
+
+
+
+
+
+ 新增檢驗结果維護
+
+
+
+
+
+
+ 刪除檢驗结果維護
+
+ FQC_NO
+
+
+
+
+ FQC檢驗結果明細資料檔
+
+
+
+
+ 檢驗單結果資料檔
+
+
@@ -1085,5351 +1360,7276 @@
-
+
- 不良現象群組維護
+ 測試不良零件資料檔
-
+
-
+
-
-
-
+
-
+
-
-
+
-
+
+
-
+
-
+
-
+
- 測試不良基本資料檔
+
+
+
-
+
- 不良現象原因代碼維護
+ 不良現象群組維護
-
+
-
+
-
-
-
-
- 根据不良現象類別代碼NO獲取該類別不良現象原因代碼資料
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+ 測試不良基本資料檔
-
+
-
+
-
+
-
+
-
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+ 不良現象原因代碼維護
+
-
+
-
+
- 獲取產品別資料
+
-
+
-
+ 根据不良現象類別代碼NO獲取該類別不良現象原因代碼資料
+
+
+
+
-
+
-
+
+
-
+
- 獲取產品別資料
+
+
+
-
+
- 問題類別維護
+
+
+
-
+
+
+
+
+
+
+
+
+
+ 維修解碼上傳圖檔資料表
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- 組件類別資料維護
+ 不良維修資料檔
-
+
-
+
-
+
-
+
-
-
+
-
+
+
-
+
+
+
+
+
+
+
+
-
+
- 維修方式資料維護
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- 維修類別
+
-
+
-
+
+
+ 獲取工單屬性資料
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 獲取產品別資料
+
-
+
- 根据維修群組代碼NO獲取該群組維修類別資料
+ 問題類別維護
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- 維修群組維護
+ 抽驗標準資料檔
-
+
-
+ 更新抽驗標準
-
+
+
-
+
-
+ 新增抽驗標準
+
-
+
-
+ 刪除抽驗標準
-
+ CRIT_ID
-
+
-
+ 檢驗類別維護資料檔
-
-
+
+
+
+ 更新檢驗類別維護
+
+
-
+
-
+ 新增檢驗類別維護
-
+
-
+
-
+ 刪除檢驗類別維護
-
+ GroupID
-
+
- 維修原因維護
+ 檢驗項目維護資料檔
-
+
-
+ 查詢檢驗項目維護 by Table
-
+ 檢驗類別ID
+ 頁數
+ 筆數
+
-
+
-
+ 更新檢驗項目維護
+
-
+
- 根据维修類別代碼NO獲取該類別维修原因資料
+ 新增檢驗項目維護
-
-
-
+
-
+
-
+ 刪除檢驗項目維護
-
+ ITEM_ID
-
+
+
+ 抽驗係數資料檔
+
+
+
-
-
+
+
+
+
+ 更新抽驗係數
+
+
-
+
-
+ 新增抽驗係數
-
+
-
+
-
+ 刪除抽驗係數
-
+ QuotID
-
+
- 工作群組維護
+ 抽驗批退資料檔
-
+
- 重工標準工時
+ 組件類別資料維護
-
-
+
-
+
-
+
-
-
+
-
+
- 修改重工標準工時
+
-
+
-
+
- 新增资料
+
-
+
-
+
-
+
- 工作群組維護
+ 維修紀錄資料檔
-
+
-
+
-
+
-
-
- WHS005
-
-
-
-
-
-
-
-
- WHS005
-
-
-
-
-
-
-
+
-
+
-
+
- 新增资料
+
-
+
-
+
-
+
- 工時援入/外
+ 維修方式資料維護
-
+
-
+
-
+
-
-
- 援入援外綜合查詢
-
- 廠別
- 援入/外
- 製程單位
- 開始時間
- 結束時間
-
-
-
+
- 修改工時援入/外
+
-
+
-
+
- 新增援入外资料
+
-
+
-
+
- 刪除援入外資料
+
-
+
-
+ 維修類別
-
+
-
+
- 查詢工單資料Att
+
-
+
- 查詢工單資料Att By WipNO
+ 根据維修群組代碼NO獲取該群組維修類別資料
- 工單號碼
+
+
+
-
+
- 新增工單資料Att
+
-
+
-
+
+
+
+
-
+
-
+
+
-
+
- 查詢工單資料Barcode
+
+
-
+
- 查詢工單資料Barcode By WipNO
+ 維修群組維護
- 工單號碼
-
-
+
- 新增工單資料-條碼Barcode
+
-
-
+
-
+
- 刪除工單條碼區間
+
- 工單號碼
- 起始區間
- 結束區間
-
+
+
+
-
+
-
+
+
+
-
+
- 獲取產品別資料
+
+
-
+
+
+
+
+
+
+ 維修原因維護
+
-
+
- 工單資訊-板卡工程資訊 Controller
+
-
+
- 工單資訊-板卡工程資訊 Controller to WipNo
+
- WipNo
-
+
- 新增工單資訊-板卡工程資訊
+ 根据维修類別代碼NO獲取該類別维修原因資料
-
+
+
+
-
+
- 修改工單資訊-板卡工程資訊
+
+
-
+
+
+
+
-
+
-
+
+
-
+
- 查詢工單資料Info
+
+
-
+
- 查詢工單資料 by SelectParameter
+ 工作群組維護
-
-
+
- 查詢工單資料Info By WipID
+ 重工標準工時
- WipID
-
+
-
+
- 查詢工單資料Info By WipNO
+
- 工單號碼
-
+
- 新增工單資料
+
-
+
-
+
- 更新工單資本資料-狀態
+
- 工單ID
- 狀態
+
-
+
- 工單資本資料
+ 修改重工標準工時
+
+
-
+
-
+ 新增资料
-
+
+
-
+
- 工單投產纪錄資料文件
+
+
-
+
-
+ 工作群組維護
-
+
-
+
- 工單鎖定資料
+
-
+
- 工單鎖定資料 to WipLockID
+
- WipLockID
+
-
+
- 工單鎖定資料 to 工單號碼
+ WHS005
- 工單號碼
+
+
+
-
+
- 製程工單鎖定查詢
+ WHS005
- 工單
- 工單狀態
- 鎖定類型
- 料號
- 鎖定原因類別
- 站別
- 鎖定日期起
- 鎖定日期迄
+
+
+
-
+
- 新增工單鎖定資料檔
+
-
+
+
-
+
- 工單解鎖資料檔
+ 新增资料
+
-
+
+
+
-
+
-
+ 過站狀態檔
-
-
+
- 工單投產纪錄資料文件
+ 更新過站狀態
+
-
+
- 工單投產纪錄資料文件 to WipID
+ 新增過站狀態
- 工單ID
+
-
+
- 新增工單投產纪錄資料文件
+ 刪除過站狀態
- 工單ID
+ STATUS_NO
-
+
+
+ 工時援入/外
+
+
+
-
+
- 工單投產纪錄資料文件
+
-
+
-
+
+
-
+
- 工單投產纪錄資料文件
+ 援入援外綜合查詢
+ 廠別
+ 援入/外
+ 製程單位
+ 開始時間
+ 結束時間
-
+
-
+ 修改工時援入/外
-
+
+
+
-
+
- SOPFile資料查詢
+ 新增援入外资料
+
-
+
- SOPFile資料查詢 by ID
+ 刪除援入外資料
-
+
- SOP文件查詢
+
- 料號
- 生產單位
- 檔案名稱
- 狀態
- 建立日期起
- 建立日期迄
-
-
+
-
+
- 工單投產纪錄資料文件
+ 查詢工單資料Att
-
+
- SOP文件查詢
+ 查詢工單資料Att By WipNO
- 料號
- 生產單位
- 檔案名稱
- 狀態
- 建立日期起
- 建立日期迄
+ 工單號碼
-
+
- 工單狀態維護
+ 新增工單資料Att
+
+
-
+
-
-
+
-
+
-
+
-
+ 查詢工單資料Barcode
-
-
+
-
+ 查詢工單資料Barcode By WipNO
-
-
+ 工單號碼
-
+
-
+ 新增工單資料-條碼Barcode
-
+
-
+
-
+ 刪除工單條碼區間
-
+ 工單號碼
+ 起始區間
+ 結束區間
-
+
- 工單資訊-系統組裝工程資訊 Controller
+
-
-
+
- 工單資訊-系統組裝工程資訊 to WipNo
+
- WipNo
-
+
-
+
- 新增工單資訊-系統組裝工程資訊
+ 獲取產品別資料
-
-
+
- 修改工單資訊-系統組裝工程資訊
+ 查詢客戶區間
+ 工單號碼
+ 序號
-
-
- 工作群組維護
-
-
-
+
-
-
+
-
+ 工單資訊-板卡工程資訊 Controller
-
+
-
+
-
+ 工單資訊-板卡工程資訊 Controller to WipNo
-
+ WipNo
-
+
-
+ 新增工單資訊-板卡工程資訊
-
-
+
-
+
- 新增资料
+ 修改工單資訊-板卡工程資訊
-
-
+
-
-
-
+
- 工作群組維護
+
+
-
+
-
+ 查詢工單資料Info
-
+
-
+
-
+ 查詢工單資料 by SelectParameter
-
+
-
+ 查詢工單資料Info By WipID
-
+ WipID
-
+
-
+ 查詢工單資料Info By WipNO
-
-
+ 工單號碼
-
+
- 新增资料
+ 新增工單資料
-
+
-
+
-
+ 更新工單資本資料-狀態
-
+ 工單ID
+ 狀態
-
+
- 每日工時維護
+ 工單資本資料
+
-
+
-
+
- 查詢每日工時
+ 工單投產纪錄資料文件
-
+
- 查詢每日工時byID
+
-
-
-
+
- 每日工時查詢Query
+
-
-
-
-
-
-
-
-
-
-
+
-
+
- 修改每日工時
+ 工單鎖定資料
-
-
-
+
- 新增每日工時资料
+ 工單鎖定資料 to WipLockID
-
+ WipLockID
-
+
- 刪除每日工時
+ 工單鎖定資料 to 工單號碼
-
+ 工單號碼
-
-
- 過站判斷
-
-
-
+
-
+ 製程工單鎖定查詢
-
+ 工單
+ 工單狀態
+ 鎖定類型
+ 料號
+ 鎖定原因類別
+ 站別
+ 鎖定日期起
+ 鎖定日期迄
+
-
+
- 判斷工單狀態
+ 新增工單鎖定資料檔
- 工單號碼
- 生產單位
- 線別
- 流程
+
-
+
- 判斷序號狀態
+ 工單解鎖資料檔
-
-
-
-
-
+
- 內部序號查詢工單號碼
+
- 內部序號
- Success:true or false
-
+
- 內部序號查詢目前生產單位
+
- 內部序號
- Success:true or false
+
-
+
- 內部序號查詢目前站別
+ 工單投產纪錄資料文件
- 內部序號
- Success:true or false
+
-
+
- 內部序號是否鎖定
+ 工單投產纪錄資料文件 to WipID
- 內部序號
- Success:true or false
+ 工單ID
+
-
+
- 內部序號是否報廢
+ 新增工單投產纪錄資料文件
- 內部序號
- Success:true or false
+ 工單ID
+
-
+
- 確認內部條碼流動
+
- 工單號碼
- 內部條碼
- 生產單位編號
- 作業站編號
-
+
-
+
- 確認工單狀態
+ 工單投產纪錄資料文件
- 工單號碼
- 生產單位
- 流程
- 線別
-
+
- 確認組件狀態
+
- 工單號碼
- 內部條碼
-
+
-
+
- 內部序號找BarCodeID
+ 工單投產纪錄資料文件
-
- 0:找不到
+
-
+
- 取得上一個作業站RuleStationID
+
- 工單號碼
- 作業站ID
- 0:沒有上一站
+
-
+
- 取得下一個作業站RuleStationID
+ SOPFile資料查詢
- 工單號碼
- 作業站ID
- 0:沒有下一站
+
-
+
- 檔案用途 條碼工單資料檔
+ SOPFile資料查詢 by ID
+
+
-
+
- 班別资料维护
+ SOP文件查詢
+ 料號
+ 生產單位
+ 檔案名稱
+ 狀態
+ 建立日期起
+ 建立日期迄
+
-
+
-
+
- 获取全部班別资料
+ 工單投產纪錄資料文件
-
+
- 用ID获取该班別资料
+ SOP文件查詢
-
+ 料號
+ 生產單位
+ 檔案名稱
+ 狀態
+ 建立日期起
+ 建立日期迄
-
+
- 根据單位ID获取该班別资料
+ 工單狀態維護
-
-
-
+
- 更新班別资料
+
-
-
-
+
-
+
- 新增班別资料
+
-
-
+
- 删除班別资料
+
-
+
- 工廠资料维护
+
+
+
+
-
+
-
+
+
-
+
- 获取全部工廠资料
+
+
-
+
- 用ID获取该工廠资料
+ 工單資訊-系統組裝工程資訊 Controller
-
-
+
-
+
- 更新工廠资料
+ 工單資訊-系統組裝工程資訊 to WipNo
-
-
+ WipNo
-
+
- 新增工廠资料
+ 新增工單資訊-系統組裝工程資訊
-
+
-
+
- 删除工廠资料
+ 修改工單資訊-系統組裝工程資訊
-
-
+
- BAS002生產製程單位維護相關
+ 工作群組維護
-
+
-
+
- 获取全部單位资料
+
-
+