mrzcc
2020-02-26 3c5645e37249fa3a0d06e114777386db30d1a79d
采购申请
4个文件已添加
631 ■■■■■ 已修改文件
StoreService/src/main/java/com/java110/store/listener/purchaseApply/AbstractPurchaseApplyBusinessServiceDataFlowListener.java 89 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StoreService/src/main/java/com/java110/store/listener/purchaseApply/DeletePurchaseApplyInfoListener.java 177 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StoreService/src/main/java/com/java110/store/listener/purchaseApply/SavePurchaseApplyInfoListener.java 175 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StoreService/src/main/java/com/java110/store/listener/purchaseApply/UpdatePurchaseApplyInfoListener.java 190 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
StoreService/src/main/java/com/java110/store/listener/purchaseApply/AbstractPurchaseApplyBusinessServiceDataFlowListener.java
New file
@@ -0,0 +1,89 @@
package com.java110.store.listener.purchaseApply;
import com.alibaba.fastjson.JSONObject;
import com.java110.store.dao.IPurchaseApplyServiceDao;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.constant.StatusConstant;
import com.java110.utils.exception.ListenerExecuteException;
import com.java110.entity.center.Business;
import com.java110.event.service.AbstractBusinessServiceDataFlowListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * 采购申请 服务侦听 父类
 * Created by wuxw on 2018/7/4.
 */
public abstract class AbstractPurchaseApplyBusinessServiceDataFlowListener extends AbstractBusinessServiceDataFlowListener {
    private static Logger logger = LoggerFactory.getLogger(AbstractPurchaseApplyBusinessServiceDataFlowListener.class);
    /**
     * 获取 DAO工具类
     *
     * @return
     */
    public abstract IPurchaseApplyServiceDao getPurchaseApplyServiceDaoImpl();
    /**
     * 刷新 businessPurchaseApplyInfo 数据
     * 主要将 数据库 中字段和 接口传递字段建立关系
     *
     * @param businessPurchaseApplyInfo
     */
    protected void flushBusinessPurchaseApplyInfo(Map businessPurchaseApplyInfo, String statusCd) {
        businessPurchaseApplyInfo.put("newBId", businessPurchaseApplyInfo.get("b_id"));
        businessPurchaseApplyInfo.put("operate", businessPurchaseApplyInfo.get("operate"));
        businessPurchaseApplyInfo.put("applyDetailId", businessPurchaseApplyInfo.get("apply_detail_id"));
        businessPurchaseApplyInfo.put("resOrderType", businessPurchaseApplyInfo.get("res_order_type"));
        businessPurchaseApplyInfo.put("description", businessPurchaseApplyInfo.get("description"));
        businessPurchaseApplyInfo.put("applyOrderId", businessPurchaseApplyInfo.get("apply_order_id"));
        businessPurchaseApplyInfo.put("state", businessPurchaseApplyInfo.get("state"));
        businessPurchaseApplyInfo.put("storeId", businessPurchaseApplyInfo.get("store_id"));
        businessPurchaseApplyInfo.put("entryPerson", businessPurchaseApplyInfo.get("entry_person"));
        businessPurchaseApplyInfo.put("userId", businessPurchaseApplyInfo.get("user_id"));
        businessPurchaseApplyInfo.remove("bId");
        businessPurchaseApplyInfo.put("statusCd", statusCd);
    }
    /**
     * 当修改数据时,查询instance表中的数据 自动保存删除数据到business中
     *
     * @param businessPurchaseApply 采购申请信息
     */
    protected void autoSaveDelBusinessPurchaseApply(Business business, JSONObject businessPurchaseApply) {
//自动插入DEL
        Map info = new HashMap();
        info.put("applyOrderId", businessPurchaseApply.getString("applyOrderId"));
        info.put("statusCd", StatusConstant.STATUS_CD_VALID);
        List<Map> currentPurchaseApplyInfos = getPurchaseApplyServiceDaoImpl().getPurchaseApplyInfo(info);
        if (currentPurchaseApplyInfos == null || currentPurchaseApplyInfos.size() != 1) {
            throw new ListenerExecuteException(ResponseConstant.RESULT_PARAM_ERROR, "未找到需要修改数据信息,入参错误或数据有问题,请检查" + info);
        }
        Map currentPurchaseApplyInfo = currentPurchaseApplyInfos.get(0);
        currentPurchaseApplyInfo.put("bId", business.getbId());
        currentPurchaseApplyInfo.put("operate", currentPurchaseApplyInfo.get("operate"));
        currentPurchaseApplyInfo.put("applyDetailId", currentPurchaseApplyInfo.get("apply_detail_id"));
        currentPurchaseApplyInfo.put("resOrderType", currentPurchaseApplyInfo.get("res_order_type"));
        currentPurchaseApplyInfo.put("description", currentPurchaseApplyInfo.get("description"));
        currentPurchaseApplyInfo.put("applyOrderId", currentPurchaseApplyInfo.get("apply_order_id"));
        currentPurchaseApplyInfo.put("state", currentPurchaseApplyInfo.get("state"));
        currentPurchaseApplyInfo.put("storeId", currentPurchaseApplyInfo.get("store_id"));
        currentPurchaseApplyInfo.put("entryPerson", currentPurchaseApplyInfo.get("entry_person"));
        currentPurchaseApplyInfo.put("userId", currentPurchaseApplyInfo.get("user_id"));
        currentPurchaseApplyInfo.put("operate", StatusConstant.OPERATE_DEL);
        getPurchaseApplyServiceDaoImpl().saveBusinessPurchaseApplyInfo(currentPurchaseApplyInfo);
    }
}
StoreService/src/main/java/com/java110/store/listener/purchaseApply/DeletePurchaseApplyInfoListener.java
New file
@@ -0,0 +1,177 @@
package com.java110.store.listener.purchaseApply;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.core.annotation.Java110Listener;
import com.java110.core.context.DataFlowContext;
import com.java110.entity.center.Business;
import com.java110.store.dao.IPurchaseApplyServiceDao;
import com.java110.utils.constant.BusinessTypeConstant;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.constant.StatusConstant;
import com.java110.utils.exception.ListenerExecuteException;
import com.java110.utils.util.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * 删除采购申请信息 侦听
 *
 * 处理节点
 * 1、businessPurchaseApply:{} 采购申请基本信息节点
 * 2、businessPurchaseApplyAttr:[{}] 采购申请属性信息节点
 * 3、businessPurchaseApplyPhoto:[{}] 采购申请照片信息节点
 * 4、businessPurchaseApplyCerdentials:[{}] 采购申请证件信息节点
 * 协议地址 :https://github.com/java110/MicroCommunity/wiki/%E5%88%A0%E9%99%A4%E5%95%86%E6%88%B7%E4%BF%A1%E6%81%AF-%E5%8D%8F%E8%AE%AE
 * Created by wuxw on 2018/5/18.
 */
