diff --git a/AMESCoreStudio.Web/Controllers/WHSController.cs b/AMESCoreStudio.Web/Controllers/WHSController.cs index c91931da..658015d4 100644 --- a/AMESCoreStudio.Web/Controllers/WHSController.cs +++ b/AMESCoreStudio.Web/Controllers/WHSController.cs @@ -117,7 +117,7 @@ namespace AMESCoreStudio.Web.Controllers var result = await _basApi.GetStationses(); var StationItems = new List(); - StationItems.Add( new SelectListItem("N/A", "0")); + StationItems.Add( new SelectListItem("N/A", "-1")); for (int i = 0; i < result.Count; i++) { StationItems.Add(new SelectListItem(result[i].StationName, result[i].StationID.ToString())); @@ -504,14 +504,9 @@ 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); - } + + ModelState.AddModelError("error", result.Msg); + } } return View("WHS003C", model); @@ -1751,5 +1746,19 @@ namespace AMESCoreStudio.Web.Controllers #endregion + public async Task WHS017() + { + var tt = Request.Cookies["UserID"]; + //製程單位 + await GetFactoryUnitsList3(); + //廠別 + await GetFactoryList(); + //線別 + await GetLineList2(); + //判定單位 + await GetDeptList2(); + + return View(); + } } } diff --git a/AMESCoreStudio.Web/Views/WHS/WHS014.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS014.cshtml index c2c87fcb..0230b5d1 100644 --- a/AMESCoreStudio.Web/Views/WHS/WHS014.cshtml +++ b/AMESCoreStudio.Web/Views/WHS/WHS014.cshtml @@ -1,5 +1,5 @@ @{ - ViewData["Title"] = "異常工時類別資料維護"; + ViewData["Title"] = "異常工時類別資料查詢"; Layout = "~/Views/Shared/_AMESLayout.cshtml"; } @@ -115,16 +115,6 @@ } } - var toolbar = [{ - text: '新增', - layuiicon: '', - class: 'layui-btn-normal', - handler: function () { - hg.open('新增異常工時類別', '/WHS/WHS014C', 640, 320); - - } - } - ]; //基本数据表格 //var table = hg.table.datatable('test', '工作異常工時類別', '/WHS/GetWorkGroups', {}, tableCols, toolbar, true, 'full-100', ['filter', 'print', 'exports']); var table; diff --git a/AMESCoreStudio.Web/Views/WHS/WHS017.cshtml b/AMESCoreStudio.Web/Views/WHS/WHS017.cshtml new file mode 100644 index 00000000..342d8170 --- /dev/null +++ b/AMESCoreStudio.Web/Views/WHS/WHS017.cshtml @@ -0,0 +1,262 @@ +@{ + ViewData["Title"] = "異常工時資料查詢"; + Layout = "~/Views/Shared/_AMESLayout.cshtml"; +} + + + + +
+
+
+
+
@ViewBag.Title
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
+ +@section Scripts{ + +} 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 dc2d715d..eb521e85 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 b2406ff4..498872d6 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 9f430d81..b880ad77 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 d4683b9f..ab58c351 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 82057d33..44020bd3 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 0616febf..b0f71289 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 76f05619..6dcfbab5 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 d2613940..da8087c2 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 846a80ca..f6b5958c 100644 --- a/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml +++ b/AMESCoreStudio.Web/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml @@ -1216,6 +1216,32 @@ + + + 檢驗結果上傳圖檔資料表 + + + + + 檢驗結果上傳圖檔資料表 By FQCID + + FQCID + + + + + 更新 檢驗結果上傳圖檔資料表 + + + + + + + 新增 檢驗結果上傳圖檔資料表 + + + + 檢驗單結果資料檔 @@ -1736,6 +1762,39 @@ + + + 料號對應工項資料檔 + + + + + 料號查詢綁定檢驗工項 + + 料號 + + + + + 更新料號對應工項資料檔 + + + + + + + 新增料號對應工項資料檔 + + + + + + + 刪除料號對應工項資料檔 + + + + 料號基本資料檔Controller @@ -2964,13 +3023,15 @@ 檢驗項目維護資料檔 - + 查詢檢驗項目維護 by Table 檢驗類別ID 頁數 筆數 + 料號 + 工單號碼 @@ -3557,6 +3618,13 @@ + + + 工單料號查詢 + + 工單料號 + + @@ -3662,6 +3730,61 @@ + + + 工單警報資料 + + + + + + + + + + + 獲取全部警報資料 + + + + + + 根據警報類型ID查詢警報資料 + + + + + + + + + 根據警報ID查詢警報資料 + + + + + + + 修改警報資料 + + + + + + + + 新增警報資料 + + + + + + + + + + + @@ -3942,6 +4065,32 @@ + + + 工單對應工項資料檔 + + + + + 工單號碼查詢綁定檢驗工項 + + 工單號碼 + + + + + 更新工單對應工項資料檔 + + + + + + + 新增工單對應工項資料檔 + + + + 工單上傳圖檔資料表 @@ -3985,10 +4134,11 @@ - + 查詢工單資料QRS009 + @@ -8217,6 +8367,86 @@ 更新日期 + + + OS + + + + + CPU test + + + + + RAM test + + + + + BIOS + + + + + 檢驗儀器編號 + + + + + 單位主管 + + + + + Proved + + + + + 檢驗結果上傳圖檔資料表 + + + + + 檢驗結果ID + + + + + 圖檔名稱 + + + + + IMAGE_BLOB + + + + + FILEPATH + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 巡檢表單資料檔 @@ -8758,6 +8988,51 @@ 修改時間 + + + 料號對應工項資料檔 + + + + + 料號工項ID + + + + + 料號ID + + + + + 檢驗類別ID + + + + + 檢驗項目ID + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 料號基本資料檔 @@ -11261,6 +11536,46 @@ 修改日期 + + + 工單警報資料檔 + + + + + 工單警報ID + + + + + 警報類別ID + + + + + 工單號碼 + + + + + 警報參數 + + + + + 警報值 + + + + + 警報描述 + + + + + 警報時間 + + 工單機種資料 @@ -11806,6 +12121,56 @@ 更新日期 + + + 工單對應工項資料檔 + + + + + 工單工項ID + + + + + 工單號碼 + + + + + 料號 + + + + + 檢驗類別ID + + + + + 檢驗項目ID + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 工單基本資料文件 @@ -14639,6 +15004,91 @@ 入庫單備註 + + + 客戶類別醫療(Y-是;N-否) + + + + + 客戶類別VIP(Y-是;N-否) + + + + + 客戶名稱 + + + + + 委外廠商 + + + + + OS + + + + + CPU test + + + + + RAM test + + + + + BIOS + + + + + 檢驗儀器編號 + + + + + 單位主管 + + + + + 單位主管姓名 Engineer + + + + + Proved + + + + + Proved姓名 Engineer + + + + + 檢驗者 + + + + + 檢驗者姓名 Engineer + + + + + 附件檔案 + + + + + 檢查工項 + + 箱號 @@ -14669,6 +15119,11 @@ 入庫單資料檔 Dto + + + 委外廠 + + 入庫單號碼 @@ -14694,6 +15149,11 @@ 品名/機種 + + + 批量 + + 箱號/條碼 @@ -15196,9 +15656,19 @@ 檢驗項目ID - + - 檢驗類別名稱 + 檢驗類別ID + + + + + 檢驗類別名稱中文 + + + + + 檢驗類別名稱英文 @@ -15231,6 +15701,11 @@ 更新日期 + + + 料號檢驗工項是否有資料 + + 流程站別資料 @@ -17065,6 +17540,26 @@ 工單序號退回紀錄 + + + 料號對應工項資料檔 + + + + + 工單對應工項資料檔 + + + + + 檢驗結果上傳圖檔資料表 + + + + + 工單警報資料 + + diff --git a/AMESCoreStudio.WebApi/Controllers/AMES/StandardWorkTimesController.cs b/AMESCoreStudio.WebApi/Controllers/AMES/StandardWorkTimesController.cs index 15a91e51..84863483 100644 --- a/AMESCoreStudio.WebApi/Controllers/AMES/StandardWorkTimesController.cs +++ b/AMESCoreStudio.WebApi/Controllers/AMES/StandardWorkTimesController.cs @@ -252,9 +252,11 @@ namespace AMESCoreStudio.WebApi.Controllers.AMES { await _context.SaveChangesAsync(); } - catch (DbUpdateException) + catch (Exception e) { - throw; + result.Success = false; + result.Msg = e.Message; + return result; } result.Success = true; result.Msg = "OK"; diff --git a/AMESCoreStudio.WebApi/appsettings.json b/AMESCoreStudio.WebApi/appsettings.json index 839e291a..32d48456 100644 --- a/AMESCoreStudio.WebApi/appsettings.json +++ b/AMESCoreStudio.WebApi/appsettings.json @@ -7,9 +7,10 @@ } }, "ConnectionStrings": { - "AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=gdb)));User Id=JHAMES;Password=AMES666;", - "AMESContext2": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=system;Password=admin;" - //"AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=cpadb)));User Id=JHSYS;Password=ASYS666;" + "AMESContext2": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=gdb)));User Id=JHAMES;Password=AMES666;", + "AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=JHSYS;Password=ASYS666;" + //"AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=system;Password=admin;" + //"AMESContextO": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=cpadb)));User Id=JHSYS;Password=ASYS666;" }, "MailSmtpServer": "", "MailSmtpPort": "25", 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 82057d33..44020bd3 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 0616febf..b0f71289 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 76f05619..6dcfbab5 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 d2613940..da8087c2 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 846a80ca..f6b5958c 100644 --- a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml +++ b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/AMESCoreStudio.WebApi.xml @@ -1216,6 +1216,32 @@ + + + 檢驗結果上傳圖檔資料表 + + + + + 檢驗結果上傳圖檔資料表 By FQCID + + FQCID + + + + + 更新 檢驗結果上傳圖檔資料表 + + + + + + + 新增 檢驗結果上傳圖檔資料表 + + + + 檢驗單結果資料檔 @@ -1736,6 +1762,39 @@ + + + 料號對應工項資料檔 + + + + + 料號查詢綁定檢驗工項 + + 料號 + + + + + 更新料號對應工項資料檔 + + + + + + + 新增料號對應工項資料檔 + + + + + + + 刪除料號對應工項資料檔 + + + + 料號基本資料檔Controller @@ -2964,13 +3023,15 @@ 檢驗項目維護資料檔 - + 查詢檢驗項目維護 by Table 檢驗類別ID 頁數 筆數 + 料號 + 工單號碼 @@ -3557,6 +3618,13 @@ + + + 工單料號查詢 + + 工單料號 + + @@ -3662,6 +3730,61 @@ + + + 工單警報資料 + + + + + + + + + + + 獲取全部警報資料 + + + + + + 根據警報類型ID查詢警報資料 + + + + + + + + + 根據警報ID查詢警報資料 + + + + + + + 修改警報資料 + + + + + + + + 新增警報資料 + + + + + + + + + + + @@ -3942,6 +4065,32 @@ + + + 工單對應工項資料檔 + + + + + 工單號碼查詢綁定檢驗工項 + + 工單號碼 + + + + + 更新工單對應工項資料檔 + + + + + + + 新增工單對應工項資料檔 + + + + 工單上傳圖檔資料表 @@ -3985,10 +4134,11 @@ - + 查詢工單資料QRS009 + @@ -8217,6 +8367,86 @@ 更新日期 + + + OS + + + + + CPU test + + + + + RAM test + + + + + BIOS + + + + + 檢驗儀器編號 + + + + + 單位主管 + + + + + Proved + + + + + 檢驗結果上傳圖檔資料表 + + + + + 檢驗結果ID + + + + + 圖檔名稱 + + + + + IMAGE_BLOB + + + + + FILEPATH + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 巡檢表單資料檔 @@ -8758,6 +8988,51 @@ 修改時間 + + + 料號對應工項資料檔 + + + + + 料號工項ID + + + + + 料號ID + + + + + 檢驗類別ID + + + + + 檢驗項目ID + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 料號基本資料檔 @@ -11261,6 +11536,46 @@ 修改日期 + + + 工單警報資料檔 + + + + + 工單警報ID + + + + + 警報類別ID + + + + + 工單號碼 + + + + + 警報參數 + + + + + 警報值 + + + + + 警報描述 + + + + + 警報時間 + + 工單機種資料 @@ -11806,6 +12121,56 @@ 更新日期 + + + 工單對應工項資料檔 + + + + + 工單工項ID + + + + + 工單號碼 + + + + + 料號 + + + + + 檢驗類別ID + + + + + 檢驗項目ID + + + + + 建立UserID + + + + + 建立日期 + + + + + 更新UserID + + + + + 更新日期 + + 工單基本資料文件 @@ -14639,6 +15004,91 @@ 入庫單備註 + + + 客戶類別醫療(Y-是;N-否) + + + + + 客戶類別VIP(Y-是;N-否) + + + + + 客戶名稱 + + + + + 委外廠商 + + + + + OS + + + + + CPU test + + + + + RAM test + + + + + BIOS + + + + + 檢驗儀器編號 + + + + + 單位主管 + + + + + 單位主管姓名 Engineer + + + + + Proved + + + + + Proved姓名 Engineer + + + + + 檢驗者 + + + + + 檢驗者姓名 Engineer + + + + + 附件檔案 + + + + + 檢查工項 + + 箱號 @@ -14669,6 +15119,11 @@ 入庫單資料檔 Dto + + + 委外廠 + + 入庫單號碼 @@ -14694,6 +15149,11 @@ 品名/機種 + + + 批量 + + 箱號/條碼 @@ -15196,9 +15656,19 @@ 檢驗項目ID - + - 檢驗類別名稱 + 檢驗類別ID + + + + + 檢驗類別名稱中文 + + + + + 檢驗類別名稱英文 @@ -15231,6 +15701,11 @@ 更新日期 + + + 料號檢驗工項是否有資料 + + 流程站別資料 @@ -17065,6 +17540,26 @@ 工單序號退回紀錄 + + + 料號對應工項資料檔 + + + + + 工單對應工項資料檔 + + + + + 檢驗結果上傳圖檔資料表 + + + + + 工單警報資料 + + diff --git a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/appsettings.json b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/appsettings.json index bc4ae9fc..32d48456 100644 --- a/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/appsettings.json +++ b/AMESCoreStudio.WebApi/bin/Debug/netcoreapp3.1/appsettings.json @@ -7,9 +7,16 @@ } }, "ConnectionStrings": { - "AMESContext2": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1522))(CONNECT_DATA=(SERVICE_NAME=xe)));User Id=JHAMES;Password=AMES666;", - "AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=system;Password=admin;" - //"AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=cpadb)));User Id=JHSYS;Password=ASYS666;" + "AMESContext2": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=gdb)));User Id=JHAMES;Password=AMES666;", + "AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=JHSYS;Password=ASYS666;" + //"AMESContext": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=jhdb)));User Id=system;Password=admin;" + //"AMESContextO": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=61.216.68.18)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=cpadb)));User Id=JHSYS;Password=ASYS666;" }, + "MailSmtpServer": "", + "MailSmtpPort": "25", + "MailForm": "", + "MailUser": "", + "MailUserPassword": "", + //"MailTo": "", "AllowedHosts": "*" }