Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
61b78ab1
Commit
61b78ab1
authored
Jul 21, 2011
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tinnies code style changes.
parent
e64f41a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
14 deletions
+13
-14
product/ERP5Configurator/Tool/ConfiguratorTool.py
product/ERP5Configurator/Tool/ConfiguratorTool.py
+13
-14
No files found.
product/ERP5Configurator/Tool/ConfiguratorTool.py
View file @
61b78ab1
...
...
@@ -216,12 +216,11 @@ class ConfiguratorTool(BaseTool):
return
self
.
view
()
response
=
self
.
_next
(
business_configuration
=
bc
,
kw
=
kw
)
## Parse server response
command
=
response
[
"command"
]
if
command
==
"show"
:
if
response
[
"command"
]
==
"show"
:
return
self
.
ConfiguratorTool_dialogForm
(
previous
=
response
[
'previous'
],
form_html
=
response
[
"data"
],
next
=
response
[
'next'
])
elif
command
==
"install"
:
next
=
response
[
'next'
])
elif
response
[
"command"
]
==
"install"
:
return
self
.
startInstallation
(
bc
,
REQUEST
=
REQUEST
)
def
_next
(
self
,
business_configuration
,
kw
):
...
...
@@ -354,7 +353,7 @@ class ConfiguratorTool(BaseTool):
if
html
is
None
:
## we have no more forms proceed to build
response
.
update
(
command
=
"install"
,
data
=
None
)
response
.
update
(
command
=
"install"
,
data
=
None
)
else
:
## we have more forms
next_state
=
self
.
restrictedTraverse
(
business_configuration
.
getNextTransition
()
\
...
...
@@ -371,12 +370,12 @@ class ConfiguratorTool(BaseTool):
he can no longer continue. """
if
reason
==
'no_available_transitions'
:
form_html
=
self
.
BusinessConfiguration_viewStopForm
()
response
.
update
(
command
=
"show"
,
next
=
None
,
\
previous
=
None
,
data
=
form_html
)
response
.
update
(
command
=
"show"
,
next
=
None
,
\
previous
=
None
,
data
=
form_html
)
elif
reason
==
'authentification_failure'
:
form_html
=
self
.
BusinessConfiguration_viewUnauthenticatedForm
()
response
.
update
(
command
=
"show"
,
data
=
form_html
,
next
=
None
,
previous
=
None
,)
response
.
update
(
command
=
"show"
,
data
=
form_html
,
next
=
None
,
previous
=
None
,)
return
response
...
...
@@ -403,7 +402,7 @@ class ConfiguratorTool(BaseTool):
## is client is not allowed access ?
if
business_configuration
is
None
:
form_html
=
self
.
BusinessConfiguration_viewUnauthenticatedForm
()
return
self
.
ConfiguratorTool_dialogForm
(
form_html
=
form_html
)
return
self
.
ConfiguratorTool_dialogForm
(
form_html
=
form_html
)
## client can not go further his business configuration is already built
if
business_configuration
.
isEndConfigurationState
():
form_html
=
self
.
BusinessConfiguration_viewStopForm
()
...
...
@@ -417,9 +416,9 @@ class ConfiguratorTool(BaseTool):
business_configuration
.
getNextTransition
().
getDestination
())
response
[
'data'
]
=
self
.
Base_mainConfiguratorTemplate
(
form_html
=
form_html
,
current_state
=
next_state
,
business_configuration
=
business_configuration
)
form_html
=
form_html
,
current_state
=
next_state
,
business_configuration
=
business_configuration
)
return
response
security
.
declarePublic
(
Permissions
.
AccessContentsInformation
,
...
...
@@ -466,7 +465,7 @@ class ConfiguratorTool(BaseTool):
REQUEST
.
set
(
'active_process_id'
,
active_process
.
getId
())
request_restore_dict
=
{
'__ac_key'
:
REQUEST
.
get
(
'__ac_key'
,
None
),
}
self
.
activate
(
active_process
=
active_process
,
tag
=
'initialERP5Setup'
self
.
activate
(
active_process
=
active_process
,
tag
=
'initialERP5Setup'
).
initialERP5Setup
(
business_configuration
.
getRelativeUrl
(),
request_restore_dict
)
return
self
.
ConfiguratorTool_viewInstallationStatus
(
REQUEST
)
...
...
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