대시 보드이외의 영역 클릭 시 꺼지는 기능을 대시보드 버튼을 누를 때 꺼지도록 기능 개선
This commit is contained in:
@@ -238661,7 +238661,7 @@ GameObject:
|
|||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_NavMeshLayer: 0
|
m_NavMeshLayer: 0
|
||||||
m_StaticEditorFlags: 0
|
m_StaticEditorFlags: 0
|
||||||
m_IsActive: 1
|
m_IsActive: 0
|
||||||
--- !u!224 &964127729
|
--- !u!224 &964127729
|
||||||
RectTransform:
|
RectTransform:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace CHN
|
|||||||
building.onChangeFloor += viewManager.ChangeViewWithFloorControl;
|
building.onChangeFloor += viewManager.ChangeViewWithFloorControl;
|
||||||
|
|
||||||
topCanvas.panel_toolbar.onClickCameraView += viewManager.ChangeViewWithButtonClick;
|
topCanvas.panel_toolbar.onClickCameraView += viewManager.ChangeViewWithButtonClick;
|
||||||
topCanvas.panel_toolbar.onClickDashBoard += popupCanvas.panel_dashboard.Open;
|
topCanvas.panel_toolbar.onClickDashBoard += popupCanvas.panel_dashboard.ActiveDashBoard;
|
||||||
topCanvas.panel_toolbar.onClickCustomView += controller.SaveTargetPosition;
|
topCanvas.panel_toolbar.onClickCustomView += controller.SaveTargetPosition;
|
||||||
topCanvas.panel_toolbar.onClickMiniMap += popupCanvas.panel_minimap.SetActive;
|
topCanvas.panel_toolbar.onClickMiniMap += popupCanvas.panel_minimap.SetActive;
|
||||||
topCanvas.panel_toolbar.onClickFloorControl += rightCanvas.panel_floorcontrol.SetActive;
|
topCanvas.panel_toolbar.onClickFloorControl += rightCanvas.panel_floorcontrol.SetActive;
|
||||||
@@ -55,8 +55,6 @@ namespace CHN
|
|||||||
rightCanvas.panel_floorcontrol.onValueChanged += building.SetTopFloor;
|
rightCanvas.panel_floorcontrol.onValueChanged += building.SetTopFloor;
|
||||||
rightCanvas.panel_floorcontrol.onValueChanged += popupCanvas.panel_minimap.ChangeMiniMapFloor;
|
rightCanvas.panel_floorcontrol.onValueChanged += popupCanvas.panel_minimap.ChangeMiniMapFloor;
|
||||||
|
|
||||||
popupCanvas.panel_dashboard.dashBoardCheckListBox.onCloseDashboard += topCanvas.panel_toolbar.SetDashboard;
|
|
||||||
|
|
||||||
popupCanvas.panel_library.onClickLabelButton += libraryManager.LibraryFiltering;
|
popupCanvas.panel_library.onClickLabelButton += libraryManager.LibraryFiltering;
|
||||||
popupCanvas.panel_protocolsetting.onUpdateMachine += libraryManager.MatchingMachine;
|
popupCanvas.panel_protocolsetting.onUpdateMachine += libraryManager.MatchingMachine;
|
||||||
popupCanvas.panel_library.onClickLibraryButton += popupCanvas.MachineDashBoardOpen;
|
popupCanvas.panel_library.onClickLibraryButton += popupCanvas.MachineDashBoardOpen;
|
||||||
|
|||||||
@@ -46,9 +46,9 @@ namespace CHN
|
|||||||
|
|
||||||
dashBoardCheckListBox.Init(dashboardItem);
|
dashBoardCheckListBox.Init(dashboardItem);
|
||||||
}
|
}
|
||||||
public void Open()
|
public void ActiveDashBoard(bool isActive)
|
||||||
{
|
{
|
||||||
SetActive(true);
|
SetActive(isActive);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ public class Panel_ToolBar : PanelBase
|
|||||||
private CaptureBase capture;
|
private CaptureBase capture;
|
||||||
|
|
||||||
public Action<ViewMode> onClickCameraView;
|
public Action<ViewMode> onClickCameraView;
|
||||||
public Action onClickDashBoard;
|
public Action<bool> onClickDashBoard;
|
||||||
|
|
||||||
public Action<int> onClickCustomView;
|
public Action<int> onClickCustomView;
|
||||||
public Action onClickMiniMap;
|
public Action onClickMiniMap;
|
||||||
@@ -153,12 +153,10 @@ public class Panel_ToolBar : PanelBase
|
|||||||
|
|
||||||
private void OnClickDashBoard()
|
private void OnClickDashBoard()
|
||||||
{
|
{
|
||||||
Image_DashboardActive.gameObject.SetActive(true);
|
var isActive = Image_DashboardActive.gameObject.activeSelf ? false : true;
|
||||||
onClickDashBoard?.Invoke();
|
Image_DashboardActive.gameObject.SetActive(isActive);
|
||||||
}
|
|
||||||
public void SetDashboard()
|
onClickDashBoard?.Invoke(isActive);
|
||||||
{
|
|
||||||
Image_DashboardActive.gameObject.SetActive(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnClickShoulderView()
|
private void OnClickShoulderView()
|
||||||
|
|||||||
@@ -51,17 +51,6 @@ namespace CHN
|
|||||||
item.transform.localScale = Vector3.one;
|
item.transform.localScale = Vector3.one;
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Update()
|
|
||||||
{
|
|
||||||
if (Input.GetMouseButtonDown(0))
|
|
||||||
{
|
|
||||||
if (EventSystem.current.currentSelectedGameObject != null)
|
|
||||||
return;
|
|
||||||
transform.parent.gameObject.SetActive(false);
|
|
||||||
onCloseDashboard?.Invoke();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,13 +55,13 @@
|
|||||||
"cycletime": "95.00",
|
"cycletime": "95.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "454.00000",
|
"planqty": "454.00000",
|
||||||
"goalqty": "251.00000",
|
"goalqty": "289.00000",
|
||||||
"workqty": "252.00000",
|
"workqty": "289.00000",
|
||||||
"goodqty": "252.00000",
|
"goodqty": "289.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.04597",
|
"efficiency": "99.94903",
|
||||||
"progressrate": "55.50661",
|
"progressrate": "63.65639",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "718",
|
"goaltime": "718",
|
||||||
@@ -90,13 +90,13 @@
|
|||||||
"cycletime": "58.00",
|
"cycletime": "58.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1489.00000",
|
"planqty": "1489.00000",
|
||||||
"goalqty": "825.00000",
|
"goalqty": "947.00000",
|
||||||
"workqty": "784.00000",
|
"workqty": "900.00000",
|
||||||
"goodqty": "784.00000",
|
"goodqty": "900.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "95.02633",
|
"efficiency": "95.02658",
|
||||||
"progressrate": "52.65279",
|
"progressrate": "60.44325",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -125,13 +125,13 @@
|
|||||||
"cycletime": "85.00",
|
"cycletime": "85.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "508.00000",
|
"planqty": "508.00000",
|
||||||
"goalqty": "281.00000",
|
"goalqty": "323.00000",
|
||||||
"workqty": "283.00000",
|
"workqty": "324.00000",
|
||||||
"goodqty": "283.00000",
|
"goodqty": "324.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.55177",
|
"efficiency": "100.28038",
|
||||||
"progressrate": "55.70866",
|
"progressrate": "63.77953",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "719",
|
"goaltime": "719",
|
||||||
@@ -160,13 +160,13 @@
|
|||||||
"cycletime": "54.00",
|
"cycletime": "54.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1600.00000",
|
"planqty": "1600.00000",
|
||||||
"goalqty": "885.00000",
|
"goalqty": "1017.00000",
|
||||||
"workqty": "878.00000",
|
"workqty": "1006.00000",
|
||||||
"goodqty": "878.00000",
|
"goodqty": "1006.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "99.10121",
|
"efficiency": "98.91118",
|
||||||
"progressrate": "54.87500",
|
"progressrate": "62.87500",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1440",
|
"goaltime": "1440",
|
||||||
@@ -230,13 +230,13 @@
|
|||||||
"cycletime": "78.00",
|
"cycletime": "78.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "553.00000",
|
"planqty": "553.00000",
|
||||||
"goalqty": "306.00000",
|
"goalqty": "351.00000",
|
||||||
"workqty": "308.00000",
|
"workqty": "354.00000",
|
||||||
"goodqty": "308.00000",
|
"goodqty": "354.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.45578",
|
"efficiency": "100.57184",
|
||||||
"progressrate": "55.69620",
|
"progressrate": "64.01447",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "718",
|
"goaltime": "718",
|
||||||
@@ -265,13 +265,13 @@
|
|||||||
"cycletime": "87.00",
|
"cycletime": "87.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "496.00000",
|
"planqty": "496.00000",
|
||||||
"goalqty": "274.00000",
|
"goalqty": "315.00000",
|
||||||
"workqty": "211.00000",
|
"workqty": "251.00000",
|
||||||
"goodqty": "211.00000",
|
"goodqty": "251.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "76.77220",
|
"efficiency": "79.54901",
|
||||||
"progressrate": "42.54032",
|
"progressrate": "50.60484",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "719",
|
"goaltime": "719",
|
||||||
@@ -300,13 +300,13 @@
|
|||||||
"cycletime": "50.00",
|
"cycletime": "50.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1728.00000",
|
"planqty": "1728.00000",
|
||||||
"goalqty": "956.00000",
|
"goalqty": "1097.00000",
|
||||||
"workqty": "962.00000",
|
"workqty": "1104.00000",
|
||||||
"goodqty": "962.00000",
|
"goodqty": "1104.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.59394",
|
"efficiency": "100.55377",
|
||||||
"progressrate": "55.67130",
|
"progressrate": "63.88889",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -335,13 +335,13 @@
|
|||||||
"cycletime": "68.00",
|
"cycletime": "68.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "635.00000",
|
"planqty": "635.00000",
|
||||||
"goalqty": "351.00000",
|
"goalqty": "403.00000",
|
||||||
"workqty": "339.00000",
|
"workqty": "393.00000",
|
||||||
"goodqty": "339.00000",
|
"goodqty": "393.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "96.43171",
|
"efficiency": "97.37293",
|
||||||
"progressrate": "53.38583",
|
"progressrate": "61.88976",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "719",
|
"goaltime": "719",
|
||||||
@@ -370,13 +370,13 @@
|
|||||||
"cycletime": "72.00",
|
"cycletime": "72.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1200.00000",
|
"planqty": "1200.00000",
|
||||||
"goalqty": "663.00000",
|
"goalqty": "762.00000",
|
||||||
"workqty": "670.00000",
|
"workqty": "770.00000",
|
||||||
"goodqty": "670.00000",
|
"goodqty": "770.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.91206",
|
"efficiency": "101.01305",
|
||||||
"progressrate": "55.83333",
|
"progressrate": "64.16667",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1440",
|
"goaltime": "1440",
|
||||||
@@ -405,13 +405,13 @@
|
|||||||
"cycletime": "73.00",
|
"cycletime": "73.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1183.00000",
|
"planqty": "1183.00000",
|
||||||
"goalqty": "654.00000",
|
"goalqty": "751.00000",
|
||||||
"workqty": "644.00000",
|
"workqty": "740.00000",
|
||||||
"goodqty": "644.00000",
|
"goodqty": "740.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "98.35558",
|
"efficiency": "98.43653",
|
||||||
"progressrate": "54.43787",
|
"progressrate": "62.55283",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -440,13 +440,13 @@
|
|||||||
"cycletime": "35.00",
|
"cycletime": "35.00",
|
||||||
"cavity": "4",
|
"cavity": "4",
|
||||||
"planqty": "4937.00000",
|
"planqty": "4937.00000",
|
||||||
"goalqty": "2730.00000",
|
"goalqty": "3135.00000",
|
||||||
"workqty": "2080.00000",
|
"workqty": "2484.00000",
|
||||||
"goodqty": "2054.00000",
|
"goodqty": "2459.00000",
|
||||||
"badqty": "26.00000",
|
"badqty": "25.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "75.21448",
|
"efficiency": "78.42628",
|
||||||
"progressrate": "41.60421",
|
"progressrate": "49.80758",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "2879",
|
"goaltime": "2879",
|
||||||
@@ -475,13 +475,13 @@
|
|||||||
"cycletime": "55.00",
|
"cycletime": "55.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1570.00000",
|
"planqty": "1570.00000",
|
||||||
"goalqty": "868.00000",
|
"goalqty": "997.00000",
|
||||||
"workqty": "504.00000",
|
"workqty": "622.00000",
|
||||||
"goodqty": "484.00000",
|
"goodqty": "602.00000",
|
||||||
"badqty": "20.00000",
|
"badqty": "20.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "55.70902",
|
"efficiency": "60.34923",
|
||||||
"progressrate": "30.82803",
|
"progressrate": "38.34395",
|
||||||
"sttm": "0746",
|
"sttm": "0746",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -536,8 +536,8 @@
|
|||||||
"workcd": "IJ16",
|
"workcd": "IJ16",
|
||||||
"worknm": "Injector No.16",
|
"worknm": "Injector No.16",
|
||||||
"workseq": "1",
|
"workseq": "1",
|
||||||
"status": "1",
|
"status": "2",
|
||||||
"statusnm": "가동중",
|
"statusnm": "비가동",
|
||||||
"itemcd": "24298740",
|
"itemcd": "24298740",
|
||||||
"itemdesc": "BAFFLE ASM-FRT DIFF CARR",
|
"itemdesc": "BAFFLE ASM-FRT DIFF CARR",
|
||||||
"pjtcd": "GF9",
|
"pjtcd": "GF9",
|
||||||
@@ -545,13 +545,13 @@
|
|||||||
"cycletime": "58.00",
|
"cycletime": "58.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1489.00000",
|
"planqty": "1489.00000",
|
||||||
"goalqty": "823.00000",
|
"goalqty": "941.00000",
|
||||||
"workqty": "742.00000",
|
"workqty": "798.00000",
|
||||||
"goodqty": "742.00000",
|
"goodqty": "798.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "90.13530",
|
"efficiency": "84.79097",
|
||||||
"progressrate": "49.83210",
|
"progressrate": "53.59302",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -615,13 +615,13 @@
|
|||||||
"cycletime": "59.00",
|
"cycletime": "59.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "732.00000",
|
"planqty": "732.00000",
|
||||||
"goalqty": "404.00000",
|
"goalqty": "464.00000",
|
||||||
"workqty": "400.00000",
|
"workqty": "461.00000",
|
||||||
"goodqty": "400.00000",
|
"goodqty": "461.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "98.88130",
|
"efficiency": "99.24107",
|
||||||
"progressrate": "54.64481",
|
"progressrate": "62.97814",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "719",
|
"goaltime": "719",
|
||||||
@@ -650,13 +650,13 @@
|
|||||||
"cycletime": "55.00",
|
"cycletime": "55.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "785.00000",
|
"planqty": "785.00000",
|
||||||
"goalqty": "433.00000",
|
"goalqty": "498.00000",
|
||||||
"workqty": "452.00000",
|
"workqty": "514.00000",
|
||||||
"goodqty": "452.00000",
|
"goodqty": "511.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "3.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "104.17802",
|
"efficiency": "102.56176",
|
||||||
"progressrate": "57.57962",
|
"progressrate": "65.09554",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "719",
|
"goaltime": "719",
|
||||||
@@ -685,13 +685,13 @@
|
|||||||
"cycletime": "70.00",
|
"cycletime": "70.00",
|
||||||
"cavity": "4",
|
"cavity": "4",
|
||||||
"planqty": "2468.00000",
|
"planqty": "2468.00000",
|
||||||
"goalqty": "1363.00000",
|
"goalqty": "1565.00000",
|
||||||
"workqty": "1260.00000",
|
"workqty": "1468.00000",
|
||||||
"goodqty": "1260.00000",
|
"goodqty": "1468.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "92.41408",
|
"efficiency": "93.75912",
|
||||||
"progressrate": "51.05348",
|
"progressrate": "59.48136",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "2879",
|
"goaltime": "2879",
|
||||||
@@ -755,13 +755,13 @@
|
|||||||
"cycletime": "50.00",
|
"cycletime": "50.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1728.00000",
|
"planqty": "1728.00000",
|
||||||
"goalqty": "954.00000",
|
"goalqty": "1095.00000",
|
||||||
"workqty": "990.00000",
|
"workqty": "1138.00000",
|
||||||
"goodqty": "990.00000",
|
"goodqty": "1138.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "103.75618",
|
"efficiency": "103.85486",
|
||||||
"progressrate": "57.29167",
|
"progressrate": "65.85648",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -790,13 +790,13 @@
|
|||||||
"cycletime": "39.00",
|
"cycletime": "39.00",
|
||||||
"cavity": "4",
|
"cavity": "4",
|
||||||
"planqty": "4430.00000",
|
"planqty": "4430.00000",
|
||||||
"goalqty": "2445.00000",
|
"goalqty": "2809.00000",
|
||||||
"workqty": "2584.00000",
|
"workqty": "2964.00000",
|
||||||
"goodqty": "2584.00000",
|
"goodqty": "2964.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "105.64408",
|
"efficiency": "105.51701",
|
||||||
"progressrate": "58.32957",
|
"progressrate": "66.90745",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "2879",
|
"goaltime": "2879",
|
||||||
@@ -825,13 +825,13 @@
|
|||||||
"cycletime": "47.00",
|
"cycletime": "47.00",
|
||||||
"cavity": "2",
|
"cavity": "2",
|
||||||
"planqty": "1838.00000",
|
"planqty": "1838.00000",
|
||||||
"goalqty": "1014.00000",
|
"goalqty": "1165.00000",
|
||||||
"workqty": "986.00000",
|
"workqty": "1136.00000",
|
||||||
"goodqty": "986.00000",
|
"goodqty": "1136.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "97.17749",
|
"efficiency": "97.48758",
|
||||||
"progressrate": "53.64527",
|
"progressrate": "61.80631",
|
||||||
"sttm": "0747",
|
"sttm": "0747",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "1439",
|
"goaltime": "1439",
|
||||||
@@ -860,13 +860,13 @@
|
|||||||
"cycletime": "18.00",
|
"cycletime": "18.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "1764.00000",
|
"planqty": "1764.00000",
|
||||||
"goalqty": "1277.00000",
|
"goalqty": "1474.00000",
|
||||||
"workqty": "1169.00000",
|
"workqty": "1344.00000",
|
||||||
"goodqty": "1169.00000",
|
"goodqty": "1344.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "91.48696",
|
"efficiency": "91.15641",
|
||||||
"progressrate": "66.26984",
|
"progressrate": "76.19048",
|
||||||
"sttm": "0801",
|
"sttm": "0801",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "529",
|
"goaltime": "529",
|
||||||
@@ -895,13 +895,13 @@
|
|||||||
"cycletime": "20.00",
|
"cycletime": "20.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "1596.00000",
|
"planqty": "1596.00000",
|
||||||
"goalqty": "1173.00000",
|
"goalqty": "1350.00000",
|
||||||
"workqty": "930.00000",
|
"workqty": "1082.00000",
|
||||||
"goodqty": "930.00000",
|
"goodqty": "1082.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "79.28051",
|
"efficiency": "80.14815",
|
||||||
"progressrate": "58.27068",
|
"progressrate": "67.79449",
|
||||||
"sttm": "0754",
|
"sttm": "0754",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "531",
|
"goaltime": "531",
|
||||||
@@ -930,13 +930,13 @@
|
|||||||
"cycletime": "20.00",
|
"cycletime": "20.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "990.00000",
|
"planqty": "990.00000",
|
||||||
"goalqty": "1136.00000",
|
"goalqty": "1313.00000",
|
||||||
"workqty": "629.00000",
|
"workqty": "721.00000",
|
||||||
"goodqty": "629.00000",
|
"goodqty": "721.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "55.36241",
|
"efficiency": "54.90823",
|
||||||
"progressrate": "63.53535",
|
"progressrate": "72.82828",
|
||||||
"sttm": "0806",
|
"sttm": "0806",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "329",
|
"goaltime": "329",
|
||||||
@@ -965,13 +965,13 @@
|
|||||||
"cycletime": "15.00",
|
"cycletime": "15.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "1449.00000",
|
"planqty": "1449.00000",
|
||||||
"goalqty": "1534.00000",
|
"goalqty": "1770.00000",
|
||||||
"workqty": "887.00000",
|
"workqty": "1023.00000",
|
||||||
"goodqty": "887.00000",
|
"goodqty": "1022.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "1.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "57.79004",
|
"efficiency": "57.71403",
|
||||||
"progressrate": "61.21463",
|
"progressrate": "70.53140",
|
||||||
"sttm": "0801",
|
"sttm": "0801",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "362",
|
"goaltime": "362",
|
||||||
@@ -1000,13 +1000,13 @@
|
|||||||
"cycletime": "16.00",
|
"cycletime": "16.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "1428.00000",
|
"planqty": "1428.00000",
|
||||||
"goalqty": "1437.00000",
|
"goalqty": "1658.00000",
|
||||||
"workqty": "841.00000",
|
"workqty": "975.00000",
|
||||||
"goodqty": "840.00000",
|
"goodqty": "974.00000",
|
||||||
"badqty": "1.00000",
|
"badqty": "1.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "58.45003",
|
"efficiency": "58.73441",
|
||||||
"progressrate": "58.82353",
|
"progressrate": "68.20728",
|
||||||
"sttm": "0801",
|
"sttm": "0801",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "380",
|
"goaltime": "380",
|
||||||
@@ -1035,13 +1035,13 @@
|
|||||||
"cycletime": "11.00",
|
"cycletime": "11.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "2688.00000",
|
"planqty": "2688.00000",
|
||||||
"goalqty": "2090.00000",
|
"goalqty": "2411.00000",
|
||||||
"workqty": "1745.00000",
|
"workqty": "1987.00000",
|
||||||
"goodqty": "1745.00000",
|
"goodqty": "1987.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "83.48919",
|
"efficiency": "82.38598",
|
||||||
"progressrate": "64.91815",
|
"progressrate": "73.92113",
|
||||||
"sttm": "0801",
|
"sttm": "0801",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "492",
|
"goaltime": "492",
|
||||||
@@ -1070,13 +1070,13 @@
|
|||||||
"cycletime": "13.00",
|
"cycletime": "13.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "3120.00000",
|
"planqty": "3120.00000",
|
||||||
"goalqty": "1328.00000",
|
"goalqty": "1600.00000",
|
||||||
"workqty": "1106.00000",
|
"workqty": "1306.00000",
|
||||||
"goodqty": "1106.00000",
|
"goodqty": "1306.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "83.23974",
|
"efficiency": "81.57794",
|
||||||
"progressrate": "35.44872",
|
"progressrate": "41.85897",
|
||||||
"sttm": "0937",
|
"sttm": "0937",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "675",
|
"goaltime": "675",
|
||||||
@@ -1105,13 +1105,13 @@
|
|||||||
"cycletime": "28.00",
|
"cycletime": "28.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "680.00000",
|
"planqty": "680.00000",
|
||||||
"goalqty": "850.00000",
|
"goalqty": "977.00000",
|
||||||
"workqty": "409.00000",
|
"workqty": "476.00000",
|
||||||
"goodqty": "409.00000",
|
"goodqty": "476.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "48.06917",
|
"efficiency": "48.70811",
|
||||||
"progressrate": "60.14706",
|
"progressrate": "70.00000",
|
||||||
"sttm": "0748",
|
"sttm": "0748",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "317",
|
"goaltime": "317",
|
||||||
@@ -1175,13 +1175,13 @@
|
|||||||
"cycletime": "34.00",
|
"cycletime": "34.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "960.00000",
|
"planqty": "960.00000",
|
||||||
"goalqty": "692.00000",
|
"goalqty": "796.00000",
|
||||||
"workqty": "600.00000",
|
"workqty": "692.00000",
|
||||||
"goodqty": "600.00000",
|
"goodqty": "692.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "86.64260",
|
"efficiency": "86.87048",
|
||||||
"progressrate": "62.50000",
|
"progressrate": "72.08333",
|
||||||
"sttm": "0752",
|
"sttm": "0752",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "543",
|
"goaltime": "543",
|
||||||
@@ -1245,13 +1245,13 @@
|
|||||||
"cycletime": "13.00",
|
"cycletime": "13.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "2800.00000",
|
"planqty": "2800.00000",
|
||||||
"goalqty": "1803.00000",
|
"goalqty": "2076.00000",
|
||||||
"workqty": "1640.00000",
|
"workqty": "1924.00000",
|
||||||
"goodqty": "1640.00000",
|
"goodqty": "1924.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "90.91297",
|
"efficiency": "92.67136",
|
||||||
"progressrate": "58.57143",
|
"progressrate": "68.71429",
|
||||||
"sttm": "0754",
|
"sttm": "0754",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "606",
|
"goaltime": "606",
|
||||||
@@ -1298,35 +1298,35 @@
|
|||||||
{
|
{
|
||||||
"completeInfo": {
|
"completeInfo": {
|
||||||
"datagbn": "D",
|
"datagbn": "D",
|
||||||
"wordno": "WO202504150060",
|
"wordno": "WO202504150088",
|
||||||
"workdt": "20250415",
|
"workdt": "20250415",
|
||||||
"daynight": "1",
|
"daynight": "1",
|
||||||
"sitecd": "1",
|
"sitecd": "1",
|
||||||
"wccd": "W30",
|
"wccd": "W30",
|
||||||
"workcd": "GP-5",
|
"workcd": "GP-5",
|
||||||
"worknm": "최종검사-05",
|
"worknm": "최종검사-05",
|
||||||
"workseq": "2",
|
"workseq": "3",
|
||||||
"status": "1",
|
"status": "1",
|
||||||
"statusnm": "가동중",
|
"statusnm": "가동중",
|
||||||
"itemcd": "24298737-GMA",
|
"itemcd": "24299058-SGM",
|
||||||
"itemdesc": "BAFFLE ASM-FRT DIFF CARR",
|
"itemdesc": "BAFFLE-FRT DIFF CARR",
|
||||||
"pjtcd": "GF9",
|
"pjtcd": "GF6 GEN3",
|
||||||
"matcd": "",
|
"matcd": "",
|
||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "1980.00000",
|
"planqty": "888.00000",
|
||||||
"goalqty": "314.00000",
|
"goalqty": "76.00000",
|
||||||
"workqty": "660.00000",
|
"workqty": "0.00000",
|
||||||
"goodqty": "660.00000",
|
"goodqty": "0.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "209.79021",
|
"efficiency": "0.00000",
|
||||||
"progressrate": "33.33333",
|
"progressrate": "0.00000",
|
||||||
"sttm": "1255",
|
"sttm": "1509",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "329",
|
"goaltime": "147",
|
||||||
"ptotm": "2025-04-15 18:24:37",
|
"ptotm": "2025-04-15 17:36:16",
|
||||||
"psttm": "2025-04-15 12:55:37"
|
"psttm": "2025-04-15 15:09:16"
|
||||||
},
|
},
|
||||||
"isCheck": false
|
"isCheck": false
|
||||||
},
|
},
|
||||||
@@ -1350,13 +1350,13 @@
|
|||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "960.00000",
|
"planqty": "960.00000",
|
||||||
"goalqty": "155.00000",
|
"goalqty": "845.00000",
|
||||||
"workqty": "0.00000",
|
"workqty": "960.00000",
|
||||||
"goodqty": "0.00000",
|
"goodqty": "960.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "0.00000",
|
"efficiency": "113.55571",
|
||||||
"progressrate": "0.00000",
|
"progressrate": "100.00000",
|
||||||
"sttm": "1301",
|
"sttm": "1301",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "159",
|
"goaltime": "159",
|
||||||
@@ -1403,35 +1403,35 @@
|
|||||||
{
|
{
|
||||||
"completeInfo": {
|
"completeInfo": {
|
||||||
"datagbn": "D",
|
"datagbn": "D",
|
||||||
"wordno": "WO202504150055",
|
"wordno": "WO202504150089",
|
||||||
"workdt": "20250415",
|
"workdt": "20250415",
|
||||||
"daynight": "1",
|
"daynight": "1",
|
||||||
"sitecd": "1",
|
"sitecd": "1",
|
||||||
"wccd": "W30",
|
"wccd": "W30",
|
||||||
"workcd": "GP-9",
|
"workcd": "GP-9",
|
||||||
"worknm": "최종검사-09",
|
"worknm": "최종검사-09",
|
||||||
"workseq": "1",
|
"workseq": "2",
|
||||||
"status": "1",
|
"status": "1",
|
||||||
"statusnm": "가동중",
|
"statusnm": "가동중",
|
||||||
"itemcd": "24299051-KOR",
|
"itemcd": "24299056-KOR",
|
||||||
"itemdesc": "BAFFLE-FRT DIFF CARR",
|
"itemdesc": "BAFFLE-FRT DIFF CARR",
|
||||||
"pjtcd": "GF6 GEN3",
|
"pjtcd": "GF6 GEN3",
|
||||||
"matcd": "",
|
"matcd": "",
|
||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "2560.00000",
|
"planqty": "792.00000",
|
||||||
"goalqty": "2193.00000",
|
"goalqty": "130.00000",
|
||||||
"workqty": "1856.00000",
|
"workqty": "0.00000",
|
||||||
"goodqty": "1856.00000",
|
"goodqty": "0.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "84.59820",
|
"efficiency": "0.00000",
|
||||||
"progressrate": "72.50000",
|
"progressrate": "0.00000",
|
||||||
"sttm": "0759",
|
"sttm": "1500",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "426",
|
"goaltime": "131",
|
||||||
"ptotm": "2025-04-15 15:05:25",
|
"ptotm": "2025-04-15 17:11:17",
|
||||||
"psttm": "2025-04-15 07:59:25"
|
"psttm": "2025-04-15 15:00:17"
|
||||||
},
|
},
|
||||||
"isCheck": false
|
"isCheck": false
|
||||||
},
|
},
|
||||||
@@ -1455,13 +1455,13 @@
|
|||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "2622.00000",
|
"planqty": "2622.00000",
|
||||||
"goalqty": "1968.00000",
|
"goalqty": "2658.00000",
|
||||||
"workqty": "1518.00000",
|
"workqty": "2070.00000",
|
||||||
"goodqty": "1518.00000",
|
"goodqty": "2070.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "77.10672",
|
"efficiency": "77.85760",
|
||||||
"progressrate": "57.89474",
|
"progressrate": "78.94737",
|
||||||
"sttm": "0758",
|
"sttm": "0758",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "436",
|
"goaltime": "436",
|
||||||
@@ -1490,13 +1490,13 @@
|
|||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "2684.00000",
|
"planqty": "2684.00000",
|
||||||
"goalqty": "1964.00000",
|
"goalqty": "2654.00000",
|
||||||
"workqty": "1980.00000",
|
"workqty": "2642.00000",
|
||||||
"goodqty": "1980.00000",
|
"goodqty": "2640.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "2.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "100.79414",
|
"efficiency": "99.45750",
|
||||||
"progressrate": "73.77049",
|
"progressrate": "98.36066",
|
||||||
"sttm": "0759",
|
"sttm": "0759",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "447",
|
"goaltime": "447",
|
||||||
@@ -1630,13 +1630,13 @@
|
|||||||
"cycletime": "10.00",
|
"cycletime": "10.00",
|
||||||
"cavity": "1",
|
"cavity": "1",
|
||||||
"planqty": "3180.00000",
|
"planqty": "3180.00000",
|
||||||
"goalqty": "2299.00000",
|
"goalqty": "2653.00000",
|
||||||
"workqty": "2160.00000",
|
"workqty": "2420.00000",
|
||||||
"goodqty": "2160.00000",
|
"goodqty": "2420.00000",
|
||||||
"badqty": "0.00000",
|
"badqty": "0.00000",
|
||||||
"adrate": "",
|
"adrate": "",
|
||||||
"efficiency": "93.92529",
|
"efficiency": "91.19686",
|
||||||
"progressrate": "67.92453",
|
"progressrate": "76.10063",
|
||||||
"sttm": "0801",
|
"sttm": "0801",
|
||||||
"totm": "",
|
"totm": "",
|
||||||
"goaltime": "529",
|
"goaltime": "529",
|
||||||
@@ -1714,6 +1714,41 @@
|
|||||||
"psttm": "2025-04-15 07:58:48"
|
"psttm": "2025-04-15 07:58:48"
|
||||||
},
|
},
|
||||||
"isCheck": false
|
"isCheck": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"completeInfo": {
|
||||||
|
"datagbn": "D",
|
||||||
|
"wordno": "WO202504150038",
|
||||||
|
"workdt": "20250415",
|
||||||
|
"daynight": "1",
|
||||||
|
"sitecd": "1",
|
||||||
|
"wccd": "W20",
|
||||||
|
"workcd": "CAP-P",
|
||||||
|
"worknm": "CAP O-Ring Printing",
|
||||||
|
"workseq": "1",
|
||||||
|
"status": "4",
|
||||||
|
"statusnm": "계획정지",
|
||||||
|
"itemcd": "00000000",
|
||||||
|
"itemdesc": "None",
|
||||||
|
"pjtcd": "None",
|
||||||
|
"matcd": "",
|
||||||
|
"cycletime": "0.00",
|
||||||
|
"cavity": "1",
|
||||||
|
"planqty": "0.00000",
|
||||||
|
"goalqty": "0.00000",
|
||||||
|
"workqty": "0.00000",
|
||||||
|
"goodqty": "0.00000",
|
||||||
|
"badqty": "0.00000",
|
||||||
|
"adrate": "",
|
||||||
|
"efficiency": "0.00000",
|
||||||
|
"progressrate": "0.00000",
|
||||||
|
"sttm": "0753",
|
||||||
|
"totm": "",
|
||||||
|
"goaltime": "0",
|
||||||
|
"ptotm": "2025-04-15 07:53:47",
|
||||||
|
"psttm": "2025-04-15 07:53:47"
|
||||||
|
},
|
||||||
|
"isCheck": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user