mirror of https://github.com/jumpserver/jumpserver
184 lines
7.0 KiB
HTML
184 lines
7.0 KiB
HTML
{% extends '_base_list.html' %}
|
|
{% load i18n static %}
|
|
{% block table_search %}
|
|
{% endblock %}
|
|
{% block table_container %}
|
|
<div class="uc pull-left m-l-5 m-r-5">
|
|
<a href="{% url "assets:asset-group-create" %}" class="btn btn-sm btn-primary"> {% trans "Create asset group" %} </a>
|
|
</div>
|
|
<table class="table table-striped table-bordered table-hover " id="asset_groups_list_table" >
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<input type="checkbox" id="check_all" class="ipt_check_all" >
|
|
</th>
|
|
<th class="text-center">{% trans 'Name' %}</th>
|
|
<th class="text-center">{% trans 'Asset' %}</th>
|
|
<th class="text-center">{% trans 'Comment' %}</th>
|
|
<th class="text-center">{% trans 'Action' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<div id="actions" class="hide">
|
|
<div class="input-group">
|
|
<select class="form-control m-b" style="width: auto" id="slct_bulk_update">
|
|
<option value="delete">{% trans 'Delete selected' %}</option>
|
|
<option value="update">{% trans 'Update selected' %}</option>
|
|
</select>
|
|
<div class="input-group-btn pull-left" style="padding-left: 5px;">
|
|
<button id='btn_bulk_update' style="height: 32px;" class="btn btn-sm btn-primary">
|
|
{% trans 'Submit' %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'assets/_asset_group_bulk_update_modal.html' %}
|
|
{% endblock %}
|
|
{% block content_bottom_left %}{% endblock %}
|
|
{% block custom_foot_js %}
|
|
<script>
|
|
$(document).ready(function(){
|
|
var options = {
|
|
ele: $('#asset_groups_list_table'),
|
|
columnDefs: [
|
|
{targets: 1, createdCell: function (td, cellData, rowData) {
|
|
var detail_btn = '<a href="{% url "assets:asset-group-detail" pk=99991937 %}">' + cellData + '</a>';
|
|
$(td).html(detail_btn.replace('99991937', rowData.id));
|
|
}},
|
|
{targets: 3, createdCell: function (td, cellData) {
|
|
var innerHtml = cellData.length > 30 ? cellData.substring(0, 30) + '...': cellData;
|
|
$(td).html('<a href="javascript:void(0);" data-toggle="tooltip" title="' + cellData + '">' + innerHtml + '</a>');
|
|
}},
|
|
{targets: 4, createdCell: function (td, cellData, rowData) {
|
|
var update_btn = '<a href="{% url "assets:asset-group-update" pk=99991937 %}" class="btn btn-xs m-l-xs btn-info">{% trans "Update" %}</a>'.replace('99991937', cellData);
|
|
var del_btn = '<a class="btn btn-xs btn-danger m-l-xs btn_asset_group_delete" data-uid="99991937">{% trans "Delete" %}</a>'.replace('99991937', cellData);
|
|
$(td).html(update_btn + del_btn)
|
|
}}],
|
|
ajax_url: '{% url "api-assets:asset-group-list" %}',
|
|
columns: [{data: "id"}, {data: "name" }, {data: "assets_amount" }, {data: "comment" }, {data: "id"}],
|
|
op_html: $('#actions').html()
|
|
};
|
|
jumpserver.initDataTable(options);
|
|
})
|
|
|
|
.on('click', '.btn_asset_group_delete', function () {
|
|
var $this = $(this);
|
|
var $data_table = $('#asset_groups_list_table').DataTable();
|
|
var name = $(this).closest("tr").find(":nth-child(2)").children('a').html();
|
|
var uid = $this.data('uid');
|
|
var the_url = '{% url "api-assets:asset-group-detail" pk=99991937 %}'.replace('99991937', uid);
|
|
objectDelete($this, name, the_url);
|
|
setTimeout( function () {
|
|
$data_table.ajax.reload();
|
|
}, 3000);
|
|
})
|
|
|
|
.on('click', '#btn_bulk_update', function () {
|
|
var action = $('#slct_bulk_update').val();
|
|
var $data_table = $('#asset_groups_list_table').DataTable();
|
|
var id_list = [];
|
|
var plain_id_list = [];
|
|
$data_table.rows({selected: true}).every(function(){
|
|
id_list.push({id: this.data().id});
|
|
plain_id_list.push(this.data().id);
|
|
});
|
|
if (id_list === []) {
|
|
return false;
|
|
}
|
|
var the_url = '{% url "api-assets:asset-group-list" %}';
|
|
console.log(plain_id_list);
|
|
console.log(the_url);
|
|
function doDelete() {
|
|
swal({
|
|
title: "{% trans 'Are you sure?' %}",
|
|
text: "{% trans 'This will delete the selected groups !!!' %}",
|
|
type: "warning",
|
|
showCancelButton: true,
|
|
confirmButtonColor: "#DD6B55",
|
|
confirmButtonText: "{% trans 'Confirm' %}",
|
|
closeOnConfirm: false
|
|
}, function() {
|
|
var success = function() {
|
|
var msg = "{% trans 'Group Deleted.' %}";
|
|
swal("{% trans 'Group Delete' %}", msg, "success");
|
|
$('#asset_groups_list_table').DataTable().ajax.reload();
|
|
};
|
|
var fail = function() {
|
|
var msg = "{% trans 'Group Deleting failed.' %}";
|
|
swal("{% trans 'Group Delete' %}", msg, "error");
|
|
};
|
|
var url_delete = the_url + '?id__in=' + JSON.stringify(plain_id_list);
|
|
APIUpdateAttr({url: url_delete, method: 'DELETE', success: success, error: fail});
|
|
$data_table.ajax.reload();
|
|
jumpserver.checked = false;
|
|
});
|
|
}
|
|
function doUpdate() {
|
|
$('#asset_group_bulk_update_modal').modal('show');
|
|
}
|
|
switch(action) {
|
|
case 'delete':
|
|
doDelete();
|
|
break;
|
|
case 'update':
|
|
doUpdate();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
})
|
|
|
|
.on('click', '#btn_asset_group_bulk_update', function () {
|
|
var json_data = $("#fm_asset_group_bulk_update").serializeObject();
|
|
var body = {};
|
|
body.enable_otp = (json_data.enable_otp === 'on')? true: false;
|
|
if (json_data.type != '') {
|
|
body.type = json_data.type;
|
|
}
|
|
|
|
if (json_data.assets != undefined) {
|
|
body.assets = json_data.assets;
|
|
}
|
|
if (typeof body.assets === 'string') {
|
|
body.assets = [parseInt(body.assets)]
|
|
} else if(typeof body.assets === 'array') {
|
|
var new_assets = body.assets.map(Number);
|
|
body.assets = new_assets;
|
|
}
|
|
|
|
if (json_data.system_users != undefined) {
|
|
body.system_users = json_data.system_users;
|
|
}
|
|
if (typeof body.system_users === 'string') {
|
|
body.system_users = [parseInt(body.system_users)];
|
|
} else if (typeof body.system_users === 'array') {
|
|
var new_system_users = body.system_users.map(Number);
|
|
body.system_users = new_system_users;
|
|
}
|
|
|
|
var post_list = [];
|
|
var $data_table = $('#asset_groups_list_table').DataTable()
|
|
$data_table.rows({selected: true}).every(function(){
|
|
var content = Object.assign({id: this.data().id}, body);
|
|
post_list.push(content);
|
|
});
|
|
if (post_list === []) {
|
|
return false
|
|
}
|
|
var the_url = '{% url "api-assets:asset-group-list" %}';
|
|
var success = function() {
|
|
var msg = "{% trans 'The selected asset groups has been updated successfully.' %}";
|
|
swal("{% trans 'AssetGroup Updated' %}", msg, "success");
|
|
$('#asset_groups_list_table').DataTable().ajax.reload();
|
|
jumpserver.checked = false;
|
|
};
|
|
{# console.log(JSON.stringify(post_list));#}
|
|
APIUpdateAttr({url: the_url, method: 'PATCH', body: JSON.stringify(post_list), success: success});
|
|
$('#asset_group_bulk_update_modal').modal('hide');
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|