@Java110Listener("deletePurchaseApplyInfoListener")
@Transactional
public class DeletePurchaseApplyInfoListener extends AbstractPurchaseApplyBusinessServiceDataFlowListener {
    private final static Logger logger = LoggerFactory.getLogger(DeletePurchaseApplyInfoListener.class);
    @Autowired
    IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl;
    @Override
    public int getOrder() {
        return 3;
    }
    @Override
    public String getBusinessTypeCd() {
        return BusinessTypeConstant.BUSINESS_TYPE_DELETE_PURCHASE_APPLY;
    }
    /**
     * 根据删除信息 查出Instance表中数据 保存至business表 (状态写DEL) 方便撤单时直接更新回去
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Assert.notEmpty(data,"没有datas 节点,或没有子节点需要处理");
        //处理 businessPurchaseApply 节点
        if(data.containsKey("businessPurchaseApply")){
            //处理 businessPurchaseApply 节点
            if(data.containsKey("businessPurchaseApply")){
                Object _obj = data.get("businessPurchaseApply");
                JSONArray businessPurchaseApplys = null;
                if(_obj instanceof JSONObject){
                    businessPurchaseApplys = new JSONArray();
                    businessPurchaseApplys.add(_obj);
                }else {
                    businessPurchaseApplys = (JSONArray)_obj;
                }
                //JSONObject businessPurchaseApply = data.getJSONObject("businessPurchaseApply");
                for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplys.size();_purchaseApplyIndex++) {
                    JSONObject businessPurchaseApply = businessPurchaseApplys.getJSONObject(_purchaseApplyIndex);
                    doBusinessPurchaseApply(business, businessPurchaseApply);
                    if(_obj instanceof JSONObject) {
                        dataFlowContext.addParamOut("applyOrderId", businessPurchaseApply.getString("applyOrderId"));
                    }
                }
            }
        }
    }
    /**
     * 删除 instance数据
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doBusinessToInstance(DataFlowContext dataFlowContext, Business business) {
        String bId = business.getbId();
        //Assert.hasLength(bId,"请求报文中没有包含 bId");
        //采购申请信息
        Map info = new HashMap();
        info.put("bId",business.getbId());
        info.put("operate",StatusConstant.OPERATE_DEL);
        //采购申请信息
        List<Map> businessPurchaseApplyInfos = purchaseApplyServiceDaoImpl.getBusinessPurchaseApplyInfo(info);
        if( businessPurchaseApplyInfos != null && businessPurchaseApplyInfos.size() >0) {
            for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplyInfos.size();_purchaseApplyIndex++) {
                Map businessPurchaseApplyInfo = businessPurchaseApplyInfos.get(_purchaseApplyIndex);
                flushBusinessPurchaseApplyInfo(businessPurchaseApplyInfo,StatusConstant.STATUS_CD_INVALID);
                purchaseApplyServiceDaoImpl.updatePurchaseApplyInfoInstance(businessPurchaseApplyInfo);
                dataFlowContext.addParamOut("applyOrderId",businessPurchaseApplyInfo.get("apply_order_id"));
            }
        }
    }
    /**
     * 撤单
     * 从business表中查询到DEL的数据 将instance中的数据更新回来
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doRecover(DataFlowContext dataFlowContext, Business business) {
        String bId = business.getbId();
        //Assert.hasLength(bId,"请求报文中没有包含 bId");
        Map info = new HashMap();
        info.put("bId",bId);
        info.put("statusCd",StatusConstant.STATUS_CD_INVALID);
        Map delInfo = new HashMap();
        delInfo.put("bId",business.getbId());
        delInfo.put("operate",StatusConstant.OPERATE_DEL);
        //采购申请信息
        List<Map> purchaseApplyInfo = purchaseApplyServiceDaoImpl.getPurchaseApplyInfo(info);
        if(purchaseApplyInfo != null && purchaseApplyInfo.size() > 0){
            //采购申请信息
            List<Map> businessPurchaseApplyInfos = purchaseApplyServiceDaoImpl.getBusinessPurchaseApplyInfo(delInfo);
            //除非程序出错了,这里不会为空
            if(businessPurchaseApplyInfos == null ||  businessPurchaseApplyInfos.size() == 0){
                throw new ListenerExecuteException(ResponseConstant.RESULT_CODE_INNER_ERROR,"撤单失败(purchaseApply),程序内部异常,请检查! "+delInfo);
            }
            for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplyInfos.size();_purchaseApplyIndex++) {
                Map businessPurchaseApplyInfo = businessPurchaseApplyInfos.get(_purchaseApplyIndex);
                flushBusinessPurchaseApplyInfo(businessPurchaseApplyInfo,StatusConstant.STATUS_CD_VALID);
                purchaseApplyServiceDaoImpl.updatePurchaseApplyInfoInstance(businessPurchaseApplyInfo);
            }
        }
    }
    /**
     * 处理 businessPurchaseApply 节点
     * @param business 总的数据节点
     * @param businessPurchaseApply 采购申请节点
     */
    private void doBusinessPurchaseApply(Business business,JSONObject businessPurchaseApply){
        Assert.jsonObjectHaveKey(businessPurchaseApply,"applyOrderId","businessPurchaseApply 节点下没有包含 applyOrderId 节点");
        if(businessPurchaseApply.getString("applyOrderId").startsWith("-")){
            throw new ListenerExecuteException(ResponseConstant.RESULT_PARAM_ERROR,"applyOrderId 错误,不能自动生成(必须已经存在的applyOrderId)"+businessPurchaseApply);
        }
        //自动插入DEL
        autoSaveDelBusinessPurchaseApply(business,businessPurchaseApply);
    }
    public IPurchaseApplyServiceDao getPurchaseApplyServiceDaoImpl() {
        return purchaseApplyServiceDaoImpl;
    }
    public void setPurchaseApplyServiceDaoImpl(IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl) {
        this.purchaseApplyServiceDaoImpl = purchaseApplyServiceDaoImpl;
    }
}
StoreService/src/main/java/com/java110/store/listener/purchaseApply/SavePurchaseApplyInfoListener.java
New file
@@ -0,0 +1,175 @@
package com.java110.store.listener.purchaseApply;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.core.annotation.Java110Listener;
import com.java110.core.context.DataFlowContext;
import com.java110.core.factory.GenerateCodeFactory;
import com.java110.entity.center.Business;
import com.java110.store.dao.IPurchaseApplyServiceDao;
import com.java110.utils.constant.BusinessTypeConstant;
import com.java110.utils.constant.StatusConstant;
import com.java110.utils.util.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * 保存 采购申请信息 侦听
 * Created by wuxw on 2018/5/18.
 */
