Setter for notes

This commit is contained in:
2023-12-30 20:08:36 -05:00
parent 2e32d8f6e5
commit f094ef57ec

View File

@@ -87,6 +87,13 @@ class Customer < ActiveRecord::Base
#update our locally stored number too
update_mobile_phone_number
end
# Convenience Method
# Sets the notes
def notes=(s)
pull unless @details
@details.notes = s
end
# update the localy stored phone number as a plain string with no special chars
def update_phone_number