19 lines
585 B
Java
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);
|
|
}
|
|
|
|
} |