@Java110Listener("savePurchaseApplyInfoListener")
@Transactional
public class SavePurchaseApplyInfoListener extends AbstractPurchaseApplyBusinessServiceDataFlowListener{
    private static Logger logger = LoggerFactory.getLogger(SavePurchaseApplyInfoListener.class);
    @Autowired
    private IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl;
    @Override
    public int getOrder() {
        return 0;
    }
    @Override
    public String getBusinessTypeCd() {
        return BusinessTypeConstant.BUSINESS_TYPE_SAVE_PURCHASE_APPLY;
    }
    /**
     * 保存采购申请信息 business 表中
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Assert.notEmpty(data,"没有datas 节点,或没有子节点需要处理");
        //处理 businessPurchaseApply 节点
        if(data.containsKey("businessPurchaseApply")){
            Object bObj = data.get("businessPurchaseApply");
            JSONArray businessPurchaseApplys = null;
            if(bObj instanceof JSONObject){
                businessPurchaseApplys = new JSONArray();
                businessPurchaseApplys.add(bObj);
            }else {
                businessPurchaseApplys = (JSONArray)bObj;
            }
            //JSONObject businessPurchaseApply = data.getJSONObject("businessPurchaseApply");
            for (int bPurchaseApplyIndex = 0; bPurchaseApplyIndex < businessPurchaseApplys.size();bPurchaseApplyIndex++) {
                JSONObject businessPurchaseApply = businessPurchaseApplys.getJSONObject(bPurchaseApplyIndex);
                doBusinessPurchaseApply(business, businessPurchaseApply);
                if(bObj instanceof JSONObject) {
                    dataFlowContext.addParamOut("applyOrderId", businessPurchaseApply.getString("applyOrderId"));
                }
            }
        }
    }
    /**
     * business 数据转移到 instance
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doBusinessToInstance(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Map info = new HashMap();
        info.put("bId",business.getbId());
        info.put("operate",StatusConstant.OPERATE_ADD);
        //采购申请信息
        List<Map> businessPurchaseApplyInfo = purchaseApplyServiceDaoImpl.getBusinessPurchaseApplyInfo(info);
        if( businessPurchaseApplyInfo != null && businessPurchaseApplyInfo.size() >0) {
            reFreshShareColumn(info, businessPurchaseApplyInfo.get(0));
            purchaseApplyServiceDaoImpl.savePurchaseApplyInfoInstance(info);
            if(businessPurchaseApplyInfo.size() == 1) {
                dataFlowContext.addParamOut("applyOrderId", businessPurchaseApplyInfo.get(0).get("apply_order_id"));
            }
        }
    }
    /**
     * 刷 分片字段
     *
     * @param info         查询对象
     * @param businessInfo 小区ID
     */
    private void reFreshShareColumn(Map info, Map businessInfo) {
        if (info.containsKey("storeId")) {
            return;
        }
        if (!businessInfo.containsKey("store_id")) {
            return;
        }
        info.put("storeId", businessInfo.get("store_id"));
    }
    /**
     * 撤单
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doRecover(DataFlowContext dataFlowContext, Business business) {
        String bId = business.getbId();
        //Assert.hasLength(bId,"请求报文中没有包含 bId");
        Map info = new HashMap();
        info.put("bId",bId);
        info.put("statusCd",StatusConstant.STATUS_CD_VALID);
        Map paramIn = new HashMap();
        paramIn.put("bId",bId);
        paramIn.put("statusCd",StatusConstant.STATUS_CD_INVALID);
        //采购申请信息
        List<Map> purchaseApplyInfo = purchaseApplyServiceDaoImpl.getPurchaseApplyInfo(info);
        if(purchaseApplyInfo != null && purchaseApplyInfo.size() > 0){
            reFreshShareColumn(paramIn, purchaseApplyInfo.get(0));
            purchaseApplyServiceDaoImpl.updatePurchaseApplyInfoInstance(paramIn);
        }
    }
    /**
     * 处理 businessPurchaseApply 节点
     * @param business 总的数据节点
     * @param businessPurchaseApply 采购申请节点
     */
    private void doBusinessPurchaseApply(Business business,JSONObject businessPurchaseApply){
        Assert.jsonObjectHaveKey(businessPurchaseApply,"applyOrderId","businessPurchaseApply 节点下没有包含 applyOrderId 节点");
        if(businessPurchaseApply.getString("applyOrderId").startsWith("-")){
            //刷新缓存
            //flushPurchaseApplyId(business.getDatas());
            businessPurchaseApply.put("applyOrderId",GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_applyOrderId));
        }
        businessPurchaseApply.put("bId",business.getbId());
        businessPurchaseApply.put("operate", StatusConstant.OPERATE_ADD);
        //保存采购申请信息
        purchaseApplyServiceDaoImpl.saveBusinessPurchaseApplyInfo(businessPurchaseApply);
    }
    public IPurchaseApplyServiceDao getPurchaseApplyServiceDaoImpl() {
        return purchaseApplyServiceDaoImpl;
    }
    public void setPurchaseApplyServiceDaoImpl(IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl) {
        this.purchaseApplyServiceDaoImpl = purchaseApplyServiceDaoImpl;
    }
}
StoreService/src/main/java/com/java110/store/listener/purchaseApply/UpdatePurchaseApplyInfoListener.java
New file
@@ -0,0 +1,190 @@
package com.java110.store.listener.purchaseApply;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.core.annotation.Java110Listener;
import com.java110.core.context.DataFlowContext;
import com.java110.entity.center.Business;
import com.java110.store.dao.IPurchaseApplyServiceDao;
import com.java110.utils.constant.BusinessTypeConstant;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.constant.StatusConstant;
import com.java110.utils.exception.ListenerExecuteException;
import com.java110.utils.util.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * 修改采购申请信息 侦听
 *
 * 处理节点
 * 1、businessPurchaseApply:{} 采购申请基本信息节点
 * 2、businessPurchaseApplyAttr:[{}] 采购申请属性信息节点
 * 3、businessPurchaseApplyPhoto:[{}] 采购申请照片信息节点
 * 4、businessPurchaseApplyCerdentials:[{}] 采购申请证件信息节点
 * 协议地址 :https://github.com/java110/MicroCommunity/wiki/%E4%BF%AE%E6%94%B9%E5%95%86%E6%88%B7%E4%BF%A1%E6%81%AF-%E5%8D%8F%E8%AE%AE
 * Created by wuxw on 2018/5/18.
 */
