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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Georgios Dagkakis
erp5
Commits
f2f0f118
Commit
f2f0f118
authored
Aug 01, 2011
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop getToolByName usage.
parent
57229c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
product/ERP5Configurator/Document/CustomerBT5ConfiguratorItem.py
.../ERP5Configurator/Document/CustomerBT5ConfiguratorItem.py
+2
-5
No files found.
product/ERP5Configurator/Document/CustomerBT5ConfiguratorItem.py
View file @
f2f0f118
...
...
@@ -30,7 +30,6 @@ import zope.interface
from
AccessControl
import
ClassSecurityInfo
from
Products.ERP5Type
import
Permissions
,
PropertySheet
,
interfaces
from
Products.ERP5Type.XMLObject
import
XMLObject
from
Products.CMFCore.utils
import
getToolByName
from
Products.ERP5Configurator.mixin.configurator_item
import
ConfiguratorItemMixin
class
CustomerBT5ConfiguratorItem
(
ConfiguratorItemMixin
,
XMLObject
):
...
...
@@ -59,10 +58,8 @@ class CustomerBT5ConfiguratorItem(ConfiguratorItemMixin, XMLObject):
,
PropertySheet
.
DublinCore
)
def
_build
(
self
,
business_configuration
):
template_tool
=
getToolByName
(
self
.
getPortalObject
(),
'portal_templates'
)
bt5
=
template_tool
.
newContent
(
portal_type
=
"Business Template"
,
\
title
=
self
.
bt5_title
)
bt5
=
self
.
getPortalObject
().
portal_templates
.
newContent
(
portal_type
=
"Business Template"
,
title
=
self
.
bt5_title
)
## ..and set it as current
business_configuration
.
setSpecialise
(
bt5
.
getRelativeUrl
())
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