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
140
Merge Requests
140
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
f50f2a3a
Commit
f50f2a3a
authored
Mar 20, 2023
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 04, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BusinessTemplate: py3 WIP
🚧
parent
ad1f1ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+4
-4
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
f50f2a3a
...
@@ -723,7 +723,7 @@ class ObjectTemplateItem(BaseTemplateItem):
...
@@ -723,7 +723,7 @@ class ObjectTemplateItem(BaseTemplateItem):
def
__init__
(
self
,
id_list
,
tool_id
=
None
,
**
kw
):
def
__init__
(
self
,
id_list
,
tool_id
=
None
,
**
kw
):
BaseTemplateItem
.
__init__
(
self
,
id_list
,
tool_id
=
tool_id
,
**
kw
)
BaseTemplateItem
.
__init__
(
self
,
id_list
,
tool_id
=
tool_id
,
**
kw
)
if
tool_id
is
not
None
:
if
tool_id
is
not
None
:
id_list
=
self
.
_archive
.
keys
(
)
id_list
=
ensure_list
(
self
.
_archive
.
keys
()
)
self
.
_archive
.
clear
()
self
.
_archive
.
clear
()
for
id
in
id_list
:
for
id
in
id_list
:
if
id
!=
''
:
if
id
!=
''
:
...
@@ -3510,14 +3510,14 @@ class PortalTypeRolesTemplateItem(BaseTemplateItem):
...
@@ -3510,14 +3510,14 @@ class PortalTypeRolesTemplateItem(BaseTemplateItem):
prop_value
=
role
.
get
(
property
)
prop_value
=
role
.
get
(
property
)
if
prop_value
:
if
prop_value
:
if
isinstance
(
prop_value
,
str
):
if
isinstance
(
prop_value
,
str
):
prop_value
=
escape
(
prop_value
.
decode
(
'utf-8'
)
)
prop_value
=
escape
(
prop_value
)
xml_data
+=
"
\
n
<property id='%s'>%s</property>"
%
\
xml_data
+=
"
\
n
<property id='%s'>%s</property>"
%
\
(
property
,
prop_value
)
(
property
,
prop_value
)
# multi
# multi
for
property
in
(
'categories'
,
'category'
,
'base_category'
):
for
property
in
(
'categories'
,
'category'
,
'base_category'
):
for
prop_value
in
role
.
get
(
property
,
[]):
for
prop_value
in
role
.
get
(
property
,
[]):
if
isinstance
(
prop_value
,
str
):
if
isinstance
(
prop_value
,
str
):
prop_value
=
escape
(
prop_value
.
decode
(
'utf-8'
)
)
prop_value
=
escape
(
prop_value
)
xml_data
+=
"
\
n
<multi_property "
\
xml_data
+=
"
\
n
<multi_property "
\
"id='%s'>%s</multi_property>"
%
(
property
,
prop_value
)
"id='%s'>%s</multi_property>"
%
(
property
,
prop_value
)
xml_data
+=
"
\
n
</role>"
xml_data
+=
"
\
n
</role>"
...
@@ -3970,7 +3970,7 @@ class FilesystemDocumentTemplateItem(BaseTemplateItem):
...
@@ -3970,7 +3970,7 @@ class FilesystemDocumentTemplateItem(BaseTemplateItem):
if
not
file_name
.
endswith
(
'.py'
):
if
not
file_name
.
endswith
(
'.py'
):
LOG
(
'Business Template'
,
0
,
'Skipping file "%s"'
%
(
file_name
,
))
LOG
(
'Business Template'
,
0
,
'Skipping file "%s"'
%
(
file_name
,
))
return
return
text
=
file
.
read
()
text
=
file
.
read
()
.
decode
(
'utf-8'
)
self
.
_objects
[
file_name
[:
-
3
]]
=
text
self
.
_objects
[
file_name
[:
-
3
]]
=
text
class
FilesystemToZodbTemplateItem
(
FilesystemDocumentTemplateItem
,
class
FilesystemToZodbTemplateItem
(
FilesystemDocumentTemplateItem
,
...
...
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