* [ 1630670 ] Minor M*Processor.deleteLog bug

This commit is contained in:
Heng Sin Low 2007-01-18 12:46:30 +00:00
parent cb0a1deb2d
commit 051b2a0594
3 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ public class MAcctProcessor extends X_C_AcctProcessor
+ "WHERE C_AcctProcessor_ID=" + getC_AcctProcessor_ID() + "WHERE C_AcctProcessor_ID=" + getC_AcctProcessor_ID()
+ " AND (Created+" + getKeepLogDays() + ") < SysDate"; + " AND (Created+" + getKeepLogDays() + ") < SysDate";
int no = DB.executeUpdate(sql, get_TrxName()); int no = DB.executeUpdate(sql, get_TrxName());
return 0; return no;
} // deleteLog } // deleteLog
} // MAcctProcessor } // MAcctProcessor

View File

@ -174,7 +174,7 @@ public class MAlertProcessor extends X_AD_AlertProcessor
+ "WHERE AD_AlertProcessor_ID=" + getAD_AlertProcessor_ID() + "WHERE AD_AlertProcessor_ID=" + getAD_AlertProcessor_ID()
+ " AND (Created+" + getKeepLogDays() + ") < SysDate"; + " AND (Created+" + getKeepLogDays() + ") < SysDate";
int no = DB.executeUpdate(sql, get_TrxName()); int no = DB.executeUpdate(sql, get_TrxName());
return 0; return no;
} // deleteLog } // deleteLog

View File

@ -173,7 +173,7 @@ public class MWorkflowProcessor extends X_AD_WorkflowProcessor
+ "WHERE AD_WorkflowProcessor_ID=" + getAD_WorkflowProcessor_ID() + "WHERE AD_WorkflowProcessor_ID=" + getAD_WorkflowProcessor_ID()
+ " AND (Created+" + getKeepLogDays() + ") < SysDate"; + " AND (Created+" + getKeepLogDays() + ") < SysDate";
int no = DB.executeUpdate(sql, get_TrxName()); int no = DB.executeUpdate(sql, get_TrxName());
return 0; return no;
} // deleteLog } // deleteLog
} // MWorkflowProcessor } // MWorkflowProcessor