Commit d1dbfa97 by 徐高华

售后地址

parent 27cfd444
......@@ -161,7 +161,8 @@ public class GicOrderRefundController {
@ResponseBody
public RestResponse<Object> auditRefund(String enterpriseId, String memberId,
@RequestParam(defaultValue = "1") int auditStatus, String clerkId, String remark,
@RequestParam(defaultValue = "1") int step, RefundBaseQDTO baseQDTO, @RequestParam(defaultValue="0") Double applyRefundPrice) {
@RequestParam(defaultValue = "1") int step, RefundBaseQDTO baseQDTO, ExchangeAddressQDTO address,
@RequestParam(defaultValue = "0") Double applyRefundPrice) {
ServiceResponse<Void> resp = null;
// 拒绝
if (auditStatus == 1) {
......@@ -179,6 +180,7 @@ public class GicOrderRefundController {
if (step == 1) {
RefundSellerAgreeQDTO qdto = EntityUtil.changeEntityByJSON(RefundSellerAgreeQDTO.class, baseQDTO);
qdto.setApplyRefundPrice(applyRefundPrice);
qdto.setExchangeAddress(address);
resp = this.afterSalesManageApiService.refundSellerConfirmApply(enterpriseId, memberId, qdto);
}
if (step == 2) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment