* Fix for bug [1628515]

This commit is contained in:
Heng Sin Low 2007-01-05 15:46:41 +00:00
parent 42d16ef526
commit f477e3f81d
2 changed files with 2 additions and 2 deletions

View File

@ -794,7 +794,7 @@ public abstract class Doc
return STATUS_Error;
}
// Success
trx.commit();
trx.commit(true);
trx.close();
trx = null;
// *** Transaction End ***

View File

@ -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)
{