BF [ 1935093 ] SvrProcess.unlock() is setting invalid result
https://sourceforge.net/tracker/index.php?func=detail&aid=1935093&group_id=176962&atid=879332
This commit is contained in:
parent
eb62d4ab81
commit
33205ec45b
|
@ -45,6 +45,7 @@ import org.compiere.util.Trx;
|
||||||
* <li>BF [ 1877935 ] SvrProcess.process should catch all throwables
|
* <li>BF [ 1877935 ] SvrProcess.process should catch all throwables
|
||||||
* <li>FR [ 1877937 ] SvrProcess: added commitEx method
|
* <li>FR [ 1877937 ] SvrProcess: added commitEx method
|
||||||
* <li>BF [ 1878743 ] SvrProcess.getAD_User_ID
|
* <li>BF [ 1878743 ] SvrProcess.getAD_User_ID
|
||||||
|
* <li>BF [ 1935093 ] SvrProcess.unlock() is setting invalid result
|
||||||
*/
|
*/
|
||||||
public abstract class SvrProcess implements ProcessCall
|
public abstract class SvrProcess implements ProcessCall
|
||||||
{
|
{
|
||||||
|
@ -493,7 +494,7 @@ public abstract class SvrProcess implements ProcessCall
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
mpi.setIsProcessing(false);
|
mpi.setIsProcessing(false);
|
||||||
mpi.setResult(m_pi.isError());
|
mpi.setResult(!m_pi.isError());
|
||||||
mpi.setErrorMsg(m_pi.getSummary());
|
mpi.setErrorMsg(m_pi.getSummary());
|
||||||
mpi.save();
|
mpi.save();
|
||||||
log.fine(mpi.toString());
|
log.fine(mpi.toString());
|
||||||
|
|
Loading…
Reference in New Issue