Compare commits

...

2 Commits

Author SHA1 Message Date
Seonjae 578889488f Merge branch 'main' of http://192.168.11.65:3000/SJ84/INT_PT002 into main 2025-05-27 17:24:54 +09:00
Seonjae b46d75da14 no message 2025-05-27 17:24:50 +09:00
3 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@ -548,14 +548,17 @@ namespace INT_PT002.Forms
this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Developer) this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Developer)
{ {
this.buttonBottom3.Visible = true; this.buttonBottom3.Visible = true;
this.buttonBottom4.Visible = true;
} }
else else
{ {
this.buttonBottom3.Visible = false; this.buttonBottom3.Visible = false;
this.buttonBottom4.Visible = false;
} }
if (this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Developer)
this.buttonBottom4.Visible = true;
else
this.buttonBottom4.Visible = false;
this.SelectedMenuSystem = Define.E_MenuSystemStore._1_Information; this.SelectedMenuSystem = Define.E_MenuSystemStore._1_Information;
this.SetBottomMenuSystem(this.SelectedMenuSystem); this.SetBottomMenuSystem(this.SelectedMenuSystem);
break; break;