Guest User

Untitled

a guest
Dec 13th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. def processed
  2. @customers = ProcessedCust.find(:all)
  3. @customers.each do |c|
  4. ct = format(c.complete_time)
  5. c.complete_time = ct
  6. c.file_sent = format(c.file_sent)
  7. if c.file_type == 'P'
  8. c.file_type = 'Payor'
  9. else
  10. c.file_type = 'Sc'
  11. end
  12. end
  13. end
Add Comment
Please, Sign In to add comment