From 19f547966576f3604cc18431bd2f6e2dc0bdaead Mon Sep 17 00:00:00 2001
From: chenluhua1980 <Chenluhua@qq.com>
Date: 星期四, 11 十二月 2025 10:50:48 +0800
Subject: [PATCH] 1.新增/编辑变量权权和操作记录;
---
SourceCode/Bond/Servo/CPageVarialbles.cpp | 12 ++++++++++++
SourceCode/Bond/Servo/CUserManager2.cpp | 2 ++
SourceCode/Bond/x64/Debug/VariableList.txt | 2 +-
3 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/SourceCode/Bond/Servo/CPageVarialbles.cpp b/SourceCode/Bond/Servo/CPageVarialbles.cpp
index 07f8123..f2c2587 100644
--- a/SourceCode/Bond/Servo/CPageVarialbles.cpp
+++ b/SourceCode/Bond/Servo/CPageVarialbles.cpp
@@ -162,6 +162,11 @@
{
ASSERT(btnName);
if (_strcmpi(btnName, "鏂板") == 0) {
+ int rc = UX_CanExecute(L"addVarialbles");
+ if (rc != 1) {
+ AfxMessageBox("鎿嶄綔鏉冮檺涓嶈冻锛岃鑱旂郴绠$悊浜哄憳锛�");
+ return;
+ }
unsigned int newId = theApp.m_model.m_hsmsPassive.getMaxVariableId();
int newIdInt = static_cast<int>(newId + 1);
CVariableEditDlg2 dlg(_T("鏂板鍙橀噺"), newIdInt, _T("U1"), _T(""), _T(""), this);
@@ -172,6 +177,7 @@
int ret = theApp.m_model.m_hsmsPassive.addVariable(CT2A(name), CT2A(fmt), CT2A(remark), newIdInt);
if (ret == 0) {
+ UX_RecordAction(L"addVarialbles");
m_listCtrl.DeleteAllItems();
loadVariables();
}
@@ -208,6 +214,11 @@
auto pVar = reinterpret_cast<SERVO::CVariable*>(m_listCtrl.GetItemData(nItem));
if (pVar == nullptr) return;
+ int rc = UX_CanExecute(L"editVarialbles");
+ if (rc != 1) {
+ AfxMessageBox("鎿嶄綔鏉冮檺涓嶈冻锛岃鑱旂郴绠$悊浜哄憳锛�");
+ return;
+ }
CVariableEditDlg2 dlg(_T("缂栬緫鍙橀噺"),
pVar->getVarialbleId(),
CString(CA2T(SERVO::CVariable::formatToString(pVar->getFormat()).c_str())),
@@ -221,6 +232,7 @@
int ret = theApp.m_model.m_hsmsPassive.updateVariable(pVar->getVarialbleId(), CT2A(name), CT2A(fmt), CT2A(remark));
if (ret == 0) {
+ UX_RecordAction(L"editVarialbles");
m_listCtrl.DeleteAllItems();
loadVariables();
}
diff --git a/SourceCode/Bond/Servo/CUserManager2.cpp b/SourceCode/Bond/Servo/CUserManager2.cpp
index 3e6073a..251b65e 100644
--- a/SourceCode/Bond/Servo/CUserManager2.cpp
+++ b/SourceCode/Bond/Servo/CUserManager2.cpp
@@ -75,6 +75,8 @@
UX_DefineAction(L"stop", L"鍋滄満", L"Operator");
UX_DefineAction(L"recipe", L"缂栬緫閰嶆柟", L"PE");
UX_DefineAction(L"delVarialbles", L"鍒犻櫎鍙橀噺", L"PE");
+ UX_DefineAction(L"addVarialbles", L"鏂板鍙橀噺", L"PE");
+ UX_DefineAction(L"editVarialbles", L"缂栬緫鍙橀噺", L"PE");
}
}
diff --git a/SourceCode/Bond/x64/Debug/VariableList.txt b/SourceCode/Bond/x64/Debug/VariableList.txt
index 4b080e6..dbfe45b 100644
--- a/SourceCode/Bond/x64/Debug/VariableList.txt
+++ b/SourceCode/Bond/x64/Debug/VariableList.txt
@@ -47,4 +47,4 @@
5010,UnloadReadyPortId,U1,"Port ID"
5011,LoadReadyPortId,U1,"Port ID"
5012,BlockedPortId,U1,"Port ID"
-5013,TestVID,U1,娴嬭瘯娣诲姞鍙橀噺44
+5013,TestVID,U1,娴嬭瘯娣诲姞鍙橀噺55
--
Gitblit v1.9.3