apzl_leasing/src_tenwa/com/tenwa/lease/flow/riskalert/RiskAlertStartAction.java
2018-06-03 22:26:41 +08:00

19 lines
585 B
Java

package com.tenwa.lease.flow.riskalert;
import com.amarsoft.are.jbo.BizObject;
import com.amarsoft.are.jbo.JBOTransaction;
import com.tenwa.flow.action.comm.BaseFlowStartAction;
import com.tenwa.util.SerialNumberUtil;
public class RiskAlertStartAction extends BaseFlowStartAction {
@Override
public void customOperation(JBOTransaction tx, BizObject flowBussiness)
throws Exception {
String AlertNo = SerialNumberUtil.getRiskAlertNumber(tx);
this.FlowParam.put("FlowKey", AlertNo);
this.FlowParam.put("AlertNo", AlertNo);
super.customOperation(tx, flowBussiness);
}
}