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
Laurent S
erp5
Commits
bbf200bb
Commit
bbf200bb
authored
May 26, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5WorkflowTool.py: add bootstrap related functions.
parent
104c6659
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
36 deletions
+59
-36
product/ERP5/Tool/ERP5WorkflowTool.py
product/ERP5/Tool/ERP5WorkflowTool.py
+59
-36
No files found.
product/ERP5/Tool/ERP5WorkflowTool.py
View file @
bbf200bb
...
...
@@ -32,6 +32,7 @@ import shutil
import
sys
import
subprocess
import
time
import
transaction
import
struct
import
cPickle
import
urllib2
...
...
@@ -67,6 +68,7 @@ from Products.ERP5Type.DiffUtils import DiffFile
from
Products.ERP5Type.Globals
import
InitializeClass
,
DTMLFile
,
PersistentMapping
from
Products.ERP5Type.Message
import
translateString
from
Products.ERP5Type.Tool.BaseTool
import
BaseTool
from
Products.ERP5Type.UnrestrictedMethod
import
unrestricted_apply
from
Products.ZSQLCatalog.SQLCatalog
import
SimpleQuery
,
AutoQuery
,
ComplexQuery
,
NegatedQuery
from
sets
import
ImmutableSet
from
tempfile
import
mkstemp
,
mkdtemp
...
...
@@ -94,7 +96,7 @@ class ERP5WorkflowTool(BaseTool, OriginalWorkflowTool):
title
=
'ERP5 Workflow Tool'
meta_type
=
'ERP5 Workflow Tool'
portal_type
=
'ERP5 Workflow Tool'
allowed_types
=
(
'Workflow'
,
'Interaction Workflow'
,
)
allowed_types
=
(
'Workflow'
,
'Interaction Workflow'
,
'Configuration Workflow'
)
all_meta_types
=
OriginalWorkflowTool
.
all_meta_types
# This stores information on repositories.
...
...
@@ -116,6 +118,26 @@ class ERP5WorkflowTool(BaseTool, OriginalWorkflowTool):
PropertySheet
.
DublinCore
,
)
def
_isBootstrapRequired
(
self
):
return
True
def
_bootstrap
(
self
):
bt_name
=
'erp5_workflow'
from
Products.ERP5.ERP5Site
import
ERP5Generator
ERP5Generator
.
bootstrap
(
self
,
bt_name
,
'WorkflowTemplateItem'
,
[])
def
install
():
from
ZPublisher.BaseRequest
import
RequestContainer
from
Products.ERP5Type.Globals
import
get_request
portal
=
self
.
getPortalObject
()
# BusinessTemplate.install needs a request
template_tool
=
portal
.
aq_base
.
__of__
(
portal
.
aq_parent
.
__of__
(
RequestContainer
(
REQUEST
=
get_request
()))).
portal_templates
if
template_tool
.
getInstalledBusinessTemplate
(
bt_name
)
is
None
:
from
Products.ERP5.ERP5Site
import
getBootstrapBusinessTemplateUrl
url
=
getBootstrapBusinessTemplateUrl
(
bt_name
)
template_tool
.
download
(
url
).
install
()
transaction
.
get
().
addBeforeCommitHook
(
unrestricted_apply
,
(
install
,))
def
_jumpToStateFor
(
self
,
ob
,
state_id
,
wf_id
=
None
,
*
args
,
**
kw
):
"""Inspired from doActionFor.
This is public method to allow passing meta transition (Jump form
...
...
@@ -214,7 +236,8 @@ class ERP5WorkflowTool(BaseTool, OriginalWorkflowTool):
return
res
def
getWorkflowTempObjectList
(
self
):
""" Return a list of converted temporary workflows.
""" Return a list of converted temporary workflows. Only necessary in
ERP5 Workflow Tool to get temporarilly converted DCWorkflow.
"""
temp_workflow_list
=
[]
temp_workflow_id_list
=
[]
...
...
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