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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laurent S
erp5
Commits
fa0b9856
Commit
fa0b9856
authored
May 13, 2014
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
applicable supply lines should be sorted by explanation's effective model list's order.
parent
28698f35
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
30 deletions
+103
-30
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Movement_getPriceCalculationOperandDict.xml
...ins/erp5_core/Movement_getPriceCalculationOperandDict.xml
+25
-29
product/ERP5/bootstrap/erp5_core/bt/revision
product/ERP5/bootstrap/erp5_core/bt/revision
+1
-1
product/ERP5/tests/testTradeCondition.py
product/ERP5/tests/testTradeCondition.py
+77
-0
No files found.
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Movement_getPriceCalculationOperandDict.xml
View file @
fa0b9856
...
@@ -64,9 +64,13 @@ def destinationSectionSortMethod(a, b):\n
...
@@ -64,9 +64,13 @@ def destinationSectionSortMethod(a, b):\n
\n
\n
def getResourceInternalPriceSortMethod(high_priority_supply_line_list):\n
def getResourceInternalPriceSortMethod(high_priority_supply_line_list):\n
def resourceInternalPriceSortMethod(a, b):\n
def resourceInternalPriceSortMethod(a, b):\n
if a in high_priority_supply_line_list:\n
a_number = (a in high_priority_supply_line_list) and high_priority_supply_line_list.index(a)+1 or 0\n
b_number = (b in high_priority_supply_line_list) and high_priority_supply_line_list.index(b)+1 or 0\n
if a_number and b_number:\n
return a_number - b_number\n
elif a_number:\n
return -1\n
return -1\n
elif b
in high_priority_supply_line_list
:\n
elif b
_number
:\n
return 1\n
return 1\n
\n
\n
if "Internal" in a.getPortalType():\n
if "Internal" in a.getPortalType():\n
...
@@ -84,9 +88,13 @@ def getResourceInternalPriceSortMethod(high_priority_supply_line_list):\n
...
@@ -84,9 +88,13 @@ def getResourceInternalPriceSortMethod(high_priority_supply_line_list):\n
\n
\n
def getResourcePurchasePriceSortMethod(high_priority_supply_line_list):\n
def getResourcePurchasePriceSortMethod(high_priority_supply_line_list):\n
def resourcePurchasePriceSortMethod(a, b):\n
def resourcePurchasePriceSortMethod(a, b):\n
if a in high_priority_supply_line_list:\n
a_number = (a in high_priority_supply_line_list) and high_priority_supply_line_list.index(a)+1 or 0\n
b_number = (b in high_priority_supply_line_list) and high_priority_supply_line_list.index(b)+1 or 0\n
if a_number and b_number:\n
return a_number - b_number\n
elif a_number:\n
return -1\n
return -1\n
elif b
in high_priority_supply_line_list
:\n
elif b
_number
:\n
return 1\n
return 1\n
\n
\n
if "Purchase" in a.getPortalType():\n
if "Purchase" in a.getPortalType():\n
...
@@ -104,9 +112,13 @@ def getResourcePurchasePriceSortMethod(high_priority_supply_line_list):\n
...
@@ -104,9 +112,13 @@ def getResourcePurchasePriceSortMethod(high_priority_supply_line_list):\n
\n
\n
def getResourceSalePriceSortMethod(high_priority_supply_line_list):\n
def getResourceSalePriceSortMethod(high_priority_supply_line_list):\n
def resourceSalePriceSortMethod(a, b):\n
def resourceSalePriceSortMethod(a, b):\n
if a in high_priority_supply_line_list:\n
a_number = (a in high_priority_supply_line_list) and high_priority_supply_line_list.index(a)+1 or 0\n
b_number = (b in high_priority_supply_line_list) and high_priority_supply_line_list.index(b)+1 or 0\n
if a_number and b_number:\n
return a_number - b_number\n
elif a_number:\n
return -1\n
return -1\n
elif b
in high_priority_supply_line_list
:\n
elif b
_number
:\n
return 1\n
return 1\n
\n
\n
if "Sale" in a.getPortalType():\n
if "Sale" in a.getPortalType():\n
...
@@ -122,18 +134,6 @@ def getResourceSalePriceSortMethod(high_priority_supply_line_list):\n
...
@@ -122,18 +134,6 @@ def getResourceSalePriceSortMethod(high_priority_supply_line_list):\n
return resourceSalePriceSortMethod\n
return resourceSalePriceSortMethod\n
\n
\n
\n
\n
def getRelatedTradeConditionList(trade_condition):\n
"""Get all trade conditions related to an order.\n
trade_condition parameter can be a trade condition or an order/invoice\n
"""\n
related_trade_condition_list = trade_condition.getSpecialiseValueList(\n
portal_type=(\'Sale Trade Condition\', \'Purchase Trade Condition\'))\n
for related_trade_condition in trade_condition.getSpecialiseValueList(\n
portal_type=(\'Sale Trade Condition\', \'Purchase Trade Condition\')):\n
related_trade_condition_list.extend(\n
getRelatedTradeConditionList(related_trade_condition))\n
return related_trade_condition_list\n
\n
def getOptimisedPriceCalculationOperandDict(default=None, context=None, **kw):\n
def getOptimisedPriceCalculationOperandDict(default=None, context=None, **kw):\n
"""\n
"""\n
Price Method optimised by the preference \n
Price Method optimised by the preference \n
...
@@ -180,13 +180,9 @@ if explanation is not None:\n
...
@@ -180,13 +180,9 @@ if explanation is not None:\n
context.getPortalOrderTypeList() + context.getPortalDeliveryTypeList():\n
context.getPortalOrderTypeList() + context.getPortalDeliveryTypeList():\n
# if there are trade conditions containing supply lines related to that\n
# if there are trade conditions containing supply lines related to that\n
# order/invoice, we give high priority to those supply lines\n
# order/invoice, we give high priority to those supply lines\n
for trade_condition in getRelatedTradeConditionList(explanation):\n
for supply_line in explanation.asComposedDocument().objectValues(portal_type=context.getPortalSupplyPathTypeList()):\n
for supply_line in trade_condition.contentValues(\n
supply_cell_list = supply_line.objectValues(\n
portal_type=context.getPortalSupplyPathTypeList(),\n
portal_type=context.getPortalSupplyPathTypeList())\n
checked_permission=\'View\'):\n
supply_cell_list = supply_line.contentValues(\n
portal_type=context.getPortalSupplyPathTypeList(),\n
checked_permission=\'View\')\n
if supply_cell_list:\n
if supply_cell_list:\n
high_priority_supply_line_list.extend(list(supply_cell_list))\n
high_priority_supply_line_list.extend(list(supply_cell_list))\n
else:\n
else:\n
...
...
product/ERP5/bootstrap/erp5_core/bt/revision
View file @
fa0b9856
411
59
411
60
\ No newline at end of file
product/ERP5/tests/testTradeCondition.py
View file @
fa0b9856
...
@@ -268,6 +268,10 @@ class TestTradeConditionSupplyLine(TradeConditionTestCase):
...
@@ -268,6 +268,10 @@ class TestTradeConditionSupplyLine(TradeConditionTestCase):
def
test_movement_price_assignment
(
self
):
def
test_movement_price_assignment
(
self
):
# supply line from the trade condition apply to the movements in order
# supply line from the trade condition apply to the movements in order
# where this trade condition is used
# where this trade condition is used
#
# Order ---> TC (123)
#
# price should be 123
supply_line
=
self
.
trade_condition
.
newContent
(
supply_line
=
self
.
trade_condition
.
newContent
(
portal_type
=
self
.
supply_line_type
,
portal_type
=
self
.
supply_line_type
,
resource_value
=
self
.
resource
,
resource_value
=
self
.
resource
,
...
@@ -281,6 +285,79 @@ class TestTradeConditionSupplyLine(TradeConditionTestCase):
...
@@ -281,6 +285,79 @@ class TestTradeConditionSupplyLine(TradeConditionTestCase):
quantity
=
1
)
quantity
=
1
)
self
.
assertEqual
(
123
,
line
.
getPrice
())
self
.
assertEqual
(
123
,
line
.
getPrice
())
# supply line in the direct trade condition should have priority
# than its specialised trade condition
#
# Order ---> TC (125) ---> TC (123)
#
# price should be 125
trade_condition2
=
self
.
trade_condition_module
.
newContent
(
portal_type
=
self
.
trade_condition_type
,
specialise_value
=
self
.
trade_condition
)
trade_condition2
.
validate
()
trade_condition2
.
newContent
(
portal_type
=
self
.
supply_line_type
,
resource_value
=
self
.
resource
,
base_price
=
125
)
self
.
order
.
setSpecialiseValue
(
trade_condition2
)
self
.
tic
()
line
.
setPrice
(
None
)
self
.
assertEqual
(
125
,
line
.
getPrice
())
# supply line in the first direct trade condition should have
# priority than the second trade condition
#
# Order -+-> TC (127)
# +-> TC (125) ---> TC (123)
#
# price should be 127
#
# Order -+-> TC (125) ---> TC (123)
# +-> TC (127)
#
# price should be 125
trade_condition3
=
self
.
trade_condition_module
.
newContent
(
portal_type
=
self
.
trade_condition_type
)
trade_condition3
.
validate
()
trade_condition3
.
newContent
(
portal_type
=
self
.
supply_line_type
,
resource_value
=
self
.
resource
,
base_price
=
127
)
self
.
order
.
setSpecialiseValueList
((
trade_condition3
,
trade_condition2
))
self
.
tic
()
line
.
setPrice
(
None
)
self
.
assertEqual
(
127
,
line
.
getPrice
())
self
.
order
.
setSpecialiseValueList
((
trade_condition2
,
trade_condition3
))
self
.
tic
()
line
.
setPrice
(
None
)
self
.
assertEqual
(
125
,
line
.
getPrice
())
# supply line in the second direct trade condition should have
# priority than the first trade condition's specialised trade
# condition
#
# Order -+-> TC (---) ---> TC (123)
# +-> TC (127)
#
# price should be 127
#
# Order -+-> TC (127)
# +-> TC (---) ---> TC (123)
#
# price should be 127
trade_condition4
=
self
.
trade_condition_module
.
newContent
(
portal_type
=
self
.
trade_condition_type
,
specialise_value
=
self
.
trade_condition
)
trade_condition4
.
validate
()
self
.
order
.
setSpecialiseValueList
((
trade_condition4
,
trade_condition3
))
self
.
tic
()
line
.
setPrice
(
None
)
self
.
assertEqual
(
127
,
line
.
getPrice
())
self
.
order
.
setSpecialiseValueList
((
trade_condition3
,
trade_condition4
))
self
.
tic
()
line
.
setPrice
(
None
)
self
.
assertEqual
(
127
,
line
.
getPrice
())
def
test_supply_line_priority
(
self
):
def
test_supply_line_priority
(
self
):
# supply lines from related trade condition should have priority over
# supply lines from related trade condition should have priority over
# supply lines from supply modules
# supply lines from supply modules
...
...
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