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
141
Merge Requests
141
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
6001cb3a
Commit
6001cb3a
authored
Apr 21, 2024
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 04, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trade: pylint py3
parent
a7de82c6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
42 deletions
+32
-42
bt5/erp5_trade/DocumentTemplateItem/portal_components/document.erp5.DeliveryRootSimulationRule.py
...al_components/document.erp5.DeliveryRootSimulationRule.py
+1
-1
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/InternalOrder_applyTradeCondition.py
...tal_skins/erp5_trade/InternalOrder_applyTradeCondition.py
+10
-13
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/PurchaseOrder_applyPurchaseTradeCondition.py
...s/erp5_trade/PurchaseOrder_applyPurchaseTradeCondition.py
+9
-12
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
...tal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
+12
-15
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SalePackingList_fastInput.py
...Item/portal_skins/erp5_trade/SalePackingList_fastInput.py
+0
-1
No files found.
bt5/erp5_trade/DocumentTemplateItem/portal_components/document.erp5.DeliveryRootSimulationRule.py
View file @
6001cb3a
...
@@ -87,7 +87,7 @@ class DeliveryRuleMovementGenerator(MovementGeneratorMixin):
...
@@ -87,7 +87,7 @@ class DeliveryRuleMovementGenerator(MovementGeneratorMixin):
# This is bad XXX-JPS - use use
# This is bad XXX-JPS - use use
"""
"""
return
None
return
()
def
_getInputMovementList
(
self
,
movement_list
=
None
,
rounding
=
None
):
def
_getInputMovementList
(
self
,
movement_list
=
None
,
rounding
=
None
):
"""Input movement list comes from delivery"""
"""Input movement list comes from delivery"""
...
...
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/InternalOrder_applyTradeCondition.py
View file @
6001cb3a
...
@@ -29,40 +29,37 @@ def rank_method(trade_condition):
...
@@ -29,40 +29,37 @@ def rank_method(trade_condition):
if
destination_section
:
if
destination_section
:
destination_section_group
=
trade_condition
.
getDestinationSectionValue
().
getGroup
()
destination_section_group
=
trade_condition
.
getDestinationSectionValue
().
getGroup
()
if
destination_section
==
context
.
getDestinationSection
():
if
destination_section
==
context
.
getDestinationSection
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
destination
=
trade_condition
.
getDestination
()
destination
=
trade_condition
.
getDestination
()
if
destination
:
if
destination
:
if
destination
==
context
.
getDestination
():
if
destination
==
context
.
getDestination
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
if
trade_condition
.
getSourceSection
():
if
trade_condition
.
getSourceSection
():
rank
+
=
1
rank
-
=
1
if
destination_section_group
:
if
destination_section_group
:
source_section_group
=
trade_condition
.
getSourceSectionValue
().
getGroup
()
source_section_group
=
trade_condition
.
getSourceSectionValue
().
getGroup
()
if
source_section_group
:
if
source_section_group
:
if
source_section_group
.
startswith
(
destination_section_group
)
\
if
source_section_group
.
startswith
(
destination_section_group
)
\
or
destination_section_group
.
startswith
(
source_section_group
):
or
destination_section_group
.
startswith
(
source_section_group
):
# trade conditions where both sections are in the same group must have high priority
# trade conditions where both sections are in the same group must have high priority
rank
+
=
20
rank
-
=
20
if
trade_condition
.
getSource
():
if
trade_condition
.
getSource
():
rank
+
=
1
rank
-
=
1
rank
+
=
len
(
trade_condition
.
getSpecialiseList
())
rank
-
=
len
(
trade_condition
.
getSpecialiseList
())
if
trade_condition
.
getValidationState
()
==
'validated'
:
if
trade_condition
.
getValidationState
()
==
'validated'
:
rank
+
=
2
rank
-
=
2
return
rank
return
rank
def
sort_method
(
a
,
b
):
return
-
cmp
(
rank_method
(
a
),
rank_method
(
b
))
while
count
>
0
and
len
(
trade_condition_list
)
==
0
:
while
count
>
0
and
len
(
trade_condition_list
)
==
0
:
count
-=
1
count
-=
1
trade_condition_list
=
context
.
portal_domains
.
searchPredicateList
(
trade_condition_list
=
context
.
portal_domains
.
searchPredicateList
(
predicate_context
,
portal_type
=
trade_condition_portal_type_list
,
predicate_context
,
portal_type
=
trade_condition_portal_type_list
,
tested_base_category_list
=
tested_base_category_list
[:
count
],
tested_base_category_list
=
tested_base_category_list
[:
count
],
sort_
method
=
sort
_method
)
sort_
key_method
=
rank
_method
)
keep_items
=
{}
keep_items
=
{}
if
len
(
trade_condition_list
)
==
0
:
if
len
(
trade_condition_list
)
==
0
:
...
...
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/PurchaseOrder_applyPurchaseTradeCondition.py
View file @
6001cb3a
...
@@ -27,33 +27,30 @@ def rank_method(trade_condition):
...
@@ -27,33 +27,30 @@ def rank_method(trade_condition):
source_section
=
trade_condition
.
getSourceSection
()
source_section
=
trade_condition
.
getSourceSection
()
if
source_section
:
if
source_section
:
if
source_section
==
context
.
getSourceSection
():
if
source_section
==
context
.
getSourceSection
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
source
=
trade_condition
.
getSource
()
source
=
trade_condition
.
getSource
()
if
source
:
if
source
:
if
source
==
context
.
getSource
():
if
source
==
context
.
getSource
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
if
trade_condition
.
getDestinationSection
():
if
trade_condition
.
getDestinationSection
():
rank
+
=
1
rank
-
=
1
if
trade_condition
.
getDestination
():
if
trade_condition
.
getDestination
():
rank
+
=
1
rank
-
=
1
rank
+
=
len
(
trade_condition
.
getSpecialiseList
())
rank
-
=
len
(
trade_condition
.
getSpecialiseList
())
if
trade_condition
.
getValidationState
()
==
'validated'
:
if
trade_condition
.
getValidationState
()
==
'validated'
:
rank
+
=
2
rank
-
=
2
return
rank
return
rank
def
sort_method
(
a
,
b
):
return
-
cmp
(
rank_method
(
a
),
rank_method
(
b
))
while
count
>
0
and
len
(
trade_condition_list
)
==
0
:
while
count
>
0
and
len
(
trade_condition_list
)
==
0
:
count
-=
1
count
-=
1
trade_condition_list
=
context
.
portal_domains
.
searchPredicateList
(
trade_condition_list
=
context
.
portal_domains
.
searchPredicateList
(
predicate_context
,
portal_type
=
trade_condition_portal_type
,
predicate_context
,
portal_type
=
trade_condition_portal_type
,
tested_base_category_list
=
tested_base_category_list
[:
count
],
tested_base_category_list
=
tested_base_category_list
[:
count
],
sort_
method
=
sort
_method
)
sort_
key_method
=
rank
_method
)
keep_items
=
{}
keep_items
=
{}
if
len
(
trade_condition_list
)
==
0
:
if
len
(
trade_condition_list
)
==
0
:
...
...
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SaleOrder_applySaleTradeCondition.py
View file @
6001cb3a
...
@@ -28,35 +28,32 @@ def rank_method(trade_condition):
...
@@ -28,35 +28,32 @@ def rank_method(trade_condition):
destination_project
=
trade_condition
.
getDestinationProject
()
destination_project
=
trade_condition
.
getDestinationProject
()
if
destination_project
:
if
destination_project
:
if
destination_project
==
context
.
getDestinationProject
():
if
destination_project
==
context
.
getDestinationProject
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
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
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
destination
=
trade_condition
.
getDestination
()
destination
=
trade_condition
.
getDestination
()
if
destination
:
if
destination
:
if
destination
==
context
.
getDestination
():
if
destination
==
context
.
getDestination
():
rank
+
=
10
rank
-
=
10
else
:
else
:
rank
-
=
2
rank
+
=
2
if
trade_condition
.
getSourceProject
():
if
trade_condition
.
getSourceProject
():
rank
+
=
1
rank
-
=
1
if
trade_condition
.
getSourceSection
():
if
trade_condition
.
getSourceSection
():
rank
+
=
1
rank
-
=
1
if
trade_condition
.
getSource
():
if
trade_condition
.
getSource
():
rank
+
=
1
rank
-
=
1
rank
+
=
len
(
trade_condition
.
getSpecialiseList
())
rank
-
=
len
(
trade_condition
.
getSpecialiseList
())
if
trade_condition
.
getValidationState
()
==
'validated'
:
if
trade_condition
.
getValidationState
()
==
'validated'
:
rank
+
=
2
rank
-
=
2
return
rank
return
rank
def
sort_method
(
a
,
b
):
return
-
cmp
(
rank_method
(
a
),
rank_method
(
b
))
def
filter_method
(
trade_condition_list
):
def
filter_method
(
trade_condition_list
):
# Reject trade condition which has a non different value than the order
# Reject trade condition which has a non different value than the order
filtered_trade_condition_list
=
[]
filtered_trade_condition_list
=
[]
...
@@ -76,7 +73,7 @@ while count > 0 and len(trade_condition_list) == 0:
...
@@ -76,7 +73,7 @@ while count > 0 and len(trade_condition_list) == 0:
predicate_context
,
portal_type
=
trade_condition_portal_type
,
predicate_context
,
portal_type
=
trade_condition_portal_type
,
tested_base_category_list
=
tested_base_category_list
[:
count
],
tested_base_category_list
=
tested_base_category_list
[:
count
],
filter_method
=
filter_method
,
filter_method
=
filter_method
,
sort_
method
=
sort
_method
)
sort_
key_method
=
rank
_method
)
keep_items
=
{}
keep_items
=
{}
if
len
(
trade_condition_list
)
==
0
:
if
len
(
trade_condition_list
)
==
0
:
...
...
bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/SalePackingList_fastInput.py
View file @
6001cb3a
...
@@ -70,7 +70,6 @@ with ImmediateReindexContextManager() as immediate_reindex_context_manager:
...
@@ -70,7 +70,6 @@ with ImmediateReindexContextManager() as immediate_reindex_context_manager:
line_variation_base_category_list
=
line_variation_base_category_dict
.
keys
()
line_variation_base_category_list
=
line_variation_base_category_dict
.
keys
()
# construct new content (container_line)
# construct new content (container_line)
resource_url
=
resource_url
new_container_line_id
=
str
(
container
.
generateNewId
())
new_container_line_id
=
str
(
container
.
generateNewId
())
container_line
=
container
.
newContent
(
container_line
=
container
.
newContent
(
immediate_reindex
=
immediate_reindex_context_manager
,
immediate_reindex
=
immediate_reindex_context_manager
,
...
...
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