IDEMPIERE-4121 FactReconciliation : Remove annoying Msg.getMsg: NOT found: @Created@/@Deleted@
This commit is contained in:
parent
3921f67a2d
commit
7487a885bb
|
@ -72,7 +72,7 @@ public class FactReconciliation extends SvrProcess
|
||||||
pstmt.setTimestamp(3, p_DateAcct_From);
|
pstmt.setTimestamp(3, p_DateAcct_From);
|
||||||
pstmt.setTimestamp(4, p_DateAcct_To);
|
pstmt.setTimestamp(4, p_DateAcct_To);
|
||||||
int count = pstmt.executeUpdate();
|
int count = pstmt.executeUpdate();
|
||||||
String result = Msg.getMsg(getCtx(),"@Created@") + ": " + count + ", ";
|
String result = Msg.getMsg(getCtx(),"Created") + ": " + count + ", ";
|
||||||
|
|
||||||
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);
|
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ public class FactReconciliation extends SvrProcess
|
||||||
pstmt = DB.prepareStatement(sql, get_TrxName());
|
pstmt = DB.prepareStatement(sql, get_TrxName());
|
||||||
pstmt.setInt(1, getAD_PInstance_ID());
|
pstmt.setInt(1, getAD_PInstance_ID());
|
||||||
count = pstmt.executeUpdate();
|
count = pstmt.executeUpdate();
|
||||||
result = Msg.getMsg(getCtx(), "@Deleted@") + ": " + count;
|
result = Msg.getMsg(getCtx(), "Deleted") + ": " + count;
|
||||||
|
|
||||||
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);
|
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue