JS-Part for maintenance

pull/2353/head
int2001 2023-08-01 08:22:06 +00:00
rodzic 1158bf312e
commit ae394dfce9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DFB1C13CD2DB037B
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,12 @@
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();
}
}
});
}