From c29c4c815cca07876421f764f4b9a5f6f86068f2 Mon Sep 17 00:00:00 2001
From: xj qian <qianxj15@sina.com>
Date: 星期五, 30 八月 2024 11:41:05 +0800
Subject: [PATCH] Merge branch 'master' of http://116.62.18.175:6699/r/mis-prj

---
 jrj/xframe/xcontrol/xdwtable.hpp |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/jrj/xframe/xcontrol/xdwtable.hpp b/jrj/xframe/xcontrol/xdwtable.hpp
index 05f76fc..c51aa4b 100644
--- a/jrj/xframe/xcontrol/xdwtable.hpp
+++ b/jrj/xframe/xcontrol/xdwtable.hpp
@@ -453,24 +453,28 @@
 	int GetItemInt(int row, int col)
 	{
 		xstring str = GetItemString(row, col);
+		str = str.replace(L",", L"");
 		return str.toInt();
 	}
 
 	double GetItemDouble(int row, int col)
 	{
 		xstring str = GetItemString(row, col);
+		str = str.replace(L",", L"");
 		return str.toDouble();
 	}
 
 	int GetItemInt(int row, string col)
 	{
 		xstring str = GetItemString(row, col);
+		str = str.replace(L",", L"");
 		return str.toInt();
 	}
 
 	double GetItemDouble(int row, string col)
 	{
 		xstring str = GetItemString(row, col);
+		str = str.replace(L",", L"");
 		return str.toDouble();
 	}
 

--
Gitblit v1.9.3