작업 조건/시간 분석 UI, 진행 현황판 UI 활성화 기능 수정

This commit is contained in:
정영민
2025-04-02 17:47:08 +09:00
parent 92bd30b528
commit 81b75fe9e3
7 changed files with 37 additions and 18 deletions

View File

@@ -87,7 +87,6 @@ namespace CHN
string kpiAPI = "/api/usp_ppmr020/list/facilityKpi";
public string testAPIKey = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MywiZW1haWwiOiJ1dmMiLCJncm91cElkIjoyLCJncm91cENvZGUiOiJjaHVuaWxlbmciLCJyb2xlIjoiVGVuYW50QWRtaW4iLCJuYW1lIjoi7Jyg67mE7JSoIiwibGljZW5zZSI6ImJ1c2luZXNzIiwicGhvbmUiOiIiLCJpYXQiOjE3NDA1MzY0NzUsImV4cCI6NDg5NDEzNjQ3NX0.hr4D0bOA4K09Vhp12itiJgd-nVDQ3VZO8D7MVP5Ltw0";
public string testHttpServer = "http://106.247.236.204:8863";
public string facilityAPI = "/api/workConditionAnalysis/facilityCode";
public string workItemCodeAPI = "/api/workConditionAnalysis/workOrderAndItemCode";
public string workingConditionsAPI = "/api/workConditionAnalysis/analyze";
@@ -156,7 +155,7 @@ namespace CHN
this.startDate = startDate;
this.endDate = endDate;
var path = testHttpServer + facilityAPI;
var path = httpServer + facilityAPI;
var query = $"?startDate={startDate}&endDate={endDate}";
string url = path + query;
@@ -192,7 +191,7 @@ namespace CHN
}
IEnumerator GetWorkItemCode(string panelName, string facilityCode)
{
var path = testHttpServer + workItemCodeAPI;
var path = httpServer + workItemCodeAPI;
var query = $"?startDate={startDate}&endDate={endDate}&workcd={facilityCode}";
string url = path + query;
@@ -233,7 +232,7 @@ namespace CHN
WO = WO
};
var path = testHttpServer + workingConditionsAPI;
var path = httpServer + workingConditionsAPI;
var json = JsonUtility.ToJson(WorkConditionRequest);
@@ -270,7 +269,7 @@ namespace CHN
WO = WO
};
var path = testHttpServer + workingTimeAPI;
var path = httpServer + workingTimeAPI;
var json = JsonUtility.ToJson(WorkConditionRequest);