From 48666c5e1add6272d75fccebf3218c01ec9c8c79 Mon Sep 17 00:00:00 2001 From: LiFan <2308045698@qq.com> Date: 星期一, 08 七月 2024 17:05:20 +0800 Subject: [PATCH] update --- jrj/project/business/Public/search.dialog.cpp | 4 ++-- jrj/project/business/VATNotify/list.vatnotify.cpp | 2 +- jrj/project/business/PO/paperImage.cpp | 0 jrj/project/business/VATNotify/simple.maint.vatnotify.cpp | 6 +++--- jrj/ext-jrj/ext-jrj.vcxproj | 2 +- jrj/project/business/PO/Maint.PaperCard.PO.cpp | 0 jrj/project/business/VATNotify/update.vatnotify.cpp | 2 +- jrj/project/business/Public/message.business.cpp | 0 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jrj/ext-jrj/ext-jrj.vcxproj b/jrj/ext-jrj/ext-jrj.vcxproj index 70cd3d4..d8d70a7 100644 --- a/jrj/ext-jrj/ext-jrj.vcxproj +++ b/jrj/ext-jrj/ext-jrj.vcxproj @@ -368,7 +368,7 @@ <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> </ClCompile> <ClCompile Include="..\project\business\PO\paperImage.cpp"> - <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> + <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> </ClCompile> <ClCompile Include="..\project\business\PO\PO.BatchPrecess.polist.cpp"> diff --git a/jrj/project/business/PO/Maint.PaperCard.PO.cpp b/jrj/project/business/PO/Maint.PaperCard.PO.cpp index 94d5d6d..8331420 100644 --- a/jrj/project/business/PO/Maint.PaperCard.PO.cpp +++ b/jrj/project/business/PO/Maint.PaperCard.PO.cpp Binary files differ diff --git a/jrj/project/business/PO/paperImage.cpp b/jrj/project/business/PO/paperImage.cpp index b56a72c..8e158d3 100644 --- a/jrj/project/business/PO/paperImage.cpp +++ b/jrj/project/business/PO/paperImage.cpp Binary files differ diff --git a/jrj/project/business/Public/message.business.cpp b/jrj/project/business/Public/message.business.cpp index 0b3036f..7ac0ba1 100644 --- a/jrj/project/business/Public/message.business.cpp +++ b/jrj/project/business/Public/message.business.cpp Binary files differ diff --git a/jrj/project/business/Public/search.dialog.cpp b/jrj/project/business/Public/search.dialog.cpp index 2bd1abc..22d796e 100644 --- a/jrj/project/business/Public/search.dialog.cpp +++ b/jrj/project/business/Public/search.dialog.cpp @@ -54,7 +54,7 @@ if (GetWinParam()) { xaserverarg arg = GetArg(); - arg.AddArg(L"text", GetControl(L"sl_search").GetText()); + arg.AddArg(L"text", xcontrol(GetControl(L"sl_search")).GetText()); CloseWindow(); } return 1; @@ -99,7 +99,7 @@ if (GetWinParam()) { xaserverarg arg = GetArg(); - GetControl(L"sl_search").SetText(arg.GetArgString(L"text")); + xcontrol(GetControl(L"sl_search")).SetText(arg.GetArgString(L"text")); } return 1; diff --git a/jrj/project/business/VATNotify/list.vatnotify.cpp b/jrj/project/business/VATNotify/list.vatnotify.cpp index 4ea5cfd..1a5f094 100644 --- a/jrj/project/business/VATNotify/list.vatnotify.cpp +++ b/jrj/project/business/VATNotify/list.vatnotify.cpp @@ -239,7 +239,7 @@ } else if (comdid == L"find") { - m_QueryTxt = GetControl(L"txt").GetText(); + m_QueryTxt = xcontrol(GetControl(L"txt")).GetText(); return OnRetrieve(DatePicker); } else if (comdid == L"xmRefresh") diff --git a/jrj/project/business/VATNotify/simple.maint.vatnotify.cpp b/jrj/project/business/VATNotify/simple.maint.vatnotify.cpp index 781673d..45a6d6a 100644 --- a/jrj/project/business/VATNotify/simple.maint.vatnotify.cpp +++ b/jrj/project/business/VATNotify/simple.maint.vatnotify.cpp @@ -369,7 +369,7 @@ { xml x ; - xaserverarg arg = ViewObject::MakeArg(); + xaserverarg arg ; arg.AddArg(L"ClassifyID", ClassifyID); arg.AddArg(L"InvoiceNo", InvoiceNo); arg.AddArg(L"InvoiceExcept", InvoiceNoExcept); @@ -390,7 +390,7 @@ { xml x ; - xaserverarg arg = ViewObject::MakeArg(); + xaserverarg arg ; arg.AddArg(L"ClassifyID", ClassifyID); arg.AddArg(L"InvoiceNo", InvoiceNo); arg.AddArg(L"InvoiceExcept", InvoiceNoExcept); @@ -607,7 +607,7 @@ dw_item.AcceptText(); dw_item.DwUpdateAllToEx(x); - xaserverarg arg = ViewObject::MakeArg(); + xaserverarg arg ; arg.AddArg(L"content", x.xml()); diff --git a/jrj/project/business/VATNotify/update.vatnotify.cpp b/jrj/project/business/VATNotify/update.vatnotify.cpp index e1083c6..7aa19e5 100644 --- a/jrj/project/business/VATNotify/update.vatnotify.cpp +++ b/jrj/project/business/VATNotify/update.vatnotify.cpp @@ -57,7 +57,7 @@ dw_list.AcceptText(); dw_list.DwUpdateAllToEx(x); - xaserverarg arg = ViewObject::MakeArg(); + xaserverarg arg; arg.AddArg(L"content", x.xml()); trace(x.xml()); -- Gitblit v1.9.3