package com.tenwa.lease.app.registercontractexpress; import com.amarsoft.are.jbo.BizObject; import com.amarsoft.awe.dw.handler.impl.CommonHandler; import com.tenwa.comm.util.date.DateAssistant; public class RegisterContractInfoHandler extends CommonHandler{ @Override protected void initDisplayForAdd(BizObject bo) throws Exception { bo.setAttributeValue("SENT_PERSON", this.curUser.getUserName()); bo.setAttributeValue("SENT_DATE", DateAssistant.getToday()); //bo.setAttributeValue("INPUTUSERID", this.curUser.getUserID()); //bo.setAttributeValue("INPUTTIME", DateAssistant.getTodayNow()); super.initDisplayForAdd(bo); } }