1 14 package org.compiere.process; 15 16 import org.compiere.model.*; 17 18 24 public class Recurring extends SvrProcess 25 { 26 29 protected void prepare() 30 { 31 ProcessInfoParameter[] para = getParameter(); 32 for (int i = 0; i < para.length; i++) 33 { 34 String name = para[i].getParameterName(); 35 if (para[i].getParameter() == null) 36 ; 37 else 38 log.error("prepare - Unknown Parameter: " + name); 39 } 40 } 42 47 protected String doIt() throws Exception  48 { 49 MRecurring rec = new MRecurring (getCtx(), getRecord_ID()); 50 log.info("doIt - " + rec); 51 return rec.executeRun(); 52 } 54 } | Popular Tags |