Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
haoban3.0
haoban-manage3.0
Commits
f770dd62
Commit
f770dd62
authored
Mar 08, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
售后
parent
f8f614d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
GicOrderController.java
...aoban/manage/web/controller/order/GicOrderController.java
+1
-1
GicOrderRefundController.java
...manage/web/controller/order/GicOrderRefundController.java
+7
-3
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/order/GicOrderController.java
View file @
f770dd62
...
...
@@ -295,7 +295,7 @@ public class GicOrderController {
// 我的客户-会员订单列表
// deliveryChannel 0全部 1快递 2自提
// 1待付款 2待发货 7部分发货
4 已完成0 已取消 5售后中
// 1待付款 2待发货 7部分发货
4已完成 0已取消 5售后中
@RequestMapping
(
"list-member-order"
)
public
RestResponse
<
Object
>
orderList
(
String
enterpriseId
,
String
memberId
,
String
search
,
@RequestParam
(
defaultValue
=
"-1"
)
int
status
,
@RequestParam
(
defaultValue
=
"0"
)
int
deliveryChannel
,
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/order/GicOrderRefundController.java
View file @
f770dd62
...
...
@@ -28,6 +28,7 @@ import com.gic.business.order.qdto.aftersales.ExchangeSellerAgreeApplyQDTO;
import
com.gic.business.order.qdto.aftersales.RefundBaseQDTO
;
import
com.gic.business.order.qdto.aftersales.RefundRefusedQDTO
;
import
com.gic.business.order.qdto.aftersales.RefundSellerAgreeQDTO
;
import
com.gic.business.order.qdto.aftersales.RefundSellerConfirmGoodsQDTO
;
import
com.gic.business.order.qdto.ordermanage.RefundExchangeQDTO
;
import
com.gic.business.order.service.ordermanage.MallSellerAddressApiService
;
import
com.gic.business.order.service.ordermanage.OrderRefundApiService
;
...
...
@@ -86,7 +87,7 @@ public class GicOrderRefundController {
public
RestResponse
<
Object
>
exchangeDetail
(
String
orderExchangeId
)
{
ServiceResponse
<
OrderExchangeDetailDTO
>
resp
=
this
.
orderRefundApiService
.
exchangeDetail
(
orderExchangeId
);
OrderExchangeDetailVO
vo
=
EntityUtil
.
changeEntityNew
(
OrderExchangeDetailVO
.
class
,
resp
.
getResult
());
String
targetProSkuId
=
resp
.
getResult
().
getTargetProSkuId
()
;
String
targetProSkuId
=
resp
.
getResult
().
getTargetProSkuId
();
// 查询库存
vo
.
setTargetProStock
(
1
);
return
RestResponse
.
successResult
(
vo
);
...
...
@@ -113,12 +114,15 @@ public class GicOrderRefundController {
}
// 同意
if
(
auditStatus
==
2
)
{
RefundSellerAgreeQDTO
qdto
=
EntityUtil
.
changeEntityNew
(
RefundSellerAgreeQDTO
.
class
,
baseQDTO
);
qdto
.
setApplyRefundPrice
(
applyRefundPrice
);
if
(
step
==
1
)
{
RefundSellerAgreeQDTO
qdto
=
EntityUtil
.
changeEntityNew
(
RefundSellerAgreeQDTO
.
class
,
baseQDTO
);
qdto
.
setApplyRefundPrice
(
applyRefundPrice
);
this
.
afterSalesManageApiService
.
refundSellerConfirmApply
(
enterpriseId
,
memberId
,
qdto
);
}
if
(
step
==
2
)
{
RefundSellerConfirmGoodsQDTO
qdto
=
EntityUtil
.
changeEntityNew
(
RefundSellerConfirmGoodsQDTO
.
class
,
baseQDTO
);
qdto
.
setApplyRefundPrice
(
applyRefundPrice
);
this
.
afterSalesManageApiService
.
refundSellerConfirmGoods
(
enterpriseId
,
memberId
,
qdto
);
}
}
...
...
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