Commit 518d3060 authored by Romain Courteaud's avatar Romain Courteaud

erp5_trade: search trade condition matching source/destination project

parent bb0e30f1
...@@ -9,8 +9,8 @@ trade_condition_list = order.getSpecialiseValueList( ...@@ -9,8 +9,8 @@ trade_condition_list = order.getSpecialiseValueList(
portal_type=trade_condition_portal_type) portal_type=trade_condition_portal_type)
tested_base_category_list = [ ] tested_base_category_list = [ ]
for base_category in ('source_section', 'source', for base_category in ('source_section', 'source', 'source_project',
'destination_section', 'destination', ): 'destination_section', 'destination', 'destination_project'):
if context.getProperty(base_category): if context.getProperty(base_category):
tested_base_category_list.append(base_category) tested_base_category_list.append(base_category)
...@@ -24,6 +24,12 @@ else: ...@@ -24,6 +24,12 @@ else:
def rank_method(trade_condition): def rank_method(trade_condition):
rank = 0 rank = 0
destination_project = trade_condition.getDestinationProject()
if destination_project:
if destination_project == context.getDestinationProject():
rank += 10
else:
rank -= 2
destination_section = trade_condition.getDestinationSection() destination_section = trade_condition.getDestinationSection()
if destination_section: if destination_section:
if destination_section == context.getDestinationSection(): if destination_section == context.getDestinationSection():
...@@ -36,6 +42,8 @@ def rank_method(trade_condition): ...@@ -36,6 +42,8 @@ def rank_method(trade_condition):
rank += 10 rank += 10
else: else:
rank -= 2 rank -= 2
if trade_condition.getSourceProject():
rank += 1
if trade_condition.getSourceSection(): if trade_condition.getSourceSection():
rank += 1 rank += 1
if trade_condition.getSource(): if trade_condition.getSource():
......
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