Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
0f61b1e6
Commit
0f61b1e6
authored
Aug 29, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
单询异常处理时补充操作数据日志
Signed-off-by:
zhengyi
<
landuo321@aliyun.com
>
parent
2655da92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
7 deletions
+18
-7
OrderExceptionServiceImpl.java
...der/service/orderException/OrderExceptionServiceImpl.java
+18
-7
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/orderException/OrderExceptionServiceImpl.java
View file @
0f61b1e6
...
...
@@ -1033,7 +1033,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
throw
exception
(
FREIGHT_UNIT_NOT_NULL
);
}
orderItemDO
.
setSeaFreightVolume
(
channelPrice
.
getFreightUnitId
());
if
(
channelPrice
.
getCharging
()
==
0
){
if
(
channelPrice
.
getCharging
()
==
0
)
{
if
(
Objects
.
isNull
(
channelPrice
.
getClearanceCurrencyId
()))
{
throw
exception
(
CLEARANCE_CURRENCY_NOT_NULL
);
}
...
...
@@ -1043,7 +1043,7 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
}
orderItemDO
.
setClearanceFreightVolume
(
channelPrice
.
getClearanceUnitId
());
}
}
else
{
}
else
{
// TODO 如果原订单商品价格非未报价,则不采用前端传值的货币单位、计量单位、收费方式、是否预付等参数,以原有参数为准
channelPrice
.
setCharging
(
orderItemDO
.
getCharging
());
channelPrice
.
setIsPayAdvance
(
Objects
.
nonNull
(
orderItemDO
.
getIsPayAdvance
())
&&
orderItemDO
.
getIsPayAdvance
()
==
1
);
...
...
@@ -1073,14 +1073,23 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
priceParam
.
setFreightCurrencyId
(
orderItemDO
.
getSeaFreightCurrency
());
priceParam
.
setClearanceCurrencyId
(
orderItemDO
.
getClearanceFreightCurrency
());
inquiryPriceParams
.
add
(
priceParam
);
if
(
orderItemDO
.
getOneSeaFreight
().
compareTo
(
BigDecimal
.
ZERO
)
==
0
)
{
ApplyInfoVO
applyInfo
=
new
ApplyInfoVO
();
applyInfo
.
setName
(
orderItemDO
.
getProdTitleZh
()
+
"计费方式"
);
applyInfo
.
setNewValue
(
channelPrice
.
getCharging
()
==
1
?
"全包价"
:
"运费+清关费"
);
applyInfoVOList
.
add
(
applyInfo
);
applyInfo
=
new
ApplyInfoVO
();
applyInfo
.
setName
(
orderItemDO
.
getProdTitleZh
()
+
"是否预付"
);
applyInfo
.
setNewValue
(
channelPrice
.
getIsPayAdvance
()
?
"是"
:
"否"
);
applyInfoVOList
.
add
(
applyInfo
);
}
ApplyInfoVO
applyInfoVO
=
new
ApplyInfoVO
();
applyInfoVO
.
setName
(
orderItemDO
.
getProdTitleZh
()
+
(
channelPrice
.
getCharging
()
==
1
?
"全包价"
:
"运费"
));
String
freightCurrency
=
(
null
==
allCurrency
.
get
(
orderItemDO
.
getSeaFreightCurrency
())
?
""
:
allCurrency
.
get
(
orderItemDO
.
getSeaFreightCurrency
()).
getFuhao
());
String
freightUnit
=
(
null
==
allUnit
.
get
(
orderItemDO
.
getSeaFreightVolume
().
intValue
())
?
""
:
allUnit
.
get
(
orderItemDO
.
getSeaFreightVolume
().
intValue
()).
getFuhao
());
applyInfoVO
.
setOrgValue
(
orderItemDO
.
getOneSeaFreight
()
+
freightCurrency
+
"/"
+
freightUnit
);
if
(
orderItemDO
.
getOneSeaFreight
().
compareTo
(
BigDecimal
.
ZERO
)
>
0
)
{
applyInfoVO
.
setOrgValue
(
orderItemDO
.
getOneSeaFreight
()
+
freightCurrency
+
"/"
+
freightUnit
);
}
applyInfoVO
.
setNewValue
(
channelPrice
.
getFreightFee
()
+
freightCurrency
+
"/"
+
freightUnit
);
applyInfoVOList
.
add
(
applyInfoVO
);
...
...
@@ -1089,7 +1098,9 @@ public class OrderExceptionServiceImpl extends AbstractService<OrderExceptionMap
applyInfoVO
.
setName
(
orderItemDO
.
getProdTitleZh
()
+
"清关费"
);
String
clearanceCurrency
=
(
null
==
allCurrency
.
get
(
orderItemDO
.
getClearanceFreightCurrency
())
?
""
:
allCurrency
.
get
(
orderItemDO
.
getClearanceFreightCurrency
()).
getFuhao
());
String
clearanceUnit
=
(
null
==
allUnit
.
get
(
orderItemDO
.
getClearanceFreightVolume
().
intValue
())
?
""
:
allUnit
.
get
(
orderItemDO
.
getClearanceFreightVolume
().
intValue
()).
getFuhao
());
applyInfoVO
.
setOrgValue
(
orderItemDO
.
getOneClearanceFreight
()
+
clearanceCurrency
+
"/"
+
clearanceUnit
);
if
(
orderItemDO
.
getOneClearanceFreight
().
compareTo
(
BigDecimal
.
ZERO
)
>
0
)
{
applyInfoVO
.
setOrgValue
(
orderItemDO
.
getOneClearanceFreight
()
+
clearanceCurrency
+
"/"
+
clearanceUnit
);
}
applyInfoVO
.
setNewValue
((
null
==
channelPrice
.
getClearanceFee
()
?
""
:
channelPrice
.
getClearanceFee
())
+
clearanceCurrency
+
"/"
+
clearanceUnit
);
applyInfoVOList
.
add
(
applyInfoVO
);
}
...
...
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