Commit c2867bee authored by Sebastien Robin's avatar Sebastien Robin

check if we have a mapped value or not


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3080 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f2425c20
......@@ -516,7 +516,8 @@ class Resource(XMLMatrix, CoreResource, Variated):
domain_tool = getToolByName(self,'portal_domains')
portal_type_list = self.getPortalSupplyTypeList()
mapped_value = domain_tool.generateMappedValue(tmp_context,portal_type=portal_type_list,**kw)
base_price = mapped_value.getBasePrice()
if mapped_value is not None:
base_price = mapped_value.getBasePrice()
unit_base_price = None
if base_price in [None,'']:
......
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