Commit fdffc5fa authored by Łukasz Nowak's avatar Łukasz Nowak

Do not fail in case if no movement was found.

It supports cases when Person is in middle of requesting of Software
Instance.
parent 1febdef8
......@@ -660,6 +660,8 @@ class SlapTool(BaseTool):
else:
movement = self._getSalePackingListLineForComputerPartition(
requested_software_instance)
if movement is None:
raise SoftwareInstanceNotReady
software_instance = SoftwareInstance(
**self._getSalePackingListLineAsSoftwareInstance(
movement))
......
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