mrDarker
2025-09-05 6b80da0fe2a6053b39802a6701db6df0ab1fde24
SourceCode/Bond/Servo/ServoDlg.cpp
@@ -27,6 +27,7 @@
#include "CPageReport.h"
#include "CPageCollectionEvent.h"
#include "CControlJobDlg.h"
#include "InputDialog.h"
#ifdef _DEBUG
@@ -242,7 +243,7 @@
                  pEq2 = theApp.m_model.getMaster().getEquipment(pTask->getTarPosition());
                  if (pEq1 != nullptr && pEq2 != nullptr) {
                     CString strText;
                     if (theApp.m_model.getMaster().getContinuousTransferCount() > 0) {
                     if (theApp.m_model.getMaster().getState() == SERVO::MASTERSTATE::RUNNING_CONTINUOUS_TRANSFER) {
                        strText.Format(_T("[%d]%s --> %s"),
                           theApp.m_model.getMaster().getContinuousTransferCount(),
                           pEq1->getName().c_str(), pEq2->getName().c_str());
@@ -956,6 +957,28 @@
LRESULT CServoDlg::OnToolbarBtnClicked(WPARAM wParam, LPARAM lParam)
{
   int id = (int)lParam;
   if (id == IDC_BUTTON_RUN || id == IDC_BUTTON_STOP) {
      //CInputDialog inputDialog(_T("验证用户"), _T("请输入用户密码:"));
      //if (inputDialog.DoModal() != IDOK) {
      //   AfxMessageBox(_T("取消验证!"));
      //   return 0;
      //}
      //CString inputText = inputDialog.GetInputText();
      //std::string strPass = UserManager::getInstance().getCurrentPass();
      //if (inputText.Compare(strPass.c_str()) != 0) {
      //   AfxMessageBox(_T("密码错误!"));
      //   SystemLogManager::getInstance().log(SystemLogManager::LogType::Info, _T("验证时,密码错误!"));
      //   return 0;
      //}
      UserRole emRole = UserManager::getInstance().getCurrentUserRole();
      if (emRole != UserRole::SuperAdmin) {
         AfxMessageBox(_T("当前用户并非管理员!!!"));
         return 1;
      }
   }
   if (id == IDC_BUTTON_RUN) {
      if (theApp.m_model.getMaster().getState() == SERVO::MASTERSTATE::MSERROR) {
         AfxMessageBox("当前有机台发生错误,不能启动,请确认解决问题后再尝试重新启动!");