Advertisement
aadddrr

001_init_t_task_modify_journal_formula

Aug 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. DELETE FROM t_task WHERE task_type = 'GL' AND task_group IN ('gl.journalformula');
  3.  
  4.  
  5. INSERT INTO t_task(
  6.     module_id, task_code, task_name, description,
  7.     task_type, task_group, create_datetime, create_user_id,
  8.     update_datetime, update_user_id, "version", active,
  9.     active_datetime, non_active_datetime, always_allow)
  10. VALUES
  11.    
  12.     (106,'ADD JOURNAL FORMULA RECURRING','addJournalFormulaRecurring','Add Journal Formula Recurring',
  13.     'GL','gl.journalformula','20160107110000',-1,
  14.     '20160107110000',-1,0,'Y',
  15.     '20160107110000',' ','N' ),
  16.    
  17.     (106,'ADD JOURNAL FORMULA ALLOCATION','addJournalFormulaAllocation','Add Journal Formula Allocation',
  18.     'GL','gl.journalformula','20160107110000',-1,
  19.     '20160107110000',-1,0,'Y',
  20.     '20160107110000',' ','N' ),
  21.    
  22.     (106,'VIEW JOURNAL FORMULA','viewJournalFormula','View Journal Formula',
  23.     'GL','gl.journalformula','20160107110000',-1,
  24.     '20160107110000',-1,0,'Y',
  25.     '20160107110000',' ','N' ),
  26.    
  27.     ( 106,'EDIT JOURNAL FORMULA RECURRING','editJournalFormulaRecurring','Edit Journal Formula Recurring',
  28.     'GL','gl.journalformula','20160107110000',-1,
  29.     '20160107110000',-1,0,'Y',
  30.     '20160107110000',' ','N' ),
  31.    
  32.     ( 106,'EDIT JOURNAL FORMULA ALLOCATION','editJournalFormulaAllocation','Edit Journal Formula Allocation',
  33.     'GL','gl.journalformula','20160107110000',-1,
  34.     '20160107110000',-1,0,'Y',
  35.     '20160107110000',' ','N' ),
  36.    
  37.     ( 106,'REMOVE JOURNAL FORMULA RECURRING','removeJournalFormulaRecurring','Remove Journal Formula Recurring',
  38.     'GL','gl.journalformula','20160107110000',-1,
  39.     '20160107110000',-1,0,'Y',
  40.     '20160107110000',' ','N' ),
  41.    
  42.     ( 106,'REMOVE JOURNAL FORMULA ALLOCATION','removeJournalFormulaAllocation','Remove Journal Formula Allocation',
  43.     'GL','gl.journalformula','20160107110000',-1,
  44.     '20160107110000',-1,0,'Y',
  45.     '20160107110000',' ','N' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement