* Fix for bug [1628515]
This commit is contained in:
parent
42d16ef526
commit
f477e3f81d
|
@ -794,7 +794,7 @@ public abstract class Doc
|
|||
return STATUS_Error;
|
||||
}
|
||||
// Success
|
||||
trx.commit();
|
||||
trx.commit(true);
|
||||
trx.close();
|
||||
trx = null;
|
||||
// *** Transaction End ***
|
||||
|
|
|
@ -68,7 +68,7 @@ public class Scheduler extends AdempiereServer
|
|||
m_summary.append(runReport(process));
|
||||
else
|
||||
m_summary.append(runProcess(process));
|
||||
m_trx.commit();
|
||||
m_trx.commit(true);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue