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