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);