Commit 77e17dcd authored by Arnaud Fontaine's avatar Arnaud Fontaine

ZODB Components: erp5_forge: Migrate Bug Document from filesystem.

parent 4613947b
...@@ -32,33 +32,31 @@ from Products.ERP5Type import Permissions, PropertySheet ...@@ -32,33 +32,31 @@ from Products.ERP5Type import Permissions, PropertySheet
from Products.ERP5.Document.Ticket import Ticket from Products.ERP5.Document.Ticket import Ticket
class Bug(Ticket): class Bug(Ticket):
"""Bug means a bug report, a feature request or an issue. """Bug means a bug report, a feature request or an issue.
""" """
meta_type = 'ERP5 Bug'
meta_type = 'ERP5 Bug' portal_type = 'Bug'
portal_type = 'Bug' add_permission = Permissions.AddPortalContent
add_permission = Permissions.AddPortalContent
# Declarative security
# Declarative security security = ClassSecurityInfo()
security = ClassSecurityInfo() security.declareObjectProtected(Permissions.AccessContentsInformation)
security.declareObjectProtected(Permissions.AccessContentsInformation)
# Declarative properties
# Declarative properties property_sheets = ( PropertySheet.Base
property_sheets = ( PropertySheet.Base , PropertySheet.XMLObject
, PropertySheet.XMLObject , PropertySheet.CategoryCore
, PropertySheet.CategoryCore , PropertySheet.DublinCore
, PropertySheet.DublinCore , PropertySheet.Amount
, PropertySheet.Amount , PropertySheet.Arrow
, PropertySheet.Arrow , PropertySheet.Price
, PropertySheet.Price , PropertySheet.Movement
, PropertySheet.Movement , PropertySheet.Bug
, PropertySheet.Bug )
)
security.declarePrivate('manage_afterClone')
security.declarePrivate('manage_afterClone') def manage_afterClone(self, item):
def manage_afterClone(self, item): Ticket.manage_afterClone(self, item)
Ticket.manage_afterClone(self, item) # delete existing bug lines
# delete existing bug lines self.manage_delObjects(list(self.contentIds(
self.manage_delObjects(list(self.contentIds( filter=dict(portal_type='Bug Line'))))
filter=dict(portal_type='Bug Line')))) \ No newline at end of file
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="Document Component" module="erp5.portal_type"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>default_reference</string> </key>
<value> <string>Bug</string> </value>
</item>
<item>
<key> <string>default_source_reference</string> </key>
<value> <string>Products.ERP5.Document.Bug</string> </value>
</item>
<item>
<key> <string>description</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>document.erp5.Bug</string> </value>
</item>
<item>
<key> <string>portal_type</string> </key>
<value> <string>Document 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>
document.erp5.Bug
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment