* Fix for bug [1628515]
This commit is contained in:
parent
42d16ef526
commit
f477e3f81d
|
|
@ -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 ***
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue