mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-23 10:47:16 +00:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
function reassign(call,target_profile_id) {
|
|
$.ajax({
|
|
url: base_url + 'index.php/maintenance/reassign',
|
|
type: 'post',
|
|
data: {'call': call, 'station_id': target_profile_id},
|
|
success: function (resu) {
|
|
if (resu.status) {
|
|
location.reload();
|
|
}
|
|
}
|
|
});
|
|
}
|