fix: changed jobs route to job-openings

This commit is contained in:
Jannat Patel
2024-01-17 11:00:31 +05:30
parent 991dc7f8c8
commit 3070cbed3c
13 changed files with 29 additions and 12 deletions

View File

@@ -0,0 +1,42 @@
frappe.ready(() => {
$("#report").click((e) => {
open_report_dialog(e);
});
$("#submit-report").click((e) => {
report(e);
});
});
const open_report_dialog = (e) => {
e.preventDefault();
if (frappe.session.user == "Guest") {
window.location.href = `/login?redirect-to=/job-openings/${$(
e.currentTarget
).data("job")}`;
return;
}
$("#report-modal").modal("show");
};
const report = (e) => {
frappe.call({
method: "lms.job.doctype.job_opportunity.job_opportunity.report",
args: {
job: $(e.currentTarget).data("job"),
reason: $(".report-field").val(),
},
callback: (data) => {
$(".report-modal").modal("hide");
frappe.show_alert(
{
message: __(
"Thanks for informing us about this post. The admin will look into it and take an appropriate action soon."
),
indicator: "green",
},
5
);
},
});
};