|
@@ -18,6 +18,7 @@ import org.springframework.util.StringUtils;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 线下收款接口
|
|
* 线下收款接口
|
|
@@ -173,6 +174,16 @@ public class ReceiptApi {
|
|
return receiptService.getReceiptDetail(id, headers);
|
|
return receiptService.getReceiptDetail(id, headers);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 收款详情的款项类型
|
|
|
|
+ */
|
|
|
|
+ @ApiOperation("收款详情的款项类型")
|
|
|
|
+ @ApiImplicitParam(required = true, name = "id", value = "款项Id")
|
|
|
|
+ @GetMapping("/detail/type")
|
|
|
|
+ public ResponseJson<Map<String, Integer>> getReceiptDetailType(Integer id, @RequestHeader HttpHeaders headers) {
|
|
|
|
+ return receiptService.getReceiptDetailType(id, headers);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 收款详情(供应商退款)
|
|
* 收款详情(供应商退款)
|
|
* crm:/api/user/shop/shopRefund
|
|
* crm:/api/user/shop/shopRefund
|