Setter for notes

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

View File

@@ -88,6 +88,13 @@ class Customer < ActiveRecord::Base
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
begin