From 36c5813d2ad018945afdc432bdaac8b1e701f563 Mon Sep 17 00:00:00 2001
From: lifan <2308045698@qq.com>
Date: 星期二, 01 九月 2026 11:23:59 +0800
Subject: [PATCH] update
---
jrj/project/business/Customer3.maint.cpp | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/jrj/project/business/Customer3.maint.cpp b/jrj/project/business/Customer3.maint.cpp
index fc120e2..a36d388 100644
--- a/jrj/project/business/Customer3.maint.cpp
+++ b/jrj/project/business/Customer3.maint.cpp
@@ -768,6 +768,21 @@
OnShareMessage();
return 0;
}
+ if (comdid == L"action:bill.check.ask")
+ {
+ int row = dw_detail.GetRow();
+ if (row < 1) return 0;
+ xstring PartyID = dw_detail.GetItemString(row, L"PartyID");
+ KXMLDOMDocument xx3 = ViewObject::RetrieveData(L"/sale/data/CustomerV3/entity/GetCustomerResults", L"CustomerID", PartyID);
+
+ xstring Results3 = xx3.text();
+
+ if (Results3 != L"")
+ {
+ alert(Results3);
+ return 0;
+ }
+ }
// else if (comdid.find(L"action:",0) >= 0) return OnAction(comdid);
return -1;
}
@@ -901,6 +916,15 @@
return 1;
}
}
+ if (value == L"信保回复附件")
+ {
+ arg.AddArg(L"entityid", dw_detail.GetGuid(1));
+ arg.AddArg(L"ApproveStatus", L"新建");
+ OpenWindow(L"dev:xpage[maint.Document.SampleRequestForm.vx]", (LPARAM)&arg);
+ return 1;
+
+ }
+
if(value == L"客户基本信息")
{
xaserverarg arg1 = GetArg();
--
Gitblit v1.9.3