nc.bs.ic.general.rule.after.OnhandAfterUpdate
/* */ public class OnhandAfterUpdate<E extends ICBillVO> extends ICRule<E> {
/* */ public void process(E[] vos) {
/* */ try {
/* 32 */ long time1 = System.currentTimeMillis();
/* 33 */ IOnhandUpdate onhand = (IOnhandUpdate)NCLocator.getInstance().lookup(IOnhandUpdate.class);
/* */
/* 35 */ onhand.modifyOnhandEnd(vos);
/* 36 */ long time2 = System.currentTimeMillis();
/* 37 */ DebugUtils.debug(" after rule: OnhandAfterUpdate", time2 - time1);
/* */
/* 39 */ } catch (Exception var7) {
/* 40 */ ExceptionUtils.wrappException(var7);
/* */ }
/* 42 */ }
/* */ }