このコミットが含まれているのは:
2023-05-25 12:36:20 +05:30
コミット 1f615ff33a
75個のファイルの変更14841行の追加0行の削除
ベンダーファイル
+29
ファイルの表示
@@ -0,0 +1,29 @@
function supportTicketNoInit(){
let ticketId = null;
INIT();
function INIT(){
ticketId = window.location.search.split("=")[1];
getTicketData(ticketId);
}
async function getTicketData(id){
let res = await API_SERVICES_ACTIONS.getAPIService(`apis/v4/anwisystems/integrations/products/getticketdetails/ticketno/${id}`);
if(res.isError){
toasterHelper("error",res.errorMsg,`toast-top-right`);
return;
}
res = JSON.parse(res.response.result)[0];
$('.description_support').html(res['Description']);
$('.ticketidsupport').html(res['ticketno']);
$('.raiseddate').html(res['Raised Date']);
console.log(res);
}
}
supportTicketNoInit();