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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
b6ea4f65
Commit
b6ea4f65
authored
Oct 28, 2011
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raise meaningful error message instead of index error.
parent
02b0b49f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
product/ERP5/Document/Resource.py
product/ERP5/Document/Resource.py
+8
-1
No files found.
product/ERP5/Document/Resource.py
View file @
b6ea4f65
...
...
@@ -1134,4 +1134,11 @@ class Resource(XMLObject, XMLMatrix, VariatedMixin):
query
=
self
.
ResourceModule_zGetQuantityUnitDefinitionRatio
(
quantity_unit_uid
=
quantity_unit_uid
,
resource_uid
=
self
.
getUid
())
return
query
[
0
].
quantity
try
:
return
query
[
0
].
quantity
except
:
raise
LookupError
(
'Can not find the Quantity Unit Conversion '
\
'Definition. Please make sure that Unit '
\
'Conversion Definitions are indexed.'
\
'quantity_unit_uid: %s, resource_uid: %s'
\
%
(
quantity_unit_uid
,
self
.
getUid
()))
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