Subversion Repositories SmartDukaan

Rev

Rev 3701 | Rev 3996 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3701 Rev 3711
Line 421... Line 421...
421
        url : "/crm/tickets!updateOrderStatus?id=" + ticketId + "&orderId=" + orderId + "&orderStatus=" + orderStatus,
421
        url : "/crm/tickets!updateOrderStatus?id=" + ticketId + "&orderId=" + orderId + "&orderStatus=" + orderStatus,
422
        success : function(response) {
422
        success : function(response) {
423
            $('#' + domId).html(response);
423
            $('#' + domId).html(response);
424
        }
424
        }
425
    });
425
    });
426
}
-
 
427
426
}
-
 
427
 
-
 
428
function loadUnreadActivities(domId) {
-
 
429
    $.ajax({
-
 
430
        type : "GET",
-
 
431
        url : "/crm/activity!getUnreadActivities",
-
 
432
        success : function(response) {
-
 
433
            $('#' + domId).html(response);
-
 
434
            var activityTable = createActivityDataTable('activity');
-
 
435
        }
-
 
436
    });
-
 
437
}
-
 
438