|
@@ -5,20 +5,22 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.jzg.commons.core.base.BaseController;
|
|
import com.jzg.commons.core.base.BaseController;
|
|
|
import com.jzg.commons.core.page.HttpResult;
|
|
import com.jzg.commons.core.page.HttpResult;
|
|
|
|
|
+import com.jzg.commons.entity.orders.vo.FeeAuditVo;
|
|
|
import com.jzg.commons.entity.report.dto.FeeAuditSummaryVo;
|
|
import com.jzg.commons.entity.report.dto.FeeAuditSummaryVo;
|
|
|
import com.jzg.commons.entity.report.vo.FeeAuditDetailParam;
|
|
import com.jzg.commons.entity.report.vo.FeeAuditDetailParam;
|
|
|
import com.jzg.commons.entity.report.vo.FeeAuditSummaryParam;
|
|
import com.jzg.commons.entity.report.vo.FeeAuditSummaryParam;
|
|
|
import com.jzg.commons.entity.report.vo.PayableStatisticsDetailParam;
|
|
import com.jzg.commons.entity.report.vo.PayableStatisticsDetailParam;
|
|
|
import com.jzg.commons.entity.report.vo.ReportSearchCommonVo;
|
|
import com.jzg.commons.entity.report.vo.ReportSearchCommonVo;
|
|
|
-import com.jzg.commons.entity.orders.vo.FeeAuditVo;
|
|
|
|
|
import com.jzg.console.service.*;
|
|
import com.jzg.console.service.*;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
-import java.io.IOException;
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -502,5 +504,26 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
return HttpResult.error(e.getMessage());
|
|
return HttpResult.error(e.getMessage());
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 财务数据-应付统计:按月份汇总查询应付数据导出
|
|
|
|
|
+ * @author: jk
|
|
|
|
|
+ */
|
|
|
|
|
+ @Operation(summary = "财务数据-应付统计导出Excel", description = "财务数据-应付统计导出Excel")
|
|
|
|
|
+ @PostMapping(value = "/exportPayableStatistics")
|
|
|
|
|
+ public void exportPayableStatistics(@RequestBody ReportSearchCommonVo reportSearchCommonVo) {
|
|
|
|
|
+ String systemCode = getSystemCode();
|
|
|
|
|
+ reportMeetDataService.exportPayableStatistics(reportSearchCommonVo, systemCode);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 财务数据-应付统计明细:查询指定年月的提现明细列表导出
|
|
|
|
|
+ * @author: jk
|
|
|
|
|
+ */
|
|
|
|
|
+ @Operation(summary = "财务数据-应付统计明细导出Excel", description = "财务数据-应付统计明细导出Excel")
|
|
|
|
|
+ @PostMapping(value = "/exportPayableStatisticsDetail")
|
|
|
|
|
+ public void exportPayableStatisticsDetail(@RequestBody PayableStatisticsDetailParam param) {
|
|
|
|
|
+ String systemCode = getSystemCode();
|
|
|
|
|
+ reportMeetDataService.exportPayableStatisticsDetail(param, systemCode);
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
}
|
|
}
|