From 8643c89ceb93534c074d2a4b6e96168fce8e2336 Mon Sep 17 00:00:00 2001 From: "tanfengling@x-ri.com" <123456> Date: Thu, 30 Oct 2025 18:13:18 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=B3=9B=E5=BE=AE=E5=85=B6=E4=BB=96?= =?UTF-8?q?=E5=87=BA=E5=BA=93=E7=94=B3=E8=AF=B7=E6=B5=81=E7=A8=8B=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E3=80=91=E6=8E=92=E9=99=A4=E6=A0=B7=E5=93=81=20?= =?UTF-8?q?=E5=B1=95=E4=BC=9A=20=20=E7=A4=BC=E5=93=81=20=E6=8B=8D=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cloud/app/plugin/operate/im/OtherOutSubmitToFwOp.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lc123/cloud/app/plugin/operate/im/OtherOutSubmitToFwOp.java b/lc123/cloud/app/plugin/operate/im/OtherOutSubmitToFwOp.java index e53e774..fd0360e 100644 --- a/lc123/cloud/app/plugin/operate/im/OtherOutSubmitToFwOp.java +++ b/lc123/cloud/app/plugin/operate/im/OtherOutSubmitToFwOp.java @@ -22,6 +22,14 @@ public class OtherOutSubmitToFwOp extends AbstractOperationServicePlugIn { List successPkIds = operationResult.getSuccessPkIds(); for (Object successPkId : successPkIds) { DynamicObject bill = BusinessDataServiceHelper.loadSingle(successPkId, "im_otheroutbill"); + DynamicObject tqq9_biztype = bill.getDynamicObject("tqq9_biztype"); + if(tqq9_biztype != null){ + //样品 礼品 拍照 展会 四类不推泛微 + String biztypenumber = tqq9_biztype.getString("number"); + if("613".equals(biztypenumber) || "614".equals(biztypenumber) ||"615".equals(biztypenumber) ||"616".equals(biztypenumber)){ + continue; + } + } String resultStr = FWImpl.pushFwOtherOut(bill); if(StringUtils.isNotBlank(resultStr)){ JSONObject resultObj = JSONObject.parseObject(resultStr);