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
Levin Zimmermann
erp5
Commits
a64d6338
Commit
a64d6338
authored
Jul 09, 2020
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FormPrintout
parent
8322cec2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
156 additions
and
38 deletions
+156
-38
bt5/erp5_base/ModuleComponentTemplateItem/portal_components/module.erp5.FormPrintout.py
...emplateItem/portal_components/module.erp5.FormPrintout.py
+43
-36
bt5/erp5_base/ModuleComponentTemplateItem/portal_components/module.erp5.FormPrintout.xml
...mplateItem/portal_components/module.erp5.FormPrintout.xml
+110
-0
bt5/erp5_base/bt/template_module_component_id_list
bt5/erp5_base/bt/template_module_component_id_list
+3
-2
No files found.
product/ERP5OOo/
FormPrintout.py
→
bt5/erp5_base/ModuleComponentTemplateItem/portal_components/module.erp5.
FormPrintout.py
View file @
a64d6338
...
@@ -33,7 +33,8 @@ from Products.ERP5Form.ListBox import ListBox
...
@@ -33,7 +33,8 @@ from Products.ERP5Form.ListBox import ListBox
from
Products.ERP5Form.FormBox
import
FormBox
from
Products.ERP5Form.FormBox
import
FormBox
from
Products.ERP5Form.ReportBox
import
ReportBox
from
Products.ERP5Form.ReportBox
import
ReportBox
from
Products.ERP5Form.ImageField
import
ImageField
from
Products.ERP5Form.ImageField
import
ImageField
from
Products.ERP5OOo.OOoUtils
import
OOoBuilder
from
Products.ERP5
import
_dtmldir
from
erp5.component.module.OOoUtils
import
OOoBuilder
from
Products.CMFCore.exceptions
import
AccessControl_Unauthorized
from
Products.CMFCore.exceptions
import
AccessControl_Unauthorized
from
Acquisition
import
Implicit
,
aq_base
from
Acquisition
import
Implicit
,
aq_base
from
Products.ERP5Type.Globals
import
InitializeClass
,
DTMLFile
,
Persistent
from
Products.ERP5Type.Globals
import
InitializeClass
,
DTMLFile
,
Persistent
...
@@ -44,12 +45,13 @@ from OFS.PropertyManager import PropertyManager
...
@@ -44,12 +45,13 @@ from OFS.PropertyManager import PropertyManager
from
urllib
import
quote
,
quote_plus
from
urllib
import
quote
,
quote_plus
from
copy
import
deepcopy
from
copy
import
deepcopy
from
lxml
import
etree
from
lxml
import
etree
from
zLOG
import
LOG
,
DEBUG
,
INFO
,
WARNING
from
mimetypes
import
guess_extension
from
mimetypes
import
guess_extension
from
DateTime
import
DateTime
from
DateTime
import
DateTime
from
decimal
import
Decimal
from
decimal
import
Decimal
from
xml.sax.saxutils
import
escape
from
xml.sax.saxutils
import
escape
import
re
import
re
import
Products.ERP5
import
os.path
try
:
try
:
from
webdav.Lockable
import
ResourceLockedError
from
webdav.Lockable
import
ResourceLockedError
...
@@ -79,9 +81,9 @@ NSMAP = {
...
@@ -79,9 +81,9 @@ NSMAP = {
# Constructors
# Constructors
manage_addFormPrintout
=
DTMLFile
(
"
dtml/FormPrintout_add"
,
globals
()
)
manage_addFormPrintout
=
DTMLFile
(
"
FormPrintout_add"
,
_dtmldir
)
def
addFormPrintout
(
self
,
id
,
title
=
""
,
form_name
=
''
,
template
=
''
,
def
addFormPrintout
(
self
,
id
,
title
=
""
,
form_name
=
''
,
template
=
''
,
# pylint: disable=redefined-builtin
REQUEST
=
None
,
filename
=
'object/title_or_id'
):
REQUEST
=
None
,
filename
=
'object/title_or_id'
):
"""Add form printout to folder.
"""Add form printout to folder.
...
@@ -103,7 +105,7 @@ def addFormPrintout(self, id, title="", form_name='', template='',
...
@@ -103,7 +105,7 @@ def addFormPrintout(self, id, title="", form_name='', template='',
add_and_edit
(
self
,
id
,
REQUEST
)
add_and_edit
(
self
,
id
,
REQUEST
)
return
''
return
''
def
add_and_edit
(
self
,
id
,
REQUEST
):
def
add_and_edit
(
self
,
id
,
REQUEST
):
# pylint: disable=redefined-builtin
"""Helper method to point to the object's management screen if
"""Helper method to point to the object's management screen if
'Add and Edit' button is pressed.
'Add and Edit' button is pressed.
...
@@ -141,7 +143,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
...
@@ -141,7 +143,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
"""
"""
meta_type
=
"ERP5 Form Printout"
meta_type
=
"ERP5 Form Printout"
portal_type
=
"Form Printout"
portal_type
=
"Form Printout"
icon
=
"www/form_printout_icon.png"
icon
=
os
.
path
.
join
(
os
.
path
.
dirname
(
Products
.
ERP5
.
__file__
),
"www"
,
"form_printout_icon.png"
)
# Declarative Security
# Declarative Security
security
=
ClassSecurityInfo
()
security
=
ClassSecurityInfo
()
...
@@ -161,15 +163,16 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
...
@@ -161,15 +163,16 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
{
'label'
:
'View'
,
'action'
:
''
},
)
+
Item
.
manage_options
)
{
'label'
:
'View'
,
'action'
:
''
},
)
+
Item
.
manage_options
)
security
.
declareProtected
(
'View management screens'
,
'manage_editFormPrintout'
)
security
.
declareProtected
(
'View management screens'
,
'manage_editFormPrintout'
)
manage_editFormPrintout
=
PageTemplateFile
(
'www/FormPrintout_manageEdit'
,
globals
(),
manage_editFormPrintout
=
PageTemplateFile
(
__name__
=
'manage_editFormPrintout'
)
os
.
path
.
join
(
os
.
path
.
dirname
(
Products
.
ERP5
.
__file__
),
'www'
,
'FormPrintout_manageEdit'
),
__name__
=
'manage_editFormPrintout'
)
manage_editFormPrintout
.
_owner
=
None
manage_editFormPrintout
.
_owner
=
None
# alias definition to do 'add_and_edit'
# alias definition to do 'add_and_edit'
security
.
declareProtected
(
'View management screens'
,
'manage_main'
)
security
.
declareProtected
(
'View management screens'
,
'manage_main'
)
manage_main
=
manage_editFormPrintout
manage_main
=
manage_editFormPrintout
def
__init__
(
self
,
id
,
title
=
''
,
form_name
=
''
,
template
=
''
,
def
__init__
(
self
,
id
,
title
=
''
,
form_name
=
''
,
template
=
''
,
# pylint: disable=redefined-builtin
filename
=
'object/title_or_id'
):
filename
=
'object/title_or_id'
):
"""Initialize id, title, form_name, template.
"""Initialize id, title, form_name, template.
...
@@ -193,7 +196,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
...
@@ -193,7 +196,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
security
.
declareProtected
(
'View'
,
'index_html'
)
security
.
declareProtected
(
'View'
,
'index_html'
)
def
index_html
(
self
,
REQUEST
,
RESPONSE
=
None
,
template_relative_url
=
None
,
def
index_html
(
self
,
REQUEST
,
RESPONSE
=
None
,
template_relative_url
=
None
,
format
=
None
,
batch_mode
=
False
):
format
=
None
,
batch_mode
=
False
):
# pylint: disable=redefined-builtin
"""Render and view a printout document.
"""Render and view a printout document.
format: conversion format requested by User.
format: conversion format requested by User.
...
@@ -254,7 +257,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
...
@@ -254,7 +257,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
%
'<br>'
.
join
(
self
.
_v_warnings
))
%
'<br>'
.
join
(
self
.
_v_warnings
))
return
self
.
manage_editFormPrintout
(
manage_tabs_message
=
message
)
return
self
.
manage_editFormPrintout
(
manage_tabs_message
=
message
)
def
_createStrategy
(
s
le
f
,
content_type
=
''
):
def
_createStrategy
(
s
el
f
,
content_type
=
''
):
if
guess_extension
(
content_type
)
==
'.odt'
:
if
guess_extension
(
content_type
)
==
'.odt'
:
return
ODTStrategy
()
return
ODTStrategy
()
if
guess_extension
(
content_type
)
==
'.odg'
:
if
guess_extension
(
content_type
)
==
'.odg'
:
...
@@ -262,7 +265,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
...
@@ -262,7 +265,7 @@ class FormPrintout(Base, Implicit, Persistent, RoleManager, Item):
raise
ValueError
,
'Template type: %s is not supported'
%
content_type
raise
ValueError
,
'Template type: %s is not supported'
%
content_type
def
_oooConvertByFormat
(
self
,
printout
,
content_type
,
extra_context
,
def
_oooConvertByFormat
(
self
,
printout
,
content_type
,
extra_context
,
REQUEST
,
format
,
batch_mode
):
REQUEST
,
format
,
batch_mode
):
# pylint: disable=redefined-builtin
"""
"""
Convert the ODF document into the given format.
Convert the ODF document into the given format.
...
@@ -320,7 +323,7 @@ class ODFStrategy(Implicit):
...
@@ -320,7 +323,7 @@ class ODFStrategy(Implicit):
odf_existent_name_list
=
[]
odf_existent_name_list
=
[]
def
render
(
self
,
extra_context
=
{}
):
def
render
(
self
,
extra_context
=
None
):
"""Render a odf document, form as a content, template as a template.
"""Render a odf document, form as a content, template as a template.
Keyword arguments:
Keyword arguments:
...
@@ -330,10 +333,11 @@ class ODFStrategy(Implicit):
...
@@ -330,10 +333,11 @@ class ODFStrategy(Implicit):
'container' : the object which has a form printout object
'container' : the object which has a form printout object
'form' : the form as a content
'form' : the form as a content
"""
"""
if
extra_context
is
None
:
extra_context
=
{}
here
=
extra_context
[
'here'
]
here
=
extra_context
[
'here'
]
if
here
is
None
:
if
here
is
None
:
raise
ValueError
,
'Can not create a ODF Document without a parent acquisition context'
raise
ValueError
,
'Can not create a ODF Document without a parent acquisition context'
form
=
extra_context
[
'form'
]
if
not
extra_context
.
has_key
(
'printout_template'
)
or
\
if
not
extra_context
.
has_key
(
'printout_template'
)
or
\
extra_context
[
'printout_template'
]
is
None
:
extra_context
[
'printout_template'
]
is
None
:
raise
ValueError
,
'Can not create a ODF Document without a printout template'
raise
ValueError
,
'Can not create a ODF Document without a printout template'
...
@@ -447,7 +451,7 @@ class ODFStrategy(Implicit):
...
@@ -447,7 +451,7 @@ class ODFStrategy(Implicit):
element_tree
=
element_tree
)
element_tree
=
element_tree
)
if
target_tuple
is
None
:
if
target_tuple
is
None
:
return
return
target_xpath
,
original_target
=
target_tuple
target_xpath
,
original_target
=
target_tuple
# pylint: disable=unpacking-non-sequence
office_body
=
original_target
.
getparent
()
office_body
=
original_target
.
getparent
()
target_index
=
office_body
.
index
(
original_target
)
target_index
=
office_body
.
index
(
original_target
)
temporary_element_tree
=
deepcopy
(
original_target
)
temporary_element_tree
=
deepcopy
(
original_target
)
...
@@ -473,7 +477,7 @@ class ODFStrategy(Implicit):
...
@@ -473,7 +477,7 @@ class ODFStrategy(Implicit):
target_index
+=
1
target_index
+=
1
report_item
.
popReport
(
portal_object
,
render_prefix
=
None
)
report_item
.
popReport
(
portal_object
,
render_prefix
=
None
)
def
_pickUpTargetSection
(
self
,
base_name
=
''
,
report_section_list
=
[]
,
element_tree
=
None
):
def
_pickUpTargetSection
(
self
,
base_name
=
''
,
report_section_list
=
None
,
element_tree
=
None
):
"""pick up a ODF target object to iterate ReportSection
"""pick up a ODF target object to iterate ReportSection
base_name -- the target name to replace in an ODF document
base_name -- the target name to replace in an ODF document
report_section_list -- ERP5Form ReportSection List which was created by a report method
report_section_list -- ERP5Form ReportSection List which was created by a report method
...
@@ -560,7 +564,6 @@ class ODFStrategy(Implicit):
...
@@ -560,7 +564,6 @@ class ODFStrategy(Implicit):
"""
"""
Replace an ODF draw:frame using an ERP5Form image field.
Replace an ODF draw:frame using an ERP5Form image field.
"""
"""
alt
=
image_field
.
get_value
(
'description'
)
or
image_field
.
get_value
(
'title'
)
image_xpath
=
'//draw:frame[@draw:name="%s"]/*'
%
image_field
.
id
image_xpath
=
'//draw:frame[@draw:name="%s"]/*'
%
image_field
.
id
image_list
=
element_tree
.
xpath
(
image_xpath
,
namespaces
=
element_tree
.
nsmap
)
image_list
=
element_tree
.
xpath
(
image_xpath
,
namespaces
=
element_tree
.
nsmap
)
if
not
image_list
:
if
not
image_list
:
...
@@ -610,8 +613,8 @@ class ODFStrategy(Implicit):
...
@@ -610,8 +613,8 @@ class ODFStrategy(Implicit):
if
svg_width
is
None
or
svg_height
is
None
:
if
svg_width
is
None
or
svg_height
is
None
:
return
(
'0cm'
,
'0cm'
)
return
(
'0cm'
,
'0cm'
)
# if not match causes exception
# if not match causes exception
width_tuple
=
re
.
match
(
"(
\
d[
\
d
\
.]*)(.*)
"
, svg_width).groups()
width_tuple
=
re
.
match
(
r
"(\
d[
\d\
.]*)(.*)
", svg_width).groups()
height_tuple = re.match("
(
\
d
[
\
d
\
.]
*
)(.
*
)
", svg_height).groups()
height_tuple = re.match(
r
"
(
\
d
[
\
d
\
.]
*
)(.
*
)
", svg_height).groups()
unit = width_tuple[1]
unit = width_tuple[1]
w = Decimal(width_tuple[0])
w = Decimal(width_tuple[0])
h = Decimal(height_tuple[0])
h = Decimal(height_tuple[0])
...
@@ -664,7 +667,8 @@ class ODFStrategy(Implicit):
...
@@ -664,7 +667,8 @@ class ODFStrategy(Implicit):
# clear original table
# clear original table
parent_paragraph = target_table.getparent()
parent_paragraph = target_table.getparent()
# clear rows
# clear rows
[newtable.remove(table_row) for table_row in table_row_list]
for table_row in table_row_list:
newtable.remove(table_row)
listboxline_list = listbox.get_value('default',
listboxline_list = listbox.get_value('default',
render_format='list',
render_format='list',
...
@@ -749,7 +753,6 @@ class ODFStrategy(Implicit):
...
@@ -749,7 +753,6 @@ class ODFStrategy(Implicit):
def _updateColumnValue(self, row, listbox_column_list):
def _updateColumnValue(self, row, listbox_column_list):
odf_cell_list = row.findall("
{
%
s
}
table
-
cell
" % TABLE_URI)
odf_cell_list = row.findall("
{
%
s
}
table
-
cell
" % TABLE_URI)
odf_cell_list_size = len(odf_cell_list)
listbox_column_size = len(listbox_column_list)
listbox_column_size = len(listbox_column_list)
for (column_index, column) in enumerate(odf_cell_list):
for (column_index, column) in enumerate(odf_cell_list):
if column_index >= listbox_column_size:
if column_index >= listbox_column_size:
...
@@ -765,7 +768,7 @@ class ODFStrategy(Implicit):
...
@@ -765,7 +768,7 @@ class ODFStrategy(Implicit):
odf_column_span_list = self._getOdfColumnSpanList(row_middle)
odf_column_span_list = self._getOdfColumnSpanList(row_middle)
listbox_column_size = len(listbox_column_list)
listbox_column_size = len(listbox_column_list)
listbox_column_index = 0
listbox_column_index = 0
for (
column_index
, column) in enumerate(odf_cell_list):
for (
_
, column) in enumerate(odf_cell_list):
if listbox_column_index >= listbox_column_size:
if listbox_column_index >= listbox_column_size:
break
break
value = listbox_column_list[listbox_column_index][1]
value = listbox_column_list[listbox_column_index][1]
...
@@ -780,12 +783,13 @@ class ODFStrategy(Implicit):
...
@@ -780,12 +783,13 @@ class ODFStrategy(Implicit):
if value is None:
if value is None:
self._removeColumnValue(column)
self._removeColumnValue(column)
column_value, table_content = self._translateValueIntoColumnContent(value, column)
column_value, table_content = self._translateValueIntoColumnContent(value, column)
[column.remove(child) for child in column]
for child in column:
column.remove(child)
if table_content is not None:
if table_content is not None:
column.append(table_content)
column.append(table_content)
value_attribute = self._getColumnValueAttribute(column)
value_attribute = self._getColumnValueAttribute(column)
if value_attribute is not None and column_value is not None:
if value_attribute is not None and column_value is not None:
column.set(value_attribute, column_value)
column.set(value_attribute, column_value)
def _translateValueIntoColumnContent(self, value, column):
def _translateValueIntoColumnContent(self, value, column):
"""translate a value as a table content"""
"""translate a value as a table content"""
...
@@ -836,11 +840,12 @@ class ODFStrategy(Implicit):
...
@@ -836,11 +840,12 @@ class ODFStrategy(Implicit):
if 'office' in column.nsmap and key.startswith("
{
%
s
}
" % column.nsmap['office']):
if 'office' in column.nsmap and key.startswith("
{
%
s
}
" % column.nsmap['office']):
del attrib[key]
del attrib[key]
column.text = None
column.text = None
[column.remove(child) for child in column]
for child in column:
column.remove(child)
def _clearColumnValue(self, column):
def _clearColumnValue(self, column):
attrib = column.attrib
attrib = column.attrib
for
key
in attrib.keys():
for
_
in attrib.keys():
value_attribute = self._getColumnValueAttribute(column)
value_attribute = self._getColumnValueAttribute(column)
if value_attribute is not None:
if value_attribute is not None:
column.set(value_attribute, '')
column.set(value_attribute, '')
...
@@ -863,7 +868,7 @@ class ODFStrategy(Implicit):
...
@@ -863,7 +868,7 @@ class ODFStrategy(Implicit):
span_attribute = "
{
%
s
}
number
-
columns
-
spanned
" % TABLE_URI
span_attribute = "
{
%
s
}
number
-
columns
-
spanned
" % TABLE_URI
return int(column.attrib.get(span_attribute, 1))
return int(column.attrib.get(span_attribute, 1))
def _nextListboxColumnIndex(self, span=0, current_index=0, column_span_list=[]):
def _nextListboxColumnIndex(self, span=0, current_index=0, column_span_list=[]):
# pylint: disable=dangerous-default-value
hops = 0
hops = 0
index = current_index
index = current_index
while hops < span:
while hops < span:
...
@@ -911,7 +916,7 @@ class ODTStrategy(ODFStrategy):
...
@@ -911,7 +916,7 @@ class ODTStrategy(ODFStrategy):
"""
"""
field_list = form.get_fields()
field_list = form.get_fields()
REQUEST = here.REQUEST
REQUEST = here.REQUEST
for (
count
, field) in enumerate(field_list):
for (
_
, field) in enumerate(field_list):
if isinstance(field, ListBox):
if isinstance(field, ListBox):
self._appendTableByListbox(element_tree, field, REQUEST,
self._appendTableByListbox(element_tree, field, REQUEST,
iteration_index=iteration_index)
iteration_index=iteration_index)
...
@@ -919,13 +924,13 @@ class ODTStrategy(ODFStrategy):
...
@@ -919,13 +924,13 @@ class ODTStrategy(ODFStrategy):
if not hasattr(here, field.get_value('formbox_target_id')):
if not hasattr(here, field.get_value('formbox_target_id')):
continue
continue
sub_form = getattr(here, field.get_value('formbox_target_id'))
sub_form = getattr(here, field.get_value('formbox_target_id'))
content =
self._replaceXmlByFormbox(element_tree, field, sub_form,
self._replaceXmlByFormbox(element_tree, field, sub_form,
extra_context, ooo_builder,
extra_context, ooo_builder,
iteration_index=iteration_index)
iteration_index=iteration_index)
elif isinstance(field, ReportBox):
elif isinstance(field, ReportBox):
report_method = getattr(field, field.get_value('report_method'), None)
report_method = getattr(field, field.get_value('report_method'), None)
self._replaceXmlByReportSection(element_tree, extra_context,
self._replaceXmlByReportSection(element_tree, extra_context,
report_method, field.id, ooo_builder)
report_method, field.id, ooo_builder)
elif isinstance(field, ImageField):
elif isinstance(field, ImageField):
self._replaceXmlByImageField(element_tree, field,
self._replaceXmlByImageField(element_tree, field,
ooo_builder, iteration_index=iteration_index)
ooo_builder, iteration_index=iteration_index)
...
@@ -1027,7 +1032,9 @@ class ODTStrategy(ODFStrategy):
...
@@ -1027,7 +1032,9 @@ class ODTStrategy(ODFStrategy):
#Delete all contents between <text:reference-mark-start/> and <text:reference-mark-end/>
#Delete all contents between <text:reference-mark-start/> and <text:reference-mark-end/>
#Try to fetch style-name
#Try to fetch style-name
attr_dict = {}
attr_dict = {}
[(attr_dict.update(target_node.attrib), parent_node.remove(target_node)) for target_node in node_to_remove_list]
for target_node in node_to_remove_list:
attr_dict.update(target_node.attrib)
parent_node.remove(target_node)
new_node = field.render_odt(local_name='span', attr_dict=attr_dict,
new_node = field.render_odt(local_name='span', attr_dict=attr_dict,
as_string=False)
as_string=False)
parent_node.insert(text_reference_position+1, new_node)
parent_node.insert(text_reference_position+1, new_node)
...
@@ -1092,7 +1099,7 @@ class ODGStrategy(ODFStrategy):
...
@@ -1092,7 +1099,7 @@ class ODGStrategy(ODFStrategy):
def _replaceXmlByForm(self, element_tree, form, here, extra_context,
def _replaceXmlByForm(self, element_tree, form, here, extra_context,
ooo_builder, iteration_index=0):
ooo_builder, iteration_index=0):
field_list = form.get_fields()
field_list = form.get_fields()
for (
count
, field) in enumerate(field_list):
for (
_
, field) in enumerate(field_list):
text_xpath = '//draw:frame[@draw:name="
%
s
"]' % field.id
text_xpath = '//draw:frame[@draw:name="
%
s
"]' % field.id
node_list = element_tree.xpath(text_xpath, namespaces=element_tree.nsmap)
node_list = element_tree.xpath(text_xpath, namespaces=element_tree.nsmap)
value = field.get_value('default')
value = field.get_value('default')
...
...
bt5/erp5_base/ModuleComponentTemplateItem/portal_components/module.erp5.FormPrintout.xml
0 → 100644
View file @
a64d6338
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"Module Component"
module=
"erp5.portal_type"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
default_reference
</string>
</key>
<value>
<string>
FormPrintout
</string>
</value>
</item>
<item>
<key>
<string>
default_source_reference
</string>
</key>
<value>
<string>
Products.ERP5OOo.FormPrintout
</string>
</value>
</item>
<item>
<key>
<string>
description
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
id
</string>
</key>
<value>
<string>
module.erp5.FormPrintout
</string>
</value>
</item>
<item>
<key>
<string>
portal_type
</string>
</key>
<value>
<string>
Module Component
</string>
</value>
</item>
<item>
<key>
<string>
sid
</string>
</key>
<value>
<none/>
</value>
</item>
<item>
<key>
<string>
text_content_error_message
</string>
</key>
<value>
<tuple/>
</value>
</item>
<item>
<key>
<string>
text_content_warning_message
</string>
</key>
<value>
<tuple/>
</value>
</item>
<item>
<key>
<string>
version
</string>
</key>
<value>
<string>
erp5
</string>
</value>
</item>
<item>
<key>
<string>
workflow_history
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAI=
</string>
</persistent>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"2"
aka=
"AAAAAAAAAAI="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary>
<item>
<key>
<string>
component_validation_workflow
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAM=
</string>
</persistent>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"3"
aka=
"AAAAAAAAAAM="
>
<pickle>
<global
name=
"WorkflowHistoryList"
module=
"Products.ERP5Type.Workflow"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_log
</string>
</key>
<value>
<list>
<dictionary>
<item>
<key>
<string>
action
</string>
</key>
<value>
<string>
validate
</string>
</value>
</item>
<item>
<key>
<string>
validation_state
</string>
</key>
<value>
<string>
validated
</string>
</value>
</item>
</dictionary>
</list>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/erp5_base/bt/template_module_component_id_list
View file @
a64d6338
module.erp5.FormPrintout
module.erp5.ImageUtil
module.erp5.ImageUtil
module.erp5.OOoTestUtil
module.erp5.TransformImageToBmp
module.erp5.TransformImageToBmp
module.erp5.TransformImageToPcx
module.erp5.TransformImageToPcx
module.erp5.TransformLib
module.erp5.TransformLib
module.erp5.OOoTestUtil
\ No newline at end of file
\ No newline at end of file
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