Commit 361e4d19 authored by liangyb's avatar liangyb

#251 修改专家申请回退,显示的是代码结构

parent 40382647
...@@ -52,6 +52,8 @@ import com.gx.utils.NowTimeUtils; ...@@ -52,6 +52,8 @@ import com.gx.utils.NowTimeUtils;
import com.swtdesigner.ResourceManager; import com.swtdesigner.ResourceManager;
import com.swtdesigner.SWTResourceManager; import com.swtdesigner.SWTResourceManager;
import com.gx.obe.util.utils.StringUtils;
/** /**
* @Description: 申请退回 * @Description: 申请退回
* @author guoyr * @author guoyr
...@@ -236,7 +238,7 @@ public class ReEvaluationConfirmDialog extends EDialog { ...@@ -236,7 +238,7 @@ public class ReEvaluationConfirmDialog extends EDialog {
if (null != expertEvaluationStep && null != expertEvaluationStep.getApplyStatus() && expertEvaluationStep.getApplyStatus().equals(CommonEnum.YES)) { if (null != expertEvaluationStep && null != expertEvaluationStep.getApplyStatus() && expertEvaluationStep.getApplyStatus().equals(CommonEnum.YES)) {
isApply = true; isApply = true;
applyReEvaluation_btn.setText(Messages.Button_agree); applyReEvaluation_btn.setText(Messages.Button_agree);
String applyReason = ExpertEvaluationStepLogInfoUtils.getExpertEvaluationStepInfo(expertEvaluationStep.getApplyReason()); String applyReason = StringUtils.isEmpty(expertEvaluationStep.getApplyReason()) ? "" : expertEvaluationStep.getApplyReason();
historyApplyReasonText.setText(applyReason); historyApplyReasonText.setText(applyReason);
historyApplyReasonText.setSelection(historyApplyReasonText.getText().length()); historyApplyReasonText.setSelection(historyApplyReasonText.getText().length());
sashForm.setMaximizedControl(applyReason_composite); sashForm.setMaximizedControl(applyReason_composite);
......
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