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
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
Léo-Paul Géneau
erp5
Commits
8e14228a
Commit
8e14228a
authored
Sep 05, 2024
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Alarm: support SQL Methods in _activeSense().
parent
f296d380
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
product/ERP5/Document/Alarm.py
product/ERP5/Document/Alarm.py
+16
-12
No files found.
product/ERP5/Document/Alarm.py
View file @
8e14228a
...
...
@@ -164,18 +164,22 @@ class Alarm(XMLObject, PeriodicityMixin):
activate_kw
[
'tag'
]
=
'%s_%x'
%
(
self
.
getRelativeUrl
(),
getrandbits
(
32
))
tag
=
activate_kw
[
'tag'
]
method
=
getattr
(
self
,
method_id
)
func_code
=
getattr
(
method
,
'__code__'
,
None
)
if
func_code
is
None
:
# BBB Zope2
func_code
=
method
.
func_code
try
:
has_kw
=
func_code
.
co_flags
&
CO_VARKEYWORDS
except
AttributeError
:
# XXX guess presence of *args and **kw
name_list
=
func_code
.
co_varnames
[
func_code
.
co_argcount
:]
has_args
=
bool
(
name_list
and
name_list
[
0
]
==
'args'
)
has_kw
=
bool
(
len
(
name_list
)
>
has_args
and
name_list
[
has_args
]
==
'kw'
)
name_list
=
func_code
.
co_varnames
[:
func_code
.
co_argcount
]
if
method
.
meta_type
in
(
'Z SQL Method'
,
'ERP5 SQL Method'
):
name_list
=
[
e
[
'name'
]
for
e
in
method
.
argument_list
()]
has_kw
=
False
else
:
func_code
=
getattr
(
method
,
'__code__'
,
None
)
if
func_code
is
None
:
# BBB Zope2
func_code
=
method
.
func_code
try
:
has_kw
=
func_code
.
co_flags
&
CO_VARKEYWORDS
except
AttributeError
:
# XXX guess presence of *args and **kw
name_list
=
func_code
.
co_varnames
[
func_code
.
co_argcount
:]
has_args
=
bool
(
name_list
and
name_list
[
0
]
==
'args'
)
has_kw
=
bool
(
len
(
name_list
)
>
has_args
and
name_list
[
has_args
]
==
'kw'
)
name_list
=
func_code
.
co_varnames
[:
func_code
.
co_argcount
]
if
'params'
in
name_list
or
has_kw
:
# New New API
getattr
(
self
.
activate
(
**
activate_kw
),
method_id
)(
fixit
=
fixit
,
tag
=
tag
,
params
=
params
)
...
...
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