2022-01-11 10:21:17 +00:00
|
|
|
$(document).ready(function() {
|
2022-02-01 12:40:06 +00:00
|
|
|
var show_action_form = $("#allocateModal").data('show-action-form');
|
|
|
|
if (show_action_form != "None") {
|
|
|
|
$("#allocateModal .btn-primary").show();
|
|
|
|
newAllocate(show_action_form);
|
|
|
|
} else {
|
|
|
|
$(".deviceSelect").on("change", deviceSelect);
|
|
|
|
}
|
|
|
|
// $('#selectLot').selectpicker();
|
2021-12-30 11:41:37 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
function deviceSelect() {
|
|
|
|
var devices = $(".deviceSelect").filter(':checked');
|
|
|
|
var devices_id = $.map(devices, function(x) { return $(x).attr('data')}).join(",");
|
|
|
|
if (devices_id == "") {
|
|
|
|
$("#addingLotModal .text-danger").show();
|
|
|
|
$("#addingLotModal .btn-primary").hide();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
2022-01-03 10:32:12 +00:00
|
|
|
$("#removeLotModal .text-danger").show();
|
|
|
|
$("#removeLotModal .btn-primary").hide();
|
2022-01-25 11:53:36 +00:00
|
|
|
$("#addingTagModal .text-danger").show();
|
|
|
|
$("#addingTagModal .btn-primary").hide();
|
2021-12-30 11:41:37 +00:00
|
|
|
} else {
|
|
|
|
$("#addingLotModal .text-danger").hide();
|
|
|
|
$("#addingLotModal .btn-primary").show();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
2022-01-03 10:32:12 +00:00
|
|
|
$("#removeLotModal .text-danger").hide();
|
|
|
|
$("#removeLotModal .btn-primary").show();
|
2022-01-05 11:13:44 +00:00
|
|
|
|
|
|
|
$("#actionModal .text-danger").hide();
|
|
|
|
$("#actionModal .btn-primary").show();
|
2022-01-10 14:53:11 +00:00
|
|
|
|
|
|
|
$("#allocateModal .text-danger").hide();
|
|
|
|
$("#allocateModal .btn-primary").show();
|
2022-02-02 12:05:55 +00:00
|
|
|
|
2022-01-25 11:53:36 +00:00
|
|
|
$("#addingTagModal .text-danger").hide();
|
2021-12-30 11:41:37 +00:00
|
|
|
}
|
|
|
|
$.map($(".devicesList"), function(x) {
|
|
|
|
$(x).val(devices_id);
|
|
|
|
});
|
|
|
|
}
|
2022-01-03 12:40:30 +00:00
|
|
|
|
2022-01-25 13:39:15 +00:00
|
|
|
function removeTag() {
|
|
|
|
var devices = $(".deviceSelect").filter(':checked');
|
|
|
|
var devices_id = $.map(devices, function(x) { return $(x).attr('data')});
|
|
|
|
console.log(devices_id);
|
|
|
|
if (devices_id.length > 0) {
|
|
|
|
var url = "/inventory/tag/devices/"+devices_id[0]+"/del/";
|
|
|
|
window.location.href = url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-03 12:40:30 +00:00
|
|
|
function newAction(action) {
|
2022-01-05 15:00:13 +00:00
|
|
|
$("#actionModal #type").val(action);
|
2022-02-03 10:44:51 +00:00
|
|
|
$("#actionModal #title-action").html(action);
|
2022-01-05 15:00:13 +00:00
|
|
|
$("#activeActionModal").click();
|
2022-01-03 12:40:30 +00:00
|
|
|
}
|
2022-01-10 14:53:11 +00:00
|
|
|
|
|
|
|
function newAllocate(action) {
|
|
|
|
$("#allocateModal #type").val(action);
|
2022-02-03 10:44:51 +00:00
|
|
|
$("#allocateModal #title-action").html(action);
|
2022-01-10 14:53:11 +00:00
|
|
|
$("#activeAllocateModal").click();
|
|
|
|
}
|