diff --git a/src_core/com/tenwa/flow/flowlog/ViewFlowLogService.java b/src_core/com/tenwa/flow/flowlog/ViewFlowLogService.java index 8c3bdab6e..ec88461b3 100644 --- a/src_core/com/tenwa/flow/flowlog/ViewFlowLogService.java +++ b/src_core/com/tenwa/flow/flowlog/ViewFlowLogService.java @@ -61,7 +61,13 @@ public class ViewFlowLogService extends BaseTable{ pHASEOPINION=fobo.getAttribute(FLOW_OPINION.PHASEOPINION).toString(); fobo.getAttribute(FLOW_OPINION.PHASECHOICE).toString(); } - fl.setAttributeValue("logcontent", FlowLogContent.replaceAll("@", DateAssistant.getTodayNow()).concat(" Òâ¼û£º"+pHASEOPINION)); + if(pHASEOPINION!=null&&pHASEOPINION!=""){ + fl.setAttributeValue("logcontent", FlowLogContent.replaceAll("@", DateAssistant.getTodayNow()).concat(" Òâ¼û£º"+pHASEOPINION)); + + }else{ + fl.setAttributeValue("logcontent", FlowLogContent.replaceAll("@", DateAssistant.getTodayNow())); + + } fl = this.initTabeUserInfo(fl); flManager.saveObject(fl); return "success";