This commit is contained in:
van
2026-03-24 16:28:37 +08:00
parent 066ab35a17
commit 3d5ee6e624

View File

@@ -199,10 +199,6 @@ public class JDOrderListController extends BaseController
return getDataTable(list);
}
/**
* 重新下载已上传的后返表原件(与通用 download 一致,使用 POST + blob
*/
@Log(title = "后返表上传记录下载", businessType = BusinessType.EXPORT)
/**
* 删除一条后返表上传记录,并撤销写入订单的后返备注(依赖 uploadRecordId / affectedOrderIds历史导入可能仅删记录
*/
@@ -212,6 +208,10 @@ public class JDOrderListController extends BaseController
return AjaxResult.success(groupRebateExcelImportService.deleteUploadRecord(id));
}
/**
* 重新下载已上传的后返表原件(与通用 download 一致,使用 POST + blob
*/
@Log(title = "后返表上传记录下载", businessType = BusinessType.EXPORT)
@PostMapping("/groupRebateUpload/download/{id}")
public void downloadGroupRebateUpload(@PathVariable("id") Long id, HttpServletResponse response) throws Exception {
GroupRebateExcelUpload rec = groupRebateExcelUploadService.selectGroupRebateExcelUploadById(id);