Commit fb39f024 authored by liangyb's avatar liangyb

#394 2024708 解决专家回退会生成json字符给用户展示

parent 590b1e92
...@@ -352,7 +352,7 @@ public class ReEvaluationConfirmDialog extends EDialog { ...@@ -352,7 +352,7 @@ public class ReEvaluationConfirmDialog extends EDialog {
if(!isApply){ if(!isApply){
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
StringBuilder reason = new StringBuilder(); StringBuilder reason = new StringBuilder();
if(everyExpertEvaluationStep.getApplyReason().length() > 0){ if(everyExpertEvaluationStep.getApplyReason() != null && everyExpertEvaluationStep.getApplyReason().length() > 0){
reason.append(everyExpertEvaluationStep.getApplyReason()); reason.append(everyExpertEvaluationStep.getApplyReason());
reason.append("\r\n"); reason.append("\r\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment