| | |
| | | return Json(default); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 导出退款订单Excel |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | | public async Task<ActionResult> GetLifePayRefudOrderPageExport(QueryLifePayRefundOrderListInput input) |
| | | { |
| | | var data = await _lifePayService.GetLifePayRefudOrderPageExport(input); |
| | | if (data.Any()) |
| | | { |
| | | var bytes = ExcelHelper.ListToByteForExcel(data, "xlsx"); |
| | | return File(bytes, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "退款管理" + ".xlsx"); |
| | | } |
| | | return Json(default); |
| | | } |
| | | |
| | | |
| | | [HttpGet] |
| | | public async Task<string> GetBillErceiptExport(string orderNo) |
| | | { |