Commit a41d73f5 authored by Gabriel Monnerat's avatar Gabriel Monnerat

change the API to get the object instead of your relative_url

parent f089b633
......@@ -64,7 +64,7 @@ if sale_order is None:\n
raise ValueError("Sale Packing List Line \'%s\' should have a computer partition aggregated" % sale_packing_list_line.getRelativeUrl())\n
else:\n
# Slave instance do not change state of computer partitions.\n
if sale_packing_list_line.getAggregate(portal_type=["Slave Instance"]) is None:\n
if sale_packing_list_line.getAggregateValue(portal_type=["Slave Instance"]) is None:\n
# Mark computer partition as busy\n
# This method should be always callable in this step to prevent having 2 packing list related to the same computer partition\n
computer_partition.markBusy()\n
......
......@@ -68,7 +68,7 @@ if computer_partition is None:\n
raise ValueError("Sale Packing List Line \'%s\' should have a computer partition aggregated" % current_delivery_line.getRelativeUrl())\n
else:\n
# Slave instance do not change state of computer partitions.\n
if current_delivery_line.getAggregate(portal_type=["Slave Instance"]) is None:\n
if current_delivery_line.getAggregateValue(portal_type=["Slave Instance"]) is None:\n
# Mark computer partition as free\n
# This method should be always callable in this step to prevent having 2 packing list related to the same computer partition\n
computer_partition.markFree()\n
......
413
\ No newline at end of file
414
\ No newline at end of file
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