CRM-9438 Create Change Membership Type and Change Membership Status activity types

    Details

    • Type: Improvement
    • Status: Done/Fixed
    • Priority: Trivial
    • Resolution: Fixed/Completed
    • Affects Version/s: 4.0.8
    • Fix Version/s: 4.2.0
    • Component/s: CiviMember
    • Labels:
      None

      Description

      When a membership is edited and its type or status is changed, an Activity record should be created that records the change similar to Change Case Type and Change Case Status activities. This issue specifies the work to do this on the 3.4 and 4.1 branches.

      1. In appropriate file (whatever civicrm_data.mysql is generated from these days), create a new activity type in civicrm_option_value as follows (follow existing protocol in file for specifying the option_group_id and the value and weight):

        1. option_group_id=2
        2. label='Change Membership Status'
        3. name='Change Membership Status'
        4. value=23
        5. weight=23
        6. grouping=null
        7. filter=0
        8. is_default=0
        9. is_reserved=1
        10. is_active=1
        11. component_id=3
        12. domain_id=null
        13. visibility_id=null
      1. Create a second activity type as above with the following fields containing changes in their values:
        1. label='Change Membership Type'
        2. name='Change Membership Type'
        3. value=24
        4. weight=24

      2. Include INSERT statements for these records in CRM/Upgrade/Incremental/sql/3.4.x.mysql.tpl (NB: Consult with Kurund or Deepak on appropriate version file in this directory)

      3. When saving a membership after editing in the backend, eg at civicrm/contact/view/membership?reset=1&action=update&id=33&cid=119, if the status has changed then create a new activity of type Change Membership Status with the following values:

        1. subject: 'Membership Status changed from ' . $old_status_label . ' to ' . $new_status_label
        2. source_contact_id: current user's
        3. source_record_id: membership_id of relevant membership
        4. activity_type_id: 23 (from above)
        5. activity_date_time: now()
        6. duration, location, phone_number, details, medium_id, relationship_id, original_id: NULL
        7. status_id: 2 (ie Completed)
        8. priority_id: 2 (ie Normal)
        9. is_auto: 0
        10. is_current_revision: 1
        11. is_deleted: 0

      4. Insert a related record into civicrm_activity_target with activity_id of newly created activity and target_contact_id = civicrm_membership.contact_id

      5. Repeat 3 and 4 for membership type changes, modifying the subject and activity_type_id as appropriate.

      6. Create a webtest to verify the creation of a new activity for membership type and membership status changes separately, and a third that tests the creation of two activities when both are changed at the same time.

        Attachments

          Activity

          [CRM-9438] Create Change Membership Type and Change Membership Status activity types
          Kurund Jalmi added a comment -

          Moving to 4.2, since we don't want to introduce any features in 4.1

          Joe Murray added a comment -

          Here is a patch against trunk including a couple of new files for 4.2. This was developed for a JMA Consulting client.

          Joe Murray added a comment -

          Heh Dave, could you review and commit or assign to an appropriate person?

          Thanks

          David Greenberg added a comment -

          Took a quick look, overall seems complete except for the upgrade piece. Since we are inserting option_value rows, we should be creating sql statements for this in a new file: CRM/Upgrade/Incremental/sql/4.2.alpha1.mysql.tpl - following the model in similar files in that folder.

          The existing file in CRM/Upgrade/Incremental/php is basically empty and not needed and should be removed.

          I'll reassign for review and commit after the upgrade code is added to the patch. Thx.

          Joe Murray added a comment -

          This second copy of the file includes the missing sql file. Note that as there was no php/FourTwo.php file there was an error trying to generate the schema, etc. So that file is included here so the build doesn't break, even though there is nothing specific in it to this patch beyond being the first one in the 4.2 version.

          David Greenberg added a comment -

          Currently only status and type changes made via Edit Membership form are logged with the new activity types from what I can tell. Not sure if status changes that happen via process_membership scheduled Job are caught. Also, tested the case where membership status is set to Deceased when contact is edited and marked Deceased - and this change is not currently trapped.

          David Greenberg added a comment -

          Actually, status changes from process_membership are caught. However a redundant "Membership Signup" activity is also triggered by this type of status update.

          Joe Murray added a comment -

          Ravi, can you address the two issues identified by Dave:
          1) create a Membership status change record in case of switch to Deceased.
          2) change code that creates redundant record?

          Joe Murray added a comment -

          Please work with Ravi on this one. Thanks.

          Pradeep Nayak added a comment -

          Hey Joe i have committed the changes at revision 40735, 40739.

          Joe Murray added a comment -

          I have not properly QA'd the processMembership cron job fix, but creating an activity to mark membership status automatic changes to Deceased when Deceased contact demographic field is changed to true looks good.

          David Greenberg added a comment -

          Tested the activity insert with scheduled job (process_membership). Works as expected.

            People

            • Assignee:
              David Greenberg
              Reporter:
              Joe Murray

              Dates

              • Created:
                Updated:
                Resolved:

                Time Tracking

                Estimated:
                Original Estimate - Not Specified
                Not Specified
                Remaining:
                Remaining Estimate - 0 minutes
                0m
                Logged:
                Time Spent - 3 hours
                3h