Class: Piggybak::OrderNote

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/piggybak/order_note.rb

Instance Method Summary collapse

Instance Method Details

#admin_labelObject



14
15
16
# File 'app/models/piggybak/order_note.rb', line 14

def admin_label
  "Order Note: #{created_at.strftime("%m-%d-%Y %H:%M")}"
end

#detailsObject



10
11
12
# File 'app/models/piggybak/order_note.rb', line 10

def details
  "<b>#{created_at.strftime("%m-%d-%Y %H:%M")}</b> by #{user ? user.email : 'N/A'}:<br />#{note}"
end