申报表导出bug
This commit is contained in:
parent
0c8c3b0c04
commit
54e64f58cb
|
|
@ -3,12 +3,13 @@ package com.engine.salary.service;
|
|||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
|
||||
/**
|
||||
* @description: 个税申报表导出
|
||||
* @author: xiajun
|
||||
* @modified By: xiajun
|
||||
* @date: Created in 1/4/22 4:09 PM
|
||||
* @version:v1.0
|
||||
*/
|
||||
* 个税申报表导出
|
||||
* <p>Copyright: Copyright (c) 2022</p>
|
||||
* <p>Company: 泛微软件</p>
|
||||
*
|
||||
* @author qiantao
|
||||
* @version 1.0
|
||||
**/
|
||||
public interface TaxDeclarationExcelService {
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ public class TaxDeclarationExcelServiceImpl extends Service implements TaxDeclar
|
|||
for (int i = 0; i < totalPages; i++) {
|
||||
TaxDeclarationDetailListQueryParam queryParam = new TaxDeclarationDetailListQueryParam();
|
||||
queryParam.setTaxDeclarationId(taxDeclarationId);
|
||||
queryParam.setCurrent(i);
|
||||
queryParam.setCurrent(i+1);
|
||||
queryParam.setPageSize(1000);
|
||||
PageInfo<TaxDeclarationWageListDTO> dtoPage = getTaxDeclarationDetailService(user).listDtoPageByParam4Wage(queryParam);
|
||||
List<TaxDeclarationWageListDTO> list = dtoPage.getList();
|
||||
|
|
|
|||
Loading…
Reference in New Issue