Subversion Repository Public Repository

litesoft

Diff Revisions 852 vs 853 for /trunk/GWT_Sandbox/Prioritizer/src/org/litesoft/prioritizer/server/pos/StoryTemplateGO.java

Diff revisions: vs.
  @@ -226,19 +226,19 @@
226 226 @Override
227 227 public void setValueOnPO( StoryTemplate pPO, Object pValue )
228 228 {
229 - pPO.setNextRecurranceDate( to_SimpleDate( org.litesoft.core.simpletypes.temporal.DateFormatControl.DEFAULT_DATE_FORMAT, pValue ) );
229 + pPO.setNextRecurranceDate( to_SimpleDate( pPO.mNextRecurranceDate.getDateRes(), pValue ) );
230 230 }
231 231
232 232 @Override
233 233 public Object db_getValueOnPO( StoryTemplate pPO )
234 234 {
235 - return pPO.mNextRecurranceDate.get_java_sql_Date();
235 + return pPO.mNextRecurranceDate.getPersistFormSimpleDate();
236 236 }
237 237
238 238 @Override
239 239 public void db_setValueOnPO( StoryTemplate pPO, Object pValue )
240 240 {
241 - pPO.mNextRecurranceDate.set_java_sql_Date( to_SqlDate( pValue ) );
241 + pPO.mNextRecurranceDate.setPersistFormSimpleDate( to_String( pValue ) );
242 242 }
243 243 }
244 244