Commit 11d4ce72 authored by 王晓明's avatar 王晓明

税金表分析问题

parent 2b04c438
...@@ -62,6 +62,8 @@ public class AnalysisJob extends QuartzJobBean { ...@@ -62,6 +62,8 @@ public class AnalysisJob extends QuartzJobBean {
logger.info(String.format("开始分析%s税种税金计算数据",period)); logger.info(String.format("开始分析%s税种税金计算数据",period));
analysisJobService.analysisTax(orgs,period, EnumTbImportType.CoverImport.getCode()); analysisJobService.analysisTax(orgs,period, EnumTbImportType.CoverImport.getCode());
logger.info(String.format("开始分析%税金计算表数据",period));
analysisJobService.analysisTaxCalculation(orgs,period,EnumTbImportType.CoverImport.getCode());
} }
} }
...@@ -1206,7 +1206,7 @@ public class AnalysisServiceImpl extends BaseService { ...@@ -1206,7 +1206,7 @@ public class AnalysisServiceImpl extends BaseService {
//e.createCriteria().andIsActiveEqualTo(true); //e.createCriteria().andIsActiveEqualTo(true);
List<Organization> orgs = organizationMapper.selectByExample(e); List<Organization> orgs = organizationMapper.selectByExample(e);
logger.info(String.format("开始分析%s机构数据", period)); /* logger.info(String.format("开始分析%s机构数据", period));
analysisJobService.analysisMaster(orgs, period, EnumTbImportType.CoverImport.getCode()); analysisJobService.analysisMaster(orgs, period, EnumTbImportType.CoverImport.getCode());
logger.info(String.format("开始分析%s预期返还税数据", period)); logger.info(String.format("开始分析%s预期返还税数据", period));
...@@ -1226,6 +1226,11 @@ public class AnalysisServiceImpl extends BaseService { ...@@ -1226,6 +1226,11 @@ public class AnalysisServiceImpl extends BaseService {
logger.info(String.format("开始分析%s税种税金计算数据", period)); logger.info(String.format("开始分析%s税种税金计算数据", period));
analysisJobService.analysisTax(orgs, period, EnumTbImportType.CoverImport.getCode()); analysisJobService.analysisTax(orgs, period, EnumTbImportType.CoverImport.getCode());
*/
logger.info(String.format("开始分析%税金计算表数据",period));
analysisJobService.analysisTaxCalculation(orgs,period,EnumTbImportType.CoverImport.getCode());
} catch (Exception ex) { } catch (Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
operationResultDto.setResult(false); operationResultDto.setResult(false);
......
...@@ -1484,6 +1484,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -1484,6 +1484,7 @@ public class ReportServiceImpl extends BaseService {
return resultDto; return resultDto;
} }
//公司和年份生成的project
Project project = projectMapper.selectByPrimaryKey(report.getProjectId()); Project project = projectMapper.selectByPrimaryKey(report.getProjectId());
if (project == null) { if (project == null) {
resultDto.setResult(false); resultDto.setResult(false);
......
package pwc.taxtech.atms.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import pwc.taxtech.atms.MyMapper;
import pwc.taxtech.atms.entity.AnalysisTaxMainBusiness;
import pwc.taxtech.atms.entity.AnalysisTaxMainBusinessExample;
@Mapper
public interface AnalysisTaxMainBusinessMapper extends MyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
long countByExample(AnalysisTaxMainBusinessExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int deleteByExample(AnalysisTaxMainBusinessExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int insert(AnalysisTaxMainBusiness record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int insertSelective(AnalysisTaxMainBusiness record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
List<AnalysisTaxMainBusiness> selectByExample(AnalysisTaxMainBusinessExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
AnalysisTaxMainBusiness selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") AnalysisTaxMainBusiness record, @Param("example") AnalysisTaxMainBusinessExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int updateByExample(@Param("record") AnalysisTaxMainBusiness record, @Param("example") AnalysisTaxMainBusinessExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(AnalysisTaxMainBusiness record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business
*
* @mbg.generated
*/
int updateByPrimaryKey(AnalysisTaxMainBusiness record);
}
\ No newline at end of file
package pwc.taxtech.atms.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import pwc.taxtech.atms.MyMapper;
import pwc.taxtech.atms.entity.AnalysisTaxMainBusinessSort;
import pwc.taxtech.atms.entity.AnalysisTaxMainBusinessSortExample;
@Mapper
public interface AnalysisTaxMainBusinessSortMapper extends MyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
long countByExample(AnalysisTaxMainBusinessSortExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int deleteByExample(AnalysisTaxMainBusinessSortExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int insert(AnalysisTaxMainBusinessSort record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int insertSelective(AnalysisTaxMainBusinessSort record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
List<AnalysisTaxMainBusinessSort> selectByExample(AnalysisTaxMainBusinessSortExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
AnalysisTaxMainBusinessSort selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") AnalysisTaxMainBusinessSort record, @Param("example") AnalysisTaxMainBusinessSortExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int updateByExample(@Param("record") AnalysisTaxMainBusinessSort record, @Param("example") AnalysisTaxMainBusinessSortExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(AnalysisTaxMainBusinessSort record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table analysis_tax_main_business_sort
*
* @mbg.generated
*/
int updateByPrimaryKey(AnalysisTaxMainBusinessSort record);
}
\ No newline at end of file
package pwc.taxtech.atms.dpo;
/**
* @Auther: sam
* @Date: 30/05/2019 16:28
* @Description:
*/
public class AnalysisBusinessValueDto {
private String data;
private String rowName;
private Integer rowIndex;
private Integer columnIndex;
public String getRowName() {
return rowName;
}
public void setRowName(String rowName) {
this.rowName = rowName;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public Integer getRowIndex() {
return rowIndex;
}
public void setRowIndex(Integer rowIndex) {
this.rowIndex = rowIndex;
}
public Integer getColumnIndex() {
return columnIndex;
}
public void setColumnIndex(Integer columnIndex) {
this.columnIndex = columnIndex;
}
}
...@@ -4,6 +4,7 @@ import org.apache.ibatis.annotations.Mapper; ...@@ -4,6 +4,7 @@ import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds; import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.dpo.AnalysisBusinessValueDto;
import pwc.taxtech.atms.dpo.AnalysisSalesValueDto; import pwc.taxtech.atms.dpo.AnalysisSalesValueDto;
import pwc.taxtech.atms.vat.entity.PeriodCellData; import pwc.taxtech.atms.vat.entity.PeriodCellData;
import pwc.taxtech.atms.vat.entity.PeriodCellDataExample; import pwc.taxtech.atms.vat.entity.PeriodCellDataExample;
...@@ -117,4 +118,9 @@ public interface PeriodCellDataMapper extends MyVatMapper { ...@@ -117,4 +118,9 @@ public interface PeriodCellDataMapper extends MyVatMapper {
List<AnalysisSalesValueDto> selectReportData(@Param("reportId") Long reportId, List<AnalysisSalesValueDto> selectReportData(@Param("reportId") Long reportId,
@Param("projectId") String projectId, @Param("projectId") String projectId,
@Param("period") Integer period); @Param("period") Integer period);
List<AnalysisBusinessValueDto>selectReportDataByRowname(@Param("rowName") String rowName,
@Param("projectId") String projectId,
@Param("period") Integer period);
} }
\ No newline at end of file
...@@ -139,4 +139,15 @@ ...@@ -139,4 +139,15 @@
and cell_template.period = #{period} and cell_template.period = #{period}
and cell_template.report_template_id = #{reportId} and cell_template.report_template_id = #{reportId}
</select> </select>
<select id= "selectReportDataByRowname" resultType="pwc.taxtech.atms.dpo.AnalysisBusinessValueDto">
select t.row_name rowName,d.`data` data,t.column_index columnIndex,t.row_index rowIndex from
period_cell_data d ,
period_cell_template t
where d.cell_template_id=t.cell_template_id
and t.project_id=#{projectId,jdbcType=VARCHAR}
and t.period =#{period,jdbcType=INTEGER}
and t.row_name like concat ("%",#{rowName,jdbcType=VARCHAR},"%")
</select>
</mapper> </mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment