|
@@ -17,6 +17,7 @@ import com.gree.mall.manager.logic.common.CommonLogic;
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
import com.gree.mall.manager.plus.entity.*;
|
|
import com.gree.mall.manager.plus.service.*;
|
|
import com.gree.mall.manager.plus.service.*;
|
|
import com.gree.mall.manager.utils.RedisUtil;
|
|
import com.gree.mall.manager.utils.RedisUtil;
|
|
|
|
+import com.gree.mall.manager.utils.StringUtil;
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
@@ -394,6 +395,9 @@ public class LetterLogic {
|
|
if (!leLetter.getStatus().equals(LetterStatusEnum.SEND.getKey()))
|
|
if (!leLetter.getStatus().equals(LetterStatusEnum.SEND.getKey()))
|
|
throw new RemoteServiceException("不为待执行不能申诉");
|
|
throw new RemoteServiceException("不为待执行不能申诉");
|
|
|
|
|
|
|
|
+ if (StringUtil.isEmpty(leLetterItem.getWebsitAppeal()))
|
|
|
|
+ throw new RemoteServiceException("网点状态未传");
|
|
|
|
+
|
|
leLetter.setStatus(LetterStatusEnum.WAIT_EXAMINE.getKey());
|
|
leLetter.setStatus(LetterStatusEnum.WAIT_EXAMINE.getKey());
|
|
if (leLetterItem.getWebsitAppeal().equals("OK")){
|
|
if (leLetterItem.getWebsitAppeal().equals("OK")){
|
|
leLetter.setStatus(LetterStatusEnum.EXECUTED.getKey());
|
|
leLetter.setStatus(LetterStatusEnum.EXECUTED.getKey());
|
|
@@ -404,8 +408,6 @@ public class LetterLogic {
|
|
|
|
|
|
leLetter.updateById();
|
|
leLetter.updateById();
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
leLetterItem.insert();
|
|
leLetterItem.insert();
|
|
}
|
|
}
|
|
|
|
|