java110
2021-09-13 c77e5fd5f264c2e134e1f5af2f21ee887d98a9aa
service-order/src/main/java/com/java110/order/dao/impl/CenterServiceDAOImpl.java
old mode 100644 new mode 100755
@@ -53,6 +53,9 @@
            throw new DAOException(ResponseConstant.RESULT_CODE_INNER_ERROR, "保存订单项信息失败:" + JSONObject.toJSONString(orderItem));
        }
        if (!orderItem.containsKey("logText") || StringUtil.isEmpty(orderItem.get("logText") + "")) {
            return;
        }
@@ -196,10 +199,10 @@
    public void updateBusiness(Map order) throws DAOException {
        logger.debug("----【CenterServiceDAOImpl.updateBusiness】保存数据入参 : " + JSONObject.toJSONString(order));
        int saveFlag = sqlSessionTemplate.update("centerServiceDAOImpl.updateBusiness", order);
        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_CODE_INNER_ERROR, "更新订单项信息失败:" + JSONObject.toJSONString(order));
        }
         sqlSessionTemplate.update("centerServiceDAOImpl.updateBusiness", order);
//        if (saveFlag < 1) {
//            throw new DAOException(ResponseConstant.RESULT_CODE_INNER_ERROR, "更新订单项信息失败:" + JSONObject.toJSONString(order));
//        }
    }
    /**