自動寫入簽核意見
EasyFlow GP簽核時自動加上自定意見內容
自動寫入簽核意見:
function formDispatch(){
//卡控在第一關ACT1之外,所有關卡都檢查沒有填寫意見時自動塞入預設值
if(activityId!="ACT1"){
var tComment=window.parent.document.forms[0].txaExecutiveComment.value; //取得簽核意見欄位的內容
if(tComment==""){ //判斷是否為空值
window.parent.document.forms[0].txaExecutiveComment.value ="同意同意同意";
}
}
return true;
}