|
@@ -3332,7 +3332,7 @@ namespace Hotline.Api.Controllers.Bi
|
|
|
/// </summary>
|
|
|
/// <param name="dto"></param>
|
|
|
/// <returns></returns>
|
|
|
- [HttpGet("order_source_report")]
|
|
|
+ [HttpGet("order_source_detail_report")]
|
|
|
public async Task<PagedDto<OrderDto>> QueryOrderSourceDetailReport([FromQuery] QueryOrderSourceDetailRequest dto)
|
|
|
{
|
|
|
var (total, items) = await _orderApplication.QueryOrderSourceDetail(dto).ToPagedListAsync(dto, HttpContext.RequestAborted);
|
|
@@ -3342,7 +3342,7 @@ namespace Hotline.Api.Controllers.Bi
|
|
|
/// 信件来源统计明细导出
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- [HttpPost("order_source/_export")]
|
|
|
+ [HttpPost("order_source_detail/_export")]
|
|
|
public async Task<FileStreamResult> QueryOrderSourceDetailReport([FromBody] ExportExcelDto<QueryOrderSourceDetailRequest> dto)
|
|
|
{
|
|
|
var query = _orderApplication.QueryOrderSourceDetail(dto.QueryDto);
|