Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
85c3bb12
Commit
85c3bb12
authored
Apr 21, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crm: pylint on py3
parent
2312ddec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/EventModule_getEventDetailedLineList.py
...al_skins/erp5_crm/EventModule_getEventDetailedLineList.py
+1
-5
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Event_getHeadOfTextContent.py
...eItem/portal_skins/erp5_crm/Event_getHeadOfTextContent.py
+5
-2
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Folder_getTicketDetailedEventsLineList.py
..._skins/erp5_crm/Folder_getTicketDetailedEventsLineList.py
+1
-1
No files found.
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/EventModule_getEventDetailedLineList.py
View file @
85c3bb12
...
...
@@ -92,11 +92,7 @@ for r_event in event_list:
unassigned_dic
[
event
.
getSimulationState
()]
=
unassigned_dic
[
event
.
getSimulationState
()]
+
1
unassigned_dic
[
'total'
]
=
unassigned_dic
[
'total'
]
+
1
#Sort the result and add unassigned
def
comparator
(
x
,
y
):
if
x
[
'ticket_type'
]
==
y
[
'ticket_type'
]:
return
cmp
(
x
[
'ticket_title'
],
y
[
'ticket_title'
])
return
cmp
(
x
[
'ticket_type'
],
y
[
'ticket_type'
])
column_list
.
sort
(
comparator
)
column_list
.
sort
(
key
=
lambda
x
:
(
x
[
'ticket_type'
],
x
[
'ticket_title'
]))
if
unassigned_dic
[
'total'
]
>
0
:
column_list
.
append
(
unassigned_dic
)
#fill line_list that is returned to report
line_list
=
[]
...
...
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Event_getHeadOfTextContent.py
View file @
85c3bb12
import
six
text
=
context
.
asText
()
LENGTH
=
25
#TODO: Think about the display length of multibyte characters.
# TODO: Think about the display length of multibyte characters.
if
six
.
PY3
:
return
text
[:
LENGTH
]
try
:
return
unicod
e
(
text
,
'utf-8'
)[:
LENGTH
].
encode
(
'utf-8'
)
return
six
.
text_typ
e
(
text
,
'utf-8'
)[:
LENGTH
].
encode
(
'utf-8'
)
except
UnicodeDecodeError
:
return
text
[:
LENGTH
]
bt5/erp5_crm/SkinTemplateItem/portal_skins/erp5_crm/Folder_getTicketDetailedEventsLineList.py
View file @
85c3bb12
...
...
@@ -49,7 +49,7 @@ for r_ticket in ticket_list:
for
r_event_causality
in
event_causality_list
:
event_causality
=
r_event_causality
.
getObject
()
#check that one event it isn't related by causality and follow-up with the same ticket
if
ticket
.
getUid
()
<>
event_causality
.
getFollowUpUid
():
if
ticket
.
getUid
()
!=
event_causality
.
getFollowUpUid
():
line_list
.
append
(
Object
(
uid
=
'new_'
,
ticket
=
''
,
type
=
event_causality
.
getTranslatedPortalType
(),
...
...
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