IDEMPIERE-165 - Scheduler does not create Report
This commit is contained in:
parent
5b44b7aab5
commit
8b14febb23
|
@ -264,12 +264,17 @@ public class MProcess extends X_AD_Process
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
String msg = "No Classname or ProcedureName for " + getName();
|
// BF IDEMPIERE-165
|
||||||
pi.setSummary(msg, ok);
|
if (this.isReport()) {
|
||||||
log.warning(msg);
|
ok = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
String msg = "No Classname or ProcedureName for " + getName();
|
||||||
|
pi.setSummary(msg, ok);
|
||||||
|
log.warning(msg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ok;
|
return ok;
|
||||||
} // process
|
} // process
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue