From 5535ad3a4168bcb662f1bf41253705c5ebc43bd1 Mon Sep 17 00:00:00 2001 From: sez Date: Tue, 11 Nov 2025 17:40:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=8B=A8=E5=85=A5=E5=BA=93=E4=B8=8D?= =?UTF-8?q?=E6=8E=A8=E9=80=81=E6=B3=9B=E5=BE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cloud/app/plugin/operate/im/OtherInSubmitToFwOp.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lc123/cloud/app/plugin/operate/im/OtherInSubmitToFwOp.java b/lc123/cloud/app/plugin/operate/im/OtherInSubmitToFwOp.java index 35f3a6a..c4416ef 100644 --- a/lc123/cloud/app/plugin/operate/im/OtherInSubmitToFwOp.java +++ b/lc123/cloud/app/plugin/operate/im/OtherInSubmitToFwOp.java @@ -21,6 +21,14 @@ public class OtherInSubmitToFwOp extends AbstractOperationServicePlugIn { List successPkIds = operationResult.getSuccessPkIds(); for (Object successPkId : successPkIds) { DynamicObject bill = BusinessDataServiceHelper.loadSingle(successPkId, "tqq9_otherinapply"); + DynamicObject tqq9_biztype = bill.getDynamicObject("biztype"); + if (tqq9_biztype != null) { + //调拨入库不推送泛微 + String biztypenumber = tqq9_biztype.getString("number"); + if ("605".equals(biztypenumber)) { + continue; + } + } String resultStr = FWImpl.pushFwOtherIn(bill); if (StringUtils.isNotBlank(resultStr)) { JSONObject resultObj = JSONObject.parseObject(resultStr);