From 03ef0b51103c735077c784c7df81ae2bcc1599ab Mon Sep 17 00:00:00 2001
From: LiFan <2308045698@qq.com>
Date: 星期四, 13 二月 2025 18:33:56 +0800
Subject: [PATCH] update
---
jrj/xframe/vbusiness/vframe/frame.vframe.vbusiness.hpp | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/jrj/xframe/vbusiness/vframe/frame.vframe.vbusiness.hpp b/jrj/xframe/vbusiness/vframe/frame.vframe.vbusiness.hpp
index dc9398a..76b8051 100644
--- a/jrj/xframe/vbusiness/vframe/frame.vframe.vbusiness.hpp
+++ b/jrj/xframe/vbusiness/vframe/frame.vframe.vbusiness.hpp
@@ -126,7 +126,7 @@
xstring comdid = arg.GetArgString(L"comdid");
if (comdid ==L"xmOK")
{
- string value = arg.GetArgString(L"content");
+ xstring value = arg.GetArgString(L"content");
return value;
}
return L"";
@@ -167,13 +167,13 @@
if (MessageBoxW(GetHWND(),L"是否确定删除记录!",L"提示", 1) == 2)
return 1;
}
-
+
xaserverarg& arg = *(new xaserverarg);
arg.AddArg(L"Action", action);
KXMLDOMDocument x;
xstring aurl =L"/workflow/query/actioninfo/" + action;
-
+
if (xurl::get(GetServerUrl(),aurl,L"", x) != 1)
return -1;
@@ -284,8 +284,8 @@
if (x1.selectSingleNode(L"//process"))
{
KXMLDOMElement e1 = x1.selectSingleNode(L"//process");
- string valid = e1.getAttribute(L"valid");
- string finished = e1.getAttribute(L"finished");
+ xstring valid = e1.getAttribute(L"valid");
+ xstring finished = e1.getAttribute(L"finished");
xstring errInfo =L"";
if (valid ==L"0")
{
@@ -337,7 +337,7 @@
}
}
//更新要求
- if (execResult & 0xf)
+ if (execResult)
{
nlist = x.selectNodes(L"//view/update");
nlen = nlist.length();
@@ -384,7 +384,7 @@
return 1;
}
- virtual string GetTaskID()
+ virtual xstring GetTaskID()
{
return L"";
}
--
Gitblit v1.9.3