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
141
Merge Requests
141
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
55ab3116
Commit
55ab3116
authored
Mar 29, 2021
by
Aurel
Committed by
Arnaud Fontaine
Jan 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches related to cataloging
parent
74daa97f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
product/ERP5Type/patches/sqlvar.py
product/ERP5Type/patches/sqlvar.py
+8
-3
product/ZSQLCatalog/SQLCatalog.py
product/ZSQLCatalog/SQLCatalog.py
+1
-1
No files found.
product/ERP5Type/patches/sqlvar.py
View file @
55ab3116
...
...
@@ -83,11 +83,16 @@ def SQLVar_render(self, md):
%
(
t
,
self
.
__name__
,
v
))
# Patched by yo. datetime is added.
valid_type
=
'int'
,
'float'
,
'string'
,
'nb'
,
'datetime'
valid_type
+=
tuple
(
map
(
'datetime(%s)'
.
__mod__
,
xrange
(
7
)))
valid_type
=
valid_type
.
__contains__
try
:
# BBB
from
Shared.DC.ZRDB.sqlvar
import
valid_type
valid_type
=
valid_type
.
__contains__
sqlvar
.
valid_type
=
valid_type
except
ImportError
:
sqlvar
.
valid_types
=
valid_type
SQLVar
.
render
=
SQLVar_render
SQLVar
.
__call__
=
SQLVar_render
sqlvar
.
valid_type
=
valid_type
product/ZSQLCatalog/SQLCatalog.py
View file @
55ab3116
...
...
@@ -1451,7 +1451,7 @@ class Catalog(Folder,
if
meta_type
in
self
.
HAS_ARGUMENT_SRC_METATYPE_SET
:
return
method
.
arguments_src
.
split
()
elif
meta_type
in
self
.
HAS_FUNC_CODE_METATYPE_SET
:
return
method
.
func_code
.
co_varnames
[:
method
.
func_code
.
co_argcount
]
return
method
.
__code__
.
co_varnames
[:
method
.
__code__
.
co_argcount
]
# Note: Raising here would completely prevent indexation from working.
# Instead, let the method actually fail when called, so _catalogObjectList
# can log the error and carry on.
...
...
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