Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cédric Le Ninivin
slapos.core
Commits
ee6c41e2
Commit
ee6c41e2
authored
Dec 13, 2018
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_crm: Fix division by Zero when report computers w/o tickets
parent
812d00c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/ComputerModule_getComputerTicketReportList.py
..._monitoring/ComputerModule_getComputerTicketReportList.py
+18
-12
No files found.
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/ComputerModule_getComputerTicketReportList.py
View file @
ee6c41e2
...
@@ -12,13 +12,13 @@ friend_category_uid = portal.restrictedTraverse(
...
@@ -12,13 +12,13 @@ friend_category_uid = portal.restrictedTraverse(
personal_category_uid
=
portal
.
restrictedTraverse
(
personal_category_uid
=
portal
.
restrictedTraverse
(
"portal_categories/allocation_scope/open/personal"
,
None
).
getUid
()
"portal_categories/allocation_scope/open/personal"
,
None
).
getUid
()
l
=
[]
l
=
[]
show_all
=
False
show_all
=
False
if
"show_all"
in
kw
:
if
"show_all"
in
kw
:
show_all
=
kw
.
pop
(
"omit_zero_ticket"
)
show_all
=
kw
.
pop
(
"omit_zero_ticket"
)
memcached_dict
=
context
.
getPortalObject
().
portal_memcached
.
getMemcachedDict
(
memcached_dict
=
context
.
getPortalObject
().
portal_memcached
.
getMemcachedDict
(
key_prefix
=
'slap_tool'
,
key_prefix
=
'slap_tool'
,
plugin_path
=
'portal_memcached/default_memcached_plugin'
)
plugin_path
=
'portal_memcached/default_memcached_plugin'
)
...
@@ -51,15 +51,15 @@ for computer in portal.portal_catalog(
...
@@ -51,15 +51,15 @@ for computer in portal.portal_catalog(
instance_error_count
=
0
instance_error_count
=
0
if
computer_partition_uid_list
:
if
computer_partition_uid_list
:
for
instance
in
portal
.
portal_catalog
(
for
instance
in
portal
.
portal_catalog
(
portal_type
=
"Software Instance"
,
portal_type
=
"Software Instance"
,
select_list
=
"specialise_uid, reference"
,
select_list
=
"specialise_uid, reference"
,
default_aggregate_uid
=
computer_partition_uid_list
):
default_aggregate_uid
=
computer_partition_uid_list
):
instance_count
+=
1
instance_count
+=
1
if
instance
.
specialise_uid
is
not
None
:
if
instance
.
specialise_uid
is
not
None
:
uid_list
.
append
(
instance
.
specialise_uid
or
computer
.
getUid
())
uid_list
.
append
(
instance
.
specialise_uid
or
computer
.
getUid
())
if
checkForError
(
instance
.
reference
)
is
not
None
:
if
checkForError
(
instance
.
reference
)
is
not
None
:
instance_error_count
+=
1
instance_error_count
+=
1
related_ticket_quantity
=
portal
.
portal_catalog
.
countResults
(
related_ticket_quantity
=
portal
.
portal_catalog
.
countResults
(
portal_type
=
'Support Request'
,
portal_type
=
'Support Request'
,
...
@@ -68,8 +68,14 @@ for computer in portal.portal_catalog(
...
@@ -68,8 +68,14 @@ for computer in portal.portal_catalog(
if
show_all
or
related_ticket_quantity
>
0
:
if
show_all
or
related_ticket_quantity
>
0
:
partition_use_ratio
=
float
(
instance_count
)
/
len
(
computer_partition_uid_list
)
if
len
(
computer_partition_uid_list
)
==
0
:
instance_error_ratio
=
float
(
instance_error_count
)
/
instance_count
partition_use_ratio
=
0
else
:
partition_use_ratio
=
float
(
instance_count
)
/
len
(
computer_partition_uid_list
)
if
instance_count
==
0
:
instance_error_ratio
=
0
else
:
instance_error_ratio
=
float
(
instance_error_count
)
/
instance_count
l
.
append
(
l
.
append
(
newTempDocument
(
context
,
'%s'
%
computer
.
id
,
**
{
"title"
:
computer
.
title
,
newTempDocument
(
context
,
'%s'
%
computer
.
id
,
**
{
"title"
:
computer
.
title
,
...
...
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