* 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; return STATUS_Error;
} }
// Success // Success
trx.commit(); trx.commit(true);
trx.close(); trx.close();
trx = null; trx = null;
// *** Transaction End *** // *** Transaction End ***

View File

@ -68,7 +68,7 @@ public class Scheduler extends AdempiereServer
m_summary.append(runReport(process)); m_summary.append(runReport(process));
else else
m_summary.append(runProcess(process)); m_summary.append(runProcess(process));
m_trx.commit(); m_trx.commit(true);
} }
catch (Exception e) catch (Exception e)
{ {