From bcf8dbd1059a51efe85fc9350b0ed27f84341703 Mon Sep 17 00:00:00 2001
From: LiFan <2308045698@qq.com>
Date: 星期四, 26 十二月 2024 10:14:36 +0800
Subject: [PATCH] update

---
 jrj/project/business/BasicCode/QuickCode.cpp |   17 ++++++++---------
 1 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/jrj/project/business/BasicCode/QuickCode.cpp b/jrj/project/business/BasicCode/QuickCode.cpp
index 1fd2885..ac65947 100644
--- a/jrj/project/business/BasicCode/QuickCode.cpp
+++ b/jrj/project/business/BasicCode/QuickCode.cpp
@@ -139,7 +139,7 @@
 				xml xi;
 
 				xaserverarg argi;
-				argi.setNativePointer(argi.CreateInstance());
+				
 				if (xurl::get(L"QuickCode/ExchangeRate/import", argi.GetString(), xi) != 1)
 				{
 					trace(xi.text());
@@ -401,10 +401,10 @@
 		{
 			p += L"&";
 			int i = 1;
-			while (p.find(L"=L", 0) > 0)
+			while (p.find(L"=", 0) > 0)
 			{
-				xstring name = p.mid(0, p.find(L"=L", 0));
-				xstring value = p.mid(p.find(L"=L", 0) + 1, p.find(L"&", 0) - p.find(L"=L", 0) - 1);
+				xstring name = p.mid(0, p.find(L"=", 0));
+				xstring value = p.mid(p.find(L"=", 0) + 1, p.find(L"&", 0) - p.find(L"=", 0) - 1);
 				if (name == n) return L"" + value;
 				i += 1;
 				p = p.mid(p.find(L"&", 0) + 1, p.length());
@@ -468,8 +468,7 @@
 
 		}
 		m_dbmap = dbmap;
-		dw_list = new xdwgrid;
-		dw_list.setNativePointer(GetControl(dwname));
+		dw_list = GetControl(dwname);
 		dw_list.openUrl(vface + L"/" + tpl);
 		//dw_list.SetSelectionMode(4);							
 		return 1;
@@ -480,7 +479,7 @@
 		xml x1;
 
 		xaserverarg arg1;
-		arg1.setNativePointer(arg1.CreateInstance());
+		
 		arg1.AddArg(L"id", L"地区");
 		if (xurl::get(L"/sale/data/QuickCode/entity/list", arg1.GetString(), x1) != 1)
 		{
@@ -515,7 +514,7 @@
 		xml x2;
 
 		xaserverarg arg2;
-		arg2.setNativePointer(arg2.CreateInstance());
+		
 		arg2.AddArg(L"id", L"FND_Currency");
 		if (xurl::get(L"/sale/data/QuickCode/entity/list", arg2.GetString(), x2) != 1)
 		{
@@ -550,7 +549,7 @@
 		xml x3;
 
 		xaserverarg arg3;
-		arg3.setNativePointer(arg3.CreateInstance());
+		
 		arg3.AddArg(L"id", L"FND_Country");
 		if (xurl::get(L"/sale/data/QuickCode/entity/list", arg3.GetString(), x3) != 1)
 		{

--
Gitblit v1.9.3