call track status assigned to history changes

This commit is contained in:
gandhimathi 2018-05-30 18:11:58 +05:30
parent 8a82d66925
commit 304050c668

View File

@ -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');