From 8101de7d119a8fb0400bfb745cdfc040ca799e18 Mon Sep 17 00:00:00 2001 From: xj qian <qianxj15@sina.com> Date: 星期四, 13 三月 2025 10:48:08 +0800 Subject: [PATCH] update --- jrj/project/business/SystemSettings/CommentaryEx.dialog.cpp | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/jrj/project/business/SystemSettings/CommentaryEx.dialog.cpp b/jrj/project/business/SystemSettings/CommentaryEx.dialog.cpp index de715c6..82376a5 100644 --- a/jrj/project/business/SystemSettings/CommentaryEx.dialog.cpp +++ b/jrj/project/business/SystemSettings/CommentaryEx.dialog.cpp @@ -92,6 +92,7 @@ xstring guid = publiccode::GetGuid(); xstring str = guid.left(2); xstring ret = xaserver::UploadFile(L"attachment" + str, guid + L".jpg", GetHWND(), L"", false); + int nIndex = m_cb.AddItem(ret.c_str(true), (guid + L".jpg").c_str(true)); showAtt(); return 1; } @@ -135,8 +136,12 @@ xstring value = m_Edit.GetText(); if (value == L"") { - alert(L"请填写批注!"); - return 1; + int s = m_cb.GetCount(); + if (s < 1) + { + alert(L"请填写批注!"); + return 1; + } } x.loadXML(L"<Commentary update.new='1' update.modify='1'/>"); -- Gitblit v1.9.3