@Java110Listener("updatePurchaseApplyInfoListener")
@Transactional
public class UpdatePurchaseApplyInfoListener extends AbstractPurchaseApplyBusinessServiceDataFlowListener {
    private static Logger logger = LoggerFactory.getLogger(UpdatePurchaseApplyInfoListener.class);
    @Autowired
    private IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl;
    @Override
    public int getOrder() {
        return 2;
    }
    @Override
    public String getBusinessTypeCd() {
        return BusinessTypeConstant.BUSINESS_TYPE_UPDATE_PURCHASE_APPLY;
    }
    /**
     * business过程
     * @param dataFlowContext 上下文对象
     * @param business 业务对象
     */
    @Override
    protected void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Assert.notEmpty(data,"没有datas 节点,或没有子节点需要处理");
        //处理 businessPurchaseApply 节点
        if(data.containsKey("businessPurchaseApply")){
            //处理 businessPurchaseApply 节点
            if(data.containsKey("businessPurchaseApply")){
                Object _obj = data.get("businessPurchaseApply");
                JSONArray businessPurchaseApplys = null;
                if(_obj instanceof JSONObject){
                    businessPurchaseApplys = new JSONArray();
                    businessPurchaseApplys.add(_obj);
                }else {
                    businessPurchaseApplys = (JSONArray)_obj;
                }
                //JSONObject businessPurchaseApply = data.getJSONObject("businessPurchaseApply");
                for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplys.size();_purchaseApplyIndex++) {
                    JSONObject businessPurchaseApply = businessPurchaseApplys.getJSONObject(_purchaseApplyIndex);
                    doBusinessPurchaseApply(business, businessPurchaseApply);
                    if(_obj instanceof JSONObject) {
                        dataFlowContext.addParamOut("applyOrderId", businessPurchaseApply.getString("applyOrderId"));
                    }
                }
            }
        }
    }
    /**
     * business to instance 过程
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doBusinessToInstance(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Map info = new HashMap();
        info.put("bId",business.getbId());
        info.put("operate",StatusConstant.OPERATE_ADD);
        //采购申请信息
        List<Map> businessPurchaseApplyInfos = purchaseApplyServiceDaoImpl.getBusinessPurchaseApplyInfo(info);
        if( businessPurchaseApplyInfos != null && businessPurchaseApplyInfos.size() >0) {
            for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplyInfos.size();_purchaseApplyIndex++) {
                Map businessPurchaseApplyInfo = businessPurchaseApplyInfos.get(_purchaseApplyIndex);
                flushBusinessPurchaseApplyInfo(businessPurchaseApplyInfo,StatusConstant.STATUS_CD_VALID);
                purchaseApplyServiceDaoImpl.updatePurchaseApplyInfoInstance(businessPurchaseApplyInfo);
                if(businessPurchaseApplyInfo.size() == 1) {
                    dataFlowContext.addParamOut("applyOrderId", businessPurchaseApplyInfo.get("apply_order_id"));
                }
            }
        }
    }
    /**
     * 撤单
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doRecover(DataFlowContext dataFlowContext, Business business) {
        String bId = business.getbId();
        //Assert.hasLength(bId,"请求报文中没有包含 bId");
        Map info = new HashMap();
        info.put("bId",bId);
        info.put("statusCd",StatusConstant.STATUS_CD_VALID);
        Map delInfo = new HashMap();
        delInfo.put("bId",business.getbId());
        delInfo.put("operate",StatusConstant.OPERATE_DEL);
        //采购申请信息
        List<Map> purchaseApplyInfo = purchaseApplyServiceDaoImpl.getPurchaseApplyInfo(info);
        if(purchaseApplyInfo != null && purchaseApplyInfo.size() > 0){
            //采购申请信息
            List<Map> businessPurchaseApplyInfos = purchaseApplyServiceDaoImpl.getBusinessPurchaseApplyInfo(delInfo);
            //除非程序出错了,这里不会为空
            if(businessPurchaseApplyInfos == null || businessPurchaseApplyInfos.size() == 0){
                throw new ListenerExecuteException(ResponseConstant.RESULT_CODE_INNER_ERROR,"撤单失败(purchaseApply),程序内部异常,请检查! "+delInfo);
            }
            for (int _purchaseApplyIndex = 0; _purchaseApplyIndex < businessPurchaseApplyInfos.size();_purchaseApplyIndex++) {
                Map businessPurchaseApplyInfo = businessPurchaseApplyInfos.get(_purchaseApplyIndex);
                flushBusinessPurchaseApplyInfo(businessPurchaseApplyInfo,StatusConstant.STATUS_CD_VALID);
                purchaseApplyServiceDaoImpl.updatePurchaseApplyInfoInstance(businessPurchaseApplyInfo);
            }
        }
    }
    /**
     * 处理 businessPurchaseApply 节点
     * @param business 总的数据节点
     * @param businessPurchaseApply 采购申请节点
     */
    private void doBusinessPurchaseApply(Business business,JSONObject businessPurchaseApply){
        Assert.jsonObjectHaveKey(businessPurchaseApply,"applyOrderId","businessPurchaseApply 节点下没有包含 applyOrderId 节点");
        if(businessPurchaseApply.getString("applyOrderId").startsWith("-")){
            throw new ListenerExecuteException(ResponseConstant.RESULT_PARAM_ERROR,"applyOrderId 错误,不能自动生成(必须已经存在的applyOrderId)"+businessPurchaseApply);
        }
        //自动保存DEL
        autoSaveDelBusinessPurchaseApply(business,businessPurchaseApply);
        businessPurchaseApply.put("bId",business.getbId());
        businessPurchaseApply.put("operate", StatusConstant.OPERATE_ADD);
        //保存采购申请信息
        purchaseApplyServiceDaoImpl.saveBusinessPurchaseApplyInfo(businessPurchaseApply);
    }
    public IPurchaseApplyServiceDao getPurchaseApplyServiceDaoImpl() {
        return purchaseApplyServiceDaoImpl;
    }
    public void setPurchaseApplyServiceDaoImpl(IPurchaseApplyServiceDao purchaseApplyServiceDaoImpl) {
        this.purchaseApplyServiceDaoImpl = purchaseApplyServiceDaoImpl;
    }
}