* Fix for bug [1628515]
This commit is contained in:
parent
6759d3dcd0
commit
8ae3f949ae
|
@ -1312,10 +1312,10 @@ public final class MSetup
|
||||||
else
|
else
|
||||||
log.log(Level.SEVERE, "CashBook NOT inserted");
|
log.log(Level.SEVERE, "CashBook NOT inserted");
|
||||||
//
|
//
|
||||||
m_trx.commit();
|
boolean success = m_trx.commit();
|
||||||
m_trx.close();
|
m_trx.close();
|
||||||
log.info("fini");
|
log.info("finish");
|
||||||
return true;
|
return success;
|
||||||
} // createEntities
|
} // createEntities
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -171,7 +171,7 @@ public class AllocationReset extends SvrProcess
|
||||||
success = true;
|
success = true;
|
||||||
}
|
}
|
||||||
if (success)
|
if (success)
|
||||||
m_trx.commit();
|
success = m_trx.commit();
|
||||||
else
|
else
|
||||||
m_trx.rollback();
|
m_trx.rollback();
|
||||||
return success;
|
return success;
|
||||||
|
|
|
@ -715,7 +715,7 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable
|
||||||
//setWFState (done ? StateEngine.STATE_Completed : StateEngine.STATE_Suspended);
|
//setWFState (done ? StateEngine.STATE_Completed : StateEngine.STATE_Suspended);
|
||||||
//end vpj-cd e-evolution 03/08/2005 PostgreSQL
|
//end vpj-cd e-evolution 03/08/2005 PostgreSQL
|
||||||
/**** Trx End ****/
|
/**** Trx End ****/
|
||||||
m_trx.commit();
|
m_trx.commit(true);
|
||||||
m_trx.close();
|
m_trx.close();
|
||||||
m_trx = null;
|
m_trx = null;
|
||||||
//begin vpj-cd e-evolution 03/08/2005 PostgreSQL
|
//begin vpj-cd e-evolution 03/08/2005 PostgreSQL
|
||||||
|
|
Loading…
Reference in New Issue