Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
8504c3d2
Commit
8504c3d2
authored
Apr 04, 2018
by
BaiJiangjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复资产列表导出问题
parent
aa8bece7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
asset_list.html
apps/assets/templates/assets/asset_list.html
+6
-3
asset.py
apps/assets/views/asset.py
+8
-0
No files found.
apps/assets/templates/assets/asset_list.html
View file @
8504c3d2
...
...
@@ -182,7 +182,6 @@ function initTable() {
return
asset_table
}
function
addTreeNode
()
{
hideRMenu
();
var
parentNode
=
zTree
.
getSelectedNodes
()[
0
];
...
...
@@ -238,7 +237,6 @@ function editTreeNode() {
zTree
.
editName
(
current_node
);
}
function
OnRightClick
(
event
,
treeId
,
treeNode
)
{
if
(
!
treeNode
&&
event
.
target
.
tagName
.
toLowerCase
()
!==
"button"
&&
$
(
event
.
target
).
parents
(
"a"
).
length
===
0
)
{
zTree
.
cancelSelectedNode
();
...
...
@@ -432,6 +430,11 @@ $(document).ready(function(){
.
on
(
'click'
,
'.btn_export'
,
function
()
{
var
$data_table
=
$
(
'#asset_list_table'
).
DataTable
();
var
rows
=
$data_table
.
rows
(
'.selected'
).
data
();
var
nodes
=
zTree
.
getSelectedNodes
();
var
current_node
;
if
(
nodes
&&
nodes
.
length
===
1
)
{
current_node
=
nodes
[
0
];
}
var
assets
=
[];
$
.
each
(
rows
,
function
(
index
,
obj
)
{
assets
.
push
(
obj
.
id
)
...
...
@@ -439,7 +442,7 @@ $(document).ready(function(){
$
.
ajax
({
url
:
"{% url "
assets
:
asset
-
export
" %}"
,
method
:
'POST'
,
data
:
JSON
.
stringify
({
assets_id
:
assets
}),
data
:
JSON
.
stringify
({
assets_id
:
assets
,
node_id
:
current_node
.
id
}),
dataType
:
"json"
,
success
:
function
(
data
,
textStatus
)
{
window
.
open
(
data
.
redirect
)
...
...
apps/assets/views/asset.py
View file @
8504c3d2
...
...
@@ -233,8 +233,16 @@ class AssetExportView(View):
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
try
:
assets_id
=
json
.
loads
(
request
.
body
)
.
get
(
'assets_id'
,
[])
assets_node_id
=
json
.
loads
(
request
.
body
)
.
get
(
'node_id'
,
None
)
except
ValueError
:
return
HttpResponse
(
'Json object not valid'
,
status
=
400
)
if
not
assets_id
and
assets_node_id
:
assets_node
=
get_object_or_none
(
Node
,
id
=
assets_node_id
)
assets
=
assets_node
.
get_all_assets
()
for
asset
in
assets
:
assets_id
.
append
(
asset
.
id
)
spm
=
uuid
.
uuid4
()
.
hex
cache
.
set
(
spm
,
assets_id
,
300
)
url
=
reverse_lazy
(
'assets:asset-export'
)
+
'?spm=
%
s'
%
spm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment