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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
82f0bdce
Commit
82f0bdce
authored
Sep 08, 2022
by
Romain Courteaud
Committed by
Kazuhiko Shiozaki
Jul 11, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_trade: drop trade condition with not matching categories
parent
9227f95d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
...tal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
+17
-2
No files found.
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
View file @
82f0bdce
...
...
@@ -8,9 +8,10 @@ trade_condition_portal_type = 'Sale Trade Condition'
trade_condition_list
=
order
.
getSpecialiseValueList
(
portal_type
=
trade_condition_portal_type
)
all_category_list
=
(
'source_section'
,
'source'
,
'source_project'
,
'destination_section'
,
'destination'
,
'destination_project'
)
tested_base_category_list
=
[
]
for
base_category
in
(
'source_section'
,
'source'
,
'source_project'
,
'destination_section'
,
'destination'
,
'destination_project'
):
for
base_category
in
all_category_list
:
if
context
.
getProperty
(
base_category
):
tested_base_category_list
.
append
(
base_category
)
...
...
@@ -56,11 +57,25 @@ def rank_method(trade_condition):
def
sort_method
(
a
,
b
):
return
-
cmp
(
rank_method
(
a
),
rank_method
(
b
))
def
filter_method
(
trade_condition_list
):
# Reject trade condition which has a non different value than the order
filtered_trade_condition_list
=
[]
for
trade_condition
in
trade_condition_list
:
matching
=
True
for
base_category
in
all_category_list
:
if
trade_condition
.
getProperty
(
base_category
):
if
trade_condition
.
getProperty
(
base_category
)
!=
order
.
getProperty
(
base_category
):
matching
=
False
if
matching
:
filtered_trade_condition_list
.
append
(
trade_condition
)
return
filtered_trade_condition_list
while
count
>
0
and
len
(
trade_condition_list
)
==
0
:
count
-=
1
trade_condition_list
=
context
.
portal_domains
.
searchPredicateList
(
predicate_context
,
portal_type
=
trade_condition_portal_type
,
tested_base_category_list
=
tested_base_category_list
[:
count
],
filter_method
=
filter_method
,
sort_method
=
sort_method
)
keep_items
=
{}
...
...
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