diff --git a/Apollo/api/application/controllers/Call_Tracking_Controller.php b/Apollo/api/application/controllers/Call_Tracking_Controller.php index c84d79da..391d5a6b 100755 --- a/Apollo/api/application/controllers/Call_Tracking_Controller.php +++ b/Apollo/api/application/controllers/Call_Tracking_Controller.php @@ -114,6 +114,9 @@ class Call_Tracking_Controller extends REST_Controller { $tracking_followup_details['FollowupComments'] = $this->post('comments'); $tracking_followup_details['CreatedBy'] = $this->post('createdBy'); $tracking_followup_details['CreatedOn'] = $now->format('Y-m-d H:i:s'); + $tracking_followup_details['StatusName'] = $this->post('status'); + $tracking_followup_details['AssignedStaff'] = $this->post('assignedTo'); + @@ -195,6 +198,9 @@ class Call_Tracking_Controller extends REST_Controller { $followup_details['CreatedBy'] = $this->post('updatedBy'); $followup_details['FollowupComments'] = $this->post('comments'); $followup_details['CreatedOn'] = $now->format('Y-m-d H:i:s'); + $followup_details['StatusName'] = $this->post('status'); + $followup_details['AssignedStaff'] = $this->post('assignedTo'); +