작업 시간 분석 UI 수정

This commit is contained in:
정영민
2025-04-07 14:43:53 +09:00
parent 1e913854c8
commit 8d51d0ea70
5 changed files with 1653 additions and 1323 deletions

View File

@@ -19,7 +19,7 @@ namespace CHN
//private TMP_InputField InputField_WorkOrderNumber;
private Button Button_Search;
private Button Button_Close;
private TextMeshProUGUI NotDataText;
private RectTransform Panel_NotData;
private TextMeshProUGUI ITEMCD;
private UI_Calendar ui_Calendar;
@@ -71,6 +71,7 @@ namespace CHN
public void Close()
{
effect.DeactivePanel(gameObject);
ui_Calendar.Close();
gameObject.SetActive(false);
gameObject.transform.localScale = Vector3.zero;
}
@@ -158,11 +159,11 @@ namespace CHN
{
if (barChartData.Count == 0)
{
NotDataText.gameObject.SetActive(true);
Panel_NotData.gameObject.SetActive(true);
ChartData.gameObject.SetActive(false);
return;
}
NotDataText.gameObject.SetActive(false);
Panel_NotData.gameObject.SetActive(false);
ChartData.gameObject.SetActive(true);
if (barChartData.Count > 0)