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
2d42091a
Commit
2d42091a
authored
May 26, 2024
by
lanbaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-05-23-4提交
parent
ad6c5a96
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
CustomerServiceImpl.java
...module/customer/service/customer/CustomerServiceImpl.java
+0
-1
CustomerController.java
...ustomer/controller/admin/customer/CustomerController.java
+6
-4
CalculateOrderVValueListener.java
...odule/delivery/listener/CalculateOrderVValueListener.java
+2
-2
No files found.
yudao-module-customer/yudao-module-customer-core/src/main/java/cn/iocoder/yudao/module/customer/service/customer/CustomerServiceImpl.java
View file @
2d42091a
...
...
@@ -1326,7 +1326,6 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper, Custome
@Override
public
PageResult
<
CustomerDO
>
getWaitToConfirmCustomerPage
(
CustomerPageReqVO
pageReqVO
)
{
IPage
<
CustomerDO
>
mpPage
=
MyBatisUtils
.
buildPage
(
pageReqVO
);
LambdaQueryWrapper
<
CustomerDO
>
customerDOLambdaQueryWrapperX
=
new
LambdaQueryWrapperX
<
CustomerDO
>()
...
...
yudao-module-customer/yudao-module-customer-rest/src/main/java/cn/iocoder/yudao/module/customer/controller/admin/customer/CustomerController.java
View file @
2d42091a
...
...
@@ -362,10 +362,11 @@ public class CustomerController {
@ApiOperation
(
"获得待接收列表"
)
// @PreAuthorize("@ss.hasPermission('ecw:customer:query')")
public
CommonResult
<
PageResult
<
CustomerRespVO
>>
getWaitConfirmList
(
@Valid
CustomerPageReqVO
customerPageReqVO
)
{
//lanbm 2024-05-26 添加注释
customerPageReqVO
.
setCustomerService
(
WebFrameworkUtils
.
getLoginUserId
());
PageResult
<
CustomerDO
>
pageResult
=
customerService
.
getWaitToConfirmCustomerPage
(
customerPageReqVO
);
PageResult
<
CustomerDO
>
pageResult
=
customerService
.
getWaitToConfirmCustomerPage
(
customerPageReqVO
);
return
success
(
CustomerConvert
.
INSTANCE
.
convertPage
(
pageResult
));
}
...
...
@@ -395,8 +396,9 @@ public class CustomerController {
@ApiOperation
(
"获得待分配客户列表"
)
// @PreAuthorize("@ss.hasPermission('ecw:customer:query')")
public
CommonResult
<
PageResult
<
CustomerRespVO
>>
getWaitForDistributionList
(
@Valid
CustomerPageReqVO
customerPageReqVO
)
{
PageResult
<
CustomerDO
>
pageResult
=
customerService
.
getWaitToAssignedCustomerPage
(
customerPageReqVO
);
//lanbm 2024-05-26 添加注释
PageResult
<
CustomerDO
>
pageResult
=
customerService
.
getWaitToAssignedCustomerPage
(
customerPageReqVO
);
return
success
(
CustomerConvert
.
INSTANCE
.
convertPage
(
pageResult
));
}
...
...
yudao-module-delivery/yudao-module-delivery-rest/src/main/java/cn/iocoder/yudao/module/delivery/listener/CalculateOrderVValueListener.java
View file @
2d42091a
...
...
@@ -58,7 +58,7 @@ public class CalculateOrderVValueListener {
if
(
orderDO
.
getTransportId
()
==
1
)
{
//海运计算V值
temp
=
ecwVzService
.
getOne
(
new
LambdaQueryWrapperX
<
EcwVz
>()
.
eqIfPresent
(
EcwVz:
:
get
TitleZh
,
"M3"
));
.
eqIfPresent
(
EcwVz:
:
get
Fuhao
,
"M3"
));
if
(
temp
==
null
)
{
throw
exception
(
VCONFIG_NOT_EXISTS
);
}
...
...
@@ -66,7 +66,7 @@ public class CalculateOrderVValueListener {
}
else
if
(
orderDO
.
getTransportId
()
==
3
)
{
//空运计算V值
temp
=
ecwVzService
.
getOne
(
new
LambdaQueryWrapperX
<
EcwVz
>()
.
eqIfPresent
(
EcwVz:
:
get
TitleZh
,
"KG"
));
.
eqIfPresent
(
EcwVz:
:
get
Fuhao
,
"KG"
));
if
(
temp
==
null
)
{
throw
exception
(
VCONFIG_NOT_EXISTS
);
}
...
...
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