142 lines
4.6 KiB
JavaScript
142 lines
4.6 KiB
JavaScript
$(document).ready(function() {
|
|
var show_allocate_form = $("#allocateModal").data('show-action-form');
|
|
var show_datawipe_form = $("#datawipeModal").data('show-action-form');
|
|
if (show_allocate_form != "None") {
|
|
$("#allocateModal .btn-primary").show();
|
|
newAllocate(show_allocate_form);
|
|
} else if (show_datawipe_form != "None") {
|
|
$("#datawipeModal .btn-primary").show();
|
|
newDataWipe(show_datawipe_form);
|
|
} else {
|
|
$(".deviceSelect").on("change", deviceSelect);
|
|
}
|
|
// $('#selectLot').selectpicker();
|
|
})
|
|
|
|
function deviceSelect() {
|
|
var devices_count = $(".deviceSelect").filter(':checked').length;
|
|
get_device_list();
|
|
if (devices_count == 0) {
|
|
$("#addingLotModal .pol").show();
|
|
$("#addingLotModal .btn-primary").hide();
|
|
|
|
$("#removeLotModal .pol").show();
|
|
$("#removeLotModal .btn-primary").hide();
|
|
|
|
$("#addingTagModal .pol").show();
|
|
$("#addingTagModal .btn-primary").hide();
|
|
|
|
$("#actionModal .pol").show();
|
|
$("#actionModal .btn-primary").hide();
|
|
|
|
$("#allocateModal .pol").show();
|
|
$("#allocateModal .btn-primary").hide();
|
|
|
|
$("#datawipeModal .pol").show();
|
|
$("#datawipeModal .btn-primary").hide();
|
|
} else {
|
|
$("#addingLotModal .pol").hide();
|
|
$("#addingLotModal .btn-primary").show();
|
|
|
|
$("#removeLotModal .pol").hide();
|
|
$("#removeLotModal .btn-primary").show();
|
|
|
|
$("#actionModal .pol").hide();
|
|
$("#actionModal .btn-primary").show();
|
|
|
|
$("#allocateModal .pol").hide();
|
|
$("#allocateModal .btn-primary").show();
|
|
|
|
$("#datawipeModal .pol").hide();
|
|
$("#datawipeModal .btn-primary").show();
|
|
|
|
$("#addingTagModal .pol").hide();
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
function newTrade(action) {
|
|
var title = "Trade "
|
|
var receiver = $("#receiver").data("email");
|
|
var supplier = $("#supplier").data("email");
|
|
if (action == 'supplier') {
|
|
title = 'Trade Incoming';
|
|
$("#receiver").attr('readonly', 'readonly');
|
|
$("#supplier").prop('readonly', false);
|
|
$("#supplier").val('');
|
|
$("#receiver").val(receiver);
|
|
} else if (action == 'receiver') {
|
|
title = 'Trade Outgoing';
|
|
$("#supplier").attr('readonly', 'readonly');
|
|
$("#receiver").prop('readonly', false);
|
|
$("#receiver").val('');
|
|
$("#supplier").val(supplier);
|
|
}
|
|
$("#tradeLotModalModal #title-action").html(title);
|
|
$("#activeTradeModal").click();
|
|
}
|
|
|
|
function newAction(action) {
|
|
$("#actionModal #type").val(action);
|
|
$("#actionModal #title-action").html(action);
|
|
deviceSelect();
|
|
$("#activeActionModal").click();
|
|
}
|
|
|
|
function newAllocate(action) {
|
|
$("#allocateModal #type").val(action);
|
|
$("#allocateModal #title-action").html(action);
|
|
deviceSelect();
|
|
$("#activeAllocateModal").click();
|
|
}
|
|
|
|
function newDataWipe(action) {
|
|
$("#datawipeModal #type").val(action);
|
|
$("#datawipeModal #title-action").html(action);
|
|
deviceSelect();
|
|
$("#activeDatawipeModal").click();
|
|
}
|
|
|
|
function get_device_list() {
|
|
var devices = $(".deviceSelect").filter(':checked');
|
|
|
|
/* Insert the correct count of devices in actions form */
|
|
var devices_count = devices.length;
|
|
$("#datawipeModal .devices-count").html(devices_count);
|
|
$("#allocateModal .devices-count").html(devices_count);
|
|
$("#actionModal .devices-count").html(devices_count);
|
|
|
|
/* Insert the correct value in the input devicesList */
|
|
var devices_id = $.map(devices, function(x) { return $(x).attr('data')}).join(",");
|
|
$.map($(".devicesList"), function(x) {
|
|
$(x).val(devices_id);
|
|
});
|
|
|
|
/* Create a list of devices for human representation */
|
|
var computer = {
|
|
"Desktop": "<i class='bi bi-building'></i>",
|
|
"Laptop": "<i class='bi bi-laptop'></i>",
|
|
};
|
|
list_devices = devices.map(function (x) {
|
|
var typ = $(devices[x]).data("device-type");
|
|
var manuf = $(devices[x]).data("device-manufacturer");
|
|
var dhid = $(devices[x]).data("device-dhid");
|
|
if (computer[typ]) {
|
|
typ = computer[typ];
|
|
};
|
|
return typ + " " + manuf + " " + dhid;
|
|
});
|
|
|
|
description = $.map(list_devices, function(x) { return x }).join(", ");
|
|
$(".enumeration-devices").html(description);
|
|
}
|