Commit 2f69a0c6 authored by zhkwei's avatar zhkwei

Merge remote-tracking branch 'origin/dev_mysql' into dev_mysql

parents 14fafc39 9536f537
...@@ -53,7 +53,9 @@ public class TaxDocumentDto { ...@@ -53,7 +53,9 @@ public class TaxDocumentDto {
private String physicalIndexNumber;//实物索引号 private String physicalIndexNumber;//实物索引号
private Integer ownTime;//所属期间 private Integer ownBeginTime;//所属期间
private Integer ownEndTime;//所属期间
private Integer auditStatus;//审核状态 private Integer auditStatus;//审核状态
...@@ -215,12 +217,20 @@ public class TaxDocumentDto { ...@@ -215,12 +217,20 @@ public class TaxDocumentDto {
this.companyId = companyId; this.companyId = companyId;
} }
public Integer getOwnTime() { public Integer getOwnBeginTime() {
return ownTime; return ownBeginTime;
}
public void setOwnBeginTime(Integer ownBeginTime) {
this.ownBeginTime = ownBeginTime;
}
public Integer getOwnEndTime() {
return ownEndTime;
} }
public void setOwnTime(Integer ownTime) { public void setOwnEndTime(Integer ownEndTime) {
this.ownTime = ownTime; this.ownEndTime = ownEndTime;
} }
public String getCompanyName() { public String getCompanyName() {
......
...@@ -105,9 +105,13 @@ public class TaxDocumentServiceImpl { ...@@ -105,9 +105,13 @@ public class TaxDocumentServiceImpl {
if (null != taxDocumentDto.getFileEndTTime()) { if (null != taxDocumentDto.getFileEndTTime()) {
criteria.andFileTimeLessThanOrEqualTo(taxDocumentDto.getFileEndTTime()); criteria.andFileTimeLessThanOrEqualTo(taxDocumentDto.getFileEndTTime());
} }
//所属时间 ownTime //所属開始时间 ownBeginTime
if (null != taxDocumentDto.getOwnTime()) { if (null != taxDocumentDto.getOwnBeginTime()) {
criteria.andOwnTimeEqualTo(taxDocumentDto.getOwnTime()); criteria.andOwnTimeGreaterThanOrEqualTo(taxDocumentDto.getOwnBeginTime());
}
//所属結束时间 ownEndTime
if (null != taxDocumentDto.getOwnEndTime()) {
criteria.andOwnTimeLessThanOrEqualTo(taxDocumentDto.getOwnEndTime());
} }
//档案名称 fileName //档案名称 fileName
if (StringUtils.isNotBlank(taxDocumentDto.getFileName())) { if (StringUtils.isNotBlank(taxDocumentDto.getFileName())) {
...@@ -200,6 +204,7 @@ public class TaxDocumentServiceImpl { ...@@ -200,6 +204,7 @@ public class TaxDocumentServiceImpl {
taxDocument.setCreator(authUserHelper.getCurrentAuditor().get()); taxDocument.setCreator(authUserHelper.getCurrentAuditor().get());
taxDocument.setCreatorId(authUserHelper.getCurrentUserId()); taxDocument.setCreatorId(authUserHelper.getCurrentUserId());
taxDocument.setUploadTime(new Date()); taxDocument.setUploadTime(new Date());
taxDocument.setAuditStatus(0);
taxDocument.setYearRedundancy(Calendar.getInstance().get(Calendar.YEAR)); taxDocument.setYearRedundancy(Calendar.getInstance().get(Calendar.YEAR));
//根据公司Id 设置业务线 //根据公司Id 设置业务线
String businessLine = organizationService.queryBusinessByCompanyId(taxDocument.getCompanyId()); String businessLine = organizationService.queryBusinessByCompanyId(taxDocument.getCompanyId());
......
...@@ -305,7 +305,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -305,7 +305,7 @@ public class ReportServiceImpl extends BaseService {
private void updateConfig(String projectId, Integer period, Boolean isMergeManualData, List<Template> templates, PeriodJob job) { private void updateConfig(String projectId, Integer period, Boolean isMergeManualData, List<Template> templates, PeriodJob job) {
List<Long> exceptTemplateIds = templateMapper.getIdsForExceptTemplate(); List<Long> exceptTemplateIds = templateMapper.getIdsForExceptTemplate();
//根据收入类型映射生成开票记录关联数据 //根据收入类型映射生成开票记录关联数据
assembleInvoiceRecord(projectId, period,isMergeManualData); assembleInvoiceRecord(projectId, period, isMergeManualData);
//生成trial_balance_final数据 //生成trial_balance_final数据
assembleTrialBalanceFinal(projectId, period); assembleTrialBalanceFinal(projectId, period);
clearPeriodData(projectId, period, exceptTemplateIds, isMergeManualData); clearPeriodData(projectId, period, exceptTemplateIds, isMergeManualData);
...@@ -333,7 +333,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -333,7 +333,7 @@ public class ReportServiceImpl extends BaseService {
trialBalanceFinalMapper.generateFinalData(projectId, Integer.valueOf(queryPeriod), lastProject == null ? "0" : lastProject.getId(), Integer.valueOf(lastPeriod)); trialBalanceFinalMapper.generateFinalData(projectId, Integer.valueOf(queryPeriod), lastProject == null ? "0" : lastProject.getId(), Integer.valueOf(lastPeriod));
} }
public void assembleInvoiceRecord(String projectId, Integer period,Boolean isMergeManualData) { public void assembleInvoiceRecord(String projectId, Integer period, Boolean isMergeManualData) {
Project project = projectMapper.selectByPrimaryKey(projectId); Project project = projectMapper.selectByPrimaryKey(projectId);
MyAsserts.assertNotNull(project, Exceptions.NOT_FOUND_REPORT_EXCEPTION); MyAsserts.assertNotNull(project, Exceptions.NOT_FOUND_REPORT_EXCEPTION);
String queryDate = project.getYear() + "-" + (period < 10 ? ("0" + period) : (period + "")); String queryDate = project.getYear() + "-" + (period < 10 ? ("0" + period) : (period + ""));
...@@ -342,17 +342,15 @@ public class ReportServiceImpl extends BaseService { ...@@ -342,17 +342,15 @@ public class ReportServiceImpl extends BaseService {
andStartDateLessThanOrEqualTo(queryDate).andEndDateGreaterThanOrEqualTo(queryDate). andStartDateLessThanOrEqualTo(queryDate).andEndDateGreaterThanOrEqualTo(queryDate).
andStatusEqualTo(0); andStatusEqualTo(0);
List<RevenueTypeMapping> mappingList = revenueTypeMappingMapper.selectByExample(mappingExample); List<RevenueTypeMapping> mappingList = revenueTypeMappingMapper.selectByExample(mappingExample);
//先清除数据
InvoiceRecord delRecord = new InvoiceRecord();
delRecord.setRevenueCofId(null);
if(!isMergeManualData){
delRecord.setModifyRevenueCofId(null);
}
InvoiceRecordExample delExample = new InvoiceRecordExample(); InvoiceRecordExample delExample = new InvoiceRecordExample();
delExample.createCriteria().andProjectIdEqualTo(projectId) delExample.createCriteria().andProjectIdEqualTo(projectId).
.andProjectIdEqualTo(projectId).
andPeriodEqualTo(Integer.valueOf(queryDate.replace("-", ""))); andPeriodEqualTo(Integer.valueOf(queryDate.replace("-", "")));
invoiceRecordMapper.deleteByExample(delExample); if (isMergeManualData) {
invoiceRecordMapper.clearRevenueCof(true, false, delExample);
} else {
invoiceRecordMapper.clearRevenueCof(true, true, delExample);
}
Map<String, Long> map = new HashMap<>(); Map<String, Long> map = new HashMap<>();
for (RevenueTypeMapping mapping : mappingList) { for (RevenueTypeMapping mapping : mappingList) {
if (!map.containsKey(mapping.getContent())) { if (!map.containsKey(mapping.getContent())) {
...@@ -472,140 +470,78 @@ public class ReportServiceImpl extends BaseService { ...@@ -472,140 +470,78 @@ public class ReportServiceImpl extends BaseService {
for (int r = sheet.getFirstRowNum(); r <= sheet.getLastRowNum(); r++) { for (int r = sheet.getFirstRowNum(); r <= sheet.getLastRowNum(); r++) {
Row row = sheet.getRow(r); Row row = sheet.getRow(r);
for (int c = row.getFirstCellNum(); c <= row.getLastCellNum(); c++) { for (int c = row.getFirstCellNum(); c <= row.getLastCellNum(); c++) {
Cell cell = row.getCell(c); Cell cell = row.getCell(c);
if (cell == null) { if (cell == null) {
continue;//todo cell == null 如何处理 continue;//todo cell == null 如何处理
} }
if (r <= addRowIndex + 1) { if (r <= addRowIndex + 1) {
String cellId = projectId + template.getId() + period + r + c; if(r == addRowIndex + 1 && c>TaxesCalculateReportEnum.Column.Column_14.getIndex()){
if ((r - 1) >= 0 && (r - 1) < configIds.size()) { assembleOriginalTemplateData(template,projectId,period,r,c,addRowIndex,cellTemplateList,cellTemplateConfigList);
cellId += configIds.get(configIds.size() - r); }else{
} String cellId = projectId + template.getId() + period + r + c;
Long cellTemplateId = Long.valueOf(cellId.hashCode()); if ((r - 1) >= 0 && (r - 1) < configIds.size()) {
cellTemplateId = cellTemplateId < 0 ? cellTemplateId : (cellTemplateId * -1); cellId += configIds.get(configIds.size() - r);
//更新手工数据源 }
PeriodDataSourceExample delExample = new PeriodDataSourceExample(); Long cellTemplateId = Long.valueOf(cellId.hashCode());
delExample.createCriteria().andProjectIdEqualTo(projectId) cellTemplateId = cellTemplateId < 0 ? cellTemplateId : (cellTemplateId * -1);
.andPeriodEqualTo(period).andTypeEqualTo(10).andColumnIndexEqualTo(c).andRowIndexEqualTo(r); //更新手工数据源
PeriodDataSource dataSource = new DataSourceExtendDto(); PeriodDataSourceExample delExample = new PeriodDataSourceExample();
dataSource.setColumnIndex(999); delExample.createCriteria().andProjectIdEqualTo(projectId)
dataSource.setRowIndex(999); .andPeriodEqualTo(period).andTypeEqualTo(10).andColumnIndexEqualTo(c).andRowIndexEqualTo(r);
periodDataSourceMapper.updateByExampleSelective(dataSource, delExample); PeriodDataSource dataSource = new DataSourceExtendDto();
dataSource.setColumnIndex(999);
PeriodDataSourceExample updateExample = new PeriodDataSourceExample(); dataSource.setRowIndex(999);
updateExample.createCriteria().andProjectIdEqualTo(projectId) periodDataSourceMapper.updateByExampleSelective(dataSource, delExample);
.andPeriodEqualTo(period).andTypeEqualTo(10).andCellTemplateIdEqualTo(cellTemplateId);
dataSource = new DataSourceExtendDto(); PeriodDataSourceExample updateExample = new PeriodDataSourceExample();
dataSource.setColumnIndex(c); updateExample.createCriteria().andProjectIdEqualTo(projectId)
dataSource.setRowIndex(r); .andPeriodEqualTo(period).andTypeEqualTo(10).andCellTemplateIdEqualTo(cellTemplateId);
periodDataSourceMapper.updateByExampleSelective(dataSource, updateExample); dataSource = new DataSourceExtendDto();
PeriodCellTemplate cellTemplate = new PeriodCellTemplate(); dataSource.setColumnIndex(c);
cellTemplate.setPeriod(period); dataSource.setRowIndex(r);
cellTemplate.setRowName(POIUtil.getCellFormulaString(cell)); periodDataSourceMapper.updateByExampleSelective(dataSource, updateExample);
cellTemplate.setProjectId(projectId); PeriodCellTemplate cellTemplate = new PeriodCellTemplate();
cellTemplate.setColumnIndex(c); cellTemplate.setPeriod(period);
cellTemplate.setCreateTime(now); cellTemplate.setRowName(POIUtil.getCellFormulaString(cell));
cellTemplate.setCellTemplateId(cellTemplateId); cellTemplate.setProjectId(projectId);
cellTemplate.setUpdateTime(now); cellTemplate.setColumnIndex(c);
cellTemplate.setRowIndex(r); cellTemplate.setCreateTime(now);
cellTemplate.setReportTemplateId(template.getId()); cellTemplate.setCellTemplateId(cellTemplateId);
cellTemplate.setId(distributedIdService.nextId()); cellTemplate.setUpdateTime(now);
if (cell.getCellComment() != null) { cellTemplate.setRowIndex(r);
cellTemplate.setComment(cell.getCellComment().getString().getString()); cellTemplate.setReportTemplateId(template.getId());
} cellTemplate.setId(distributedIdService.nextId());
cellTemplate.setIsReadOnly(hasHandDatas.contains(c) ? 0 : 1); if (cell.getCellComment() != null) {
cellTemplateList.add(cellTemplate); cellTemplate.setComment(cell.getCellComment().getString().getString());
if (r > 0 && hasFormulaDatas.contains(c) && StringUtils.isNotBlank(POIUtil.getCellFormulaString(cell))) { }
PeriodCellTemplateConfig periodCellTemplateConfig = new PeriodCellTemplateConfig(); cellTemplate.setIsReadOnly(hasHandDatas.contains(c) ? 0 : 1);
periodCellTemplateConfig.setId(distributedIdService.nextId()); cellTemplateList.add(cellTemplate);
periodCellTemplateConfig.setPeriod(period); if (r > 0 && hasFormulaDatas.contains(c) && StringUtils.isNotBlank(POIUtil.getCellFormulaString(cell))) {
periodCellTemplateConfig.setCellTemplateId(cellTemplateId); PeriodCellTemplateConfig periodCellTemplateConfig = new PeriodCellTemplateConfig();
periodCellTemplateConfig.setReportTemplateId(template.getId()); periodCellTemplateConfig.setId(distributedIdService.nextId());
periodCellTemplateConfig.setDataSourceType(1); periodCellTemplateConfig.setPeriod(period);
periodCellTemplateConfig.setFormula(POIUtil.getCellFormulaString(cell)); periodCellTemplateConfig.setCellTemplateId(cellTemplateId);
periodCellTemplateConfig.setParsedFormula(null); periodCellTemplateConfig.setReportTemplateId(template.getId());
periodCellTemplateConfig.setDataSourceType(1);
periodCellTemplateConfig.setFormula(POIUtil.getCellFormulaString(cell));
periodCellTemplateConfig.setParsedFormula(null);
// periodCellTemplateConfig.setCreateBy(authUserHelper.getCurrentUserId()); // periodCellTemplateConfig.setCreateBy(authUserHelper.getCurrentUserId());
periodCellTemplateConfig.setCreateTime(now); periodCellTemplateConfig.setCreateTime(now);
// periodCellTemplateConfig.setUpdateBy(authUserHelper.getCurrentUserId()); // periodCellTemplateConfig.setUpdateBy(authUserHelper.getCurrentUserId());
periodCellTemplateConfig.setUpdateTime(now); periodCellTemplateConfig.setUpdateTime(now);
periodCellTemplateConfig.setFormulaDataSource("报表数据"); periodCellTemplateConfig.setFormulaDataSource("报表数据");
periodCellTemplateConfig.setKeyValueParsedFormula(null); periodCellTemplateConfig.setKeyValueParsedFormula(null);
periodCellTemplateConfig.setProjectId(projectId); periodCellTemplateConfig.setProjectId(projectId);
fixedParsedFormula(periodCellTemplateConfig); fixedParsedFormula(periodCellTemplateConfig);
fixedAccountCode(periodCellTemplateConfig); fixedAccountCode(periodCellTemplateConfig);
cellTemplateConfigList.add(periodCellTemplateConfig); cellTemplateConfigList.add(periodCellTemplateConfig);
} }
if (r > 0 && r <= addRowIndex && hasHandDatas.contains(c)) { if (r > 0 && r <= addRowIndex && hasHandDatas.contains(c)) {
addManualConfig(cellTemplate, cell, now, cellTemplateConfigList); addManualConfig(cellTemplate, cell, now, cellTemplateConfigList);
}
} else {
//查询原来行cell是否有CellTemplate
CellTemplateExample cellTemplateExample = new CellTemplateExample();
cellTemplateExample.createCriteria().andReportTemplateIdEqualTo(template.getId()).andRowIndexEqualTo(r - addRowIndex).andColumnIndexEqualTo(c);
List<CellTemplate> cellTemplates = cellTemplateMapper.selectByExample(cellTemplateExample);
if (CollectionUtils.isNotEmpty(cellTemplates)) {
CellTemplate cellTemplate = cellTemplates.get(0);
PeriodCellTemplate periodCellTemplate = new PeriodCellTemplate();
CommonUtils.copyProperties(cellTemplate, periodCellTemplate);
periodCellTemplate.setId(distributedIdService.nextId());
periodCellTemplate.setPeriod(period);
periodCellTemplate.setReportTemplateId(template.getId());
periodCellTemplate.setRowIndex(r);
periodCellTemplate.setRowName(cellTemplate.getRowName());
periodCellTemplate.setColumnIndex(c);
periodCellTemplate.setColumnName(cellTemplate.getColumnName());
periodCellTemplate.setComment(cellTemplate.getComment());
periodCellTemplate.setCreateTime(cellTemplate.getCreateTime());
periodCellTemplate.setUpdateTime(cellTemplate.getUpdateTime());
periodCellTemplate.setCellTemplateId(cellTemplate.getId());
periodCellTemplate.setDataType(cellTemplate.getDataType());
periodCellTemplate.setIsReadOnly(cellTemplate.getIsReadOnly() ? 1 : 0);
periodCellTemplate.setCopyFromId(cellTemplate.getCopyFromId());
periodCellTemplate.setCreateBy(StringUtils.isBlank(cellTemplate.getCreateBy()) ? "admin" : cellTemplate.getCreateBy());
periodCellTemplate.setUpdateBy(StringUtils.isBlank(cellTemplate.getUpdateBy()) ? "admin" : cellTemplate.getUpdateBy());
periodCellTemplate.setProjectId(projectId);
cellTemplateList.add(periodCellTemplate);
CellTemplateConfigExample configExample = new CellTemplateConfigExample();
configExample.createCriteria().andCellTemplateIdEqualTo(cellTemplate.getId());
List<CellTemplateConfig> configs = cellTemplateConfigMapper.selectByExample(configExample);
if (CollectionUtils.isNotEmpty(configs)) {
for (CellTemplateConfig cellTemplateConfig : configs) {
PeriodCellTemplateConfig periodCellTemplateConfig = new PeriodCellTemplateConfig();
CommonUtils.copyProperties(cellTemplateConfig, periodCellTemplateConfig);
periodCellTemplateConfig.setId(distributedIdService.nextId());
periodCellTemplateConfig.setPeriod(period);
periodCellTemplateConfig.setCellTemplateId(cellTemplateConfig.getCellTemplateId());
periodCellTemplateConfig.setReportTemplateId(template.getId());
periodCellTemplateConfig.setDataSourceType(cellTemplateConfig.getDataSourceType());
periodCellTemplateConfig.setFormula(StringUtils.isBlank(cellTemplateConfig.getFormula()) ? null : cellTemplateConfig.getFormula());
periodCellTemplateConfig.setParsedFormula(null);
periodCellTemplateConfig.setFormulaDescription(cellTemplateConfig.getFormulaDescription());
periodCellTemplateConfig.setAccountCodes(cellTemplateConfig.getAccountCodes());
periodCellTemplateConfig.setInvoiceType(cellTemplateConfig.getInvoiceType());
periodCellTemplateConfig.setTaxRate(cellTemplateConfig.getTaxRate());
periodCellTemplateConfig.setInvoiceAmountType(cellTemplateConfig.getInvoiceAmountType());
periodCellTemplateConfig.setModelIds(cellTemplateConfig.getModelIds());
periodCellTemplateConfig.setCreateBy(StringUtils.isBlank(cellTemplateConfig.getCreateBy()) ? "admin" : cellTemplateConfig.getCreateBy());
periodCellTemplateConfig.setCreateTime(cellTemplateConfig.getCreateTime());
periodCellTemplateConfig.setUpdateBy(StringUtils.isBlank(cellTemplateConfig.getUpdateBy()) ? "admin" : cellTemplateConfig.getUpdateBy());
periodCellTemplateConfig.setUpdateTime(cellTemplateConfig.getUpdateTime());
periodCellTemplateConfig.setInvoiceCategory(cellTemplateConfig.getInvoiceCategory());
periodCellTemplateConfig.setFormulaDataSource(cellTemplateConfig.getFormulaDataSource());
periodCellTemplateConfig.setValidation(cellTemplateConfig.getValidation());
periodCellTemplateConfig.setParsedValidation(null);
periodCellTemplateConfig.setValidationDescription(cellTemplateConfig.getValidationDescription());
periodCellTemplateConfig.setVoucherKeyword(cellTemplateConfig.getVoucherKeyword());
periodCellTemplateConfig.setCellTemplateConfigId(cellTemplateConfig.getId());
periodCellTemplateConfig.setKeyValueParsedFormula(null);
periodCellTemplateConfig.setProjectId(projectId);
fixedParsedFormula(periodCellTemplateConfig);
fixedAccountCode(periodCellTemplateConfig);
cellTemplateConfigList.add(periodCellTemplateConfig);
}
} }
} }
} else {
assembleOriginalTemplateData(template,projectId,period,r,c,addRowIndex,cellTemplateList,cellTemplateConfigList);
} }
} }
} }
...@@ -620,6 +556,77 @@ public class ReportServiceImpl extends BaseService { ...@@ -620,6 +556,77 @@ public class ReportServiceImpl extends BaseService {
} }
} }
public void assembleOriginalTemplateData(Template template, String projectId, Integer period,
Integer r, Integer c, Integer addRowIndex,
List<PeriodCellTemplate> cellTemplateList, List<PeriodCellTemplateConfig> cellTemplateConfigList) {
//查询原来行cell是否有CellTemplate
CellTemplateExample cellTemplateExample = new CellTemplateExample();
cellTemplateExample.createCriteria().andReportTemplateIdEqualTo(template.getId()).andRowIndexEqualTo(r - addRowIndex).andColumnIndexEqualTo(c);
List<CellTemplate> cellTemplates = cellTemplateMapper.selectByExample(cellTemplateExample);
if (CollectionUtils.isNotEmpty(cellTemplates)) {
CellTemplate cellTemplate = cellTemplates.get(0);
PeriodCellTemplate periodCellTemplate = new PeriodCellTemplate();
CommonUtils.copyProperties(cellTemplate, periodCellTemplate);
periodCellTemplate.setId(distributedIdService.nextId());
periodCellTemplate.setPeriod(period);
periodCellTemplate.setReportTemplateId(template.getId());
periodCellTemplate.setRowIndex(r);
periodCellTemplate.setRowName(cellTemplate.getRowName());
periodCellTemplate.setColumnIndex(c);
periodCellTemplate.setColumnName(cellTemplate.getColumnName());
periodCellTemplate.setComment(cellTemplate.getComment());
periodCellTemplate.setCreateTime(cellTemplate.getCreateTime());
periodCellTemplate.setUpdateTime(cellTemplate.getUpdateTime());
periodCellTemplate.setCellTemplateId(cellTemplate.getId());
periodCellTemplate.setDataType(cellTemplate.getDataType());
periodCellTemplate.setIsReadOnly(cellTemplate.getIsReadOnly() ? 1 : 0);
periodCellTemplate.setCopyFromId(cellTemplate.getCopyFromId());
periodCellTemplate.setCreateBy(StringUtils.isBlank(cellTemplate.getCreateBy()) ? "admin" : cellTemplate.getCreateBy());
periodCellTemplate.setUpdateBy(StringUtils.isBlank(cellTemplate.getUpdateBy()) ? "admin" : cellTemplate.getUpdateBy());
periodCellTemplate.setProjectId(projectId);
cellTemplateList.add(periodCellTemplate);
CellTemplateConfigExample configExample = new CellTemplateConfigExample();
configExample.createCriteria().andCellTemplateIdEqualTo(cellTemplate.getId());
List<CellTemplateConfig> configs = cellTemplateConfigMapper.selectByExample(configExample);
if (CollectionUtils.isNotEmpty(configs)) {
for (CellTemplateConfig cellTemplateConfig : configs) {
PeriodCellTemplateConfig periodCellTemplateConfig = new PeriodCellTemplateConfig();
CommonUtils.copyProperties(cellTemplateConfig, periodCellTemplateConfig);
periodCellTemplateConfig.setId(distributedIdService.nextId());
periodCellTemplateConfig.setPeriod(period);
periodCellTemplateConfig.setCellTemplateId(cellTemplateConfig.getCellTemplateId());
periodCellTemplateConfig.setReportTemplateId(template.getId());
periodCellTemplateConfig.setDataSourceType(cellTemplateConfig.getDataSourceType());
periodCellTemplateConfig.setFormula(StringUtils.isBlank(cellTemplateConfig.getFormula()) ? null : cellTemplateConfig.getFormula());
periodCellTemplateConfig.setParsedFormula(null);
periodCellTemplateConfig.setFormulaDescription(cellTemplateConfig.getFormulaDescription());
periodCellTemplateConfig.setAccountCodes(cellTemplateConfig.getAccountCodes());
periodCellTemplateConfig.setInvoiceType(cellTemplateConfig.getInvoiceType());
periodCellTemplateConfig.setTaxRate(cellTemplateConfig.getTaxRate());
periodCellTemplateConfig.setInvoiceAmountType(cellTemplateConfig.getInvoiceAmountType());
periodCellTemplateConfig.setModelIds(cellTemplateConfig.getModelIds());
periodCellTemplateConfig.setCreateBy(StringUtils.isBlank(cellTemplateConfig.getCreateBy()) ? "admin" : cellTemplateConfig.getCreateBy());
periodCellTemplateConfig.setCreateTime(cellTemplateConfig.getCreateTime());
periodCellTemplateConfig.setUpdateBy(StringUtils.isBlank(cellTemplateConfig.getUpdateBy()) ? "admin" : cellTemplateConfig.getUpdateBy());
periodCellTemplateConfig.setUpdateTime(cellTemplateConfig.getUpdateTime());
periodCellTemplateConfig.setInvoiceCategory(cellTemplateConfig.getInvoiceCategory());
periodCellTemplateConfig.setFormulaDataSource(cellTemplateConfig.getFormulaDataSource());
periodCellTemplateConfig.setValidation(cellTemplateConfig.getValidation());
periodCellTemplateConfig.setParsedValidation(null);
periodCellTemplateConfig.setValidationDescription(cellTemplateConfig.getValidationDescription());
periodCellTemplateConfig.setVoucherKeyword(cellTemplateConfig.getVoucherKeyword());
periodCellTemplateConfig.setCellTemplateConfigId(cellTemplateConfig.getId());
periodCellTemplateConfig.setKeyValueParsedFormula(null);
periodCellTemplateConfig.setProjectId(projectId);
fixedParsedFormula(periodCellTemplateConfig);
fixedAccountCode(periodCellTemplateConfig);
cellTemplateConfigList.add(periodCellTemplateConfig);
}
}
}
}
private void addManualConfig(PeriodCellTemplate cellTemplate, Cell cell, Date now, List<PeriodCellTemplateConfig> list) { private void addManualConfig(PeriodCellTemplate cellTemplate, Cell cell, Date now, List<PeriodCellTemplateConfig> list) {
PeriodCellTemplateConfig configManual = new PeriodCellTemplateConfig(); PeriodCellTemplateConfig configManual = new PeriodCellTemplateConfig();
configManual.setId(distributedIdService.nextId()); configManual.setId(distributedIdService.nextId());
...@@ -989,7 +996,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -989,7 +996,7 @@ public class ReportServiceImpl extends BaseService {
Workbook workbook = reportGenerator.createWorkBookByPeriodTemplate(resources.getPeriodTemplates(), genJob); Workbook workbook = reportGenerator.createWorkBookByPeriodTemplate(resources.getPeriodTemplates(), genJob);
reportGenerator.addFunctionsAndContext(workbook, functions, reportGenerator.initContext(resources, periodParam),false); reportGenerator.addFunctionsAndContext(workbook, functions, reportGenerator.initContext(resources, periodParam), false);
reportGenerator.setConfigAndDataToWorkBook(workbook, resources); reportGenerator.setConfigAndDataToWorkBook(workbook, resources);
FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator(); FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator();
...@@ -1031,7 +1038,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -1031,7 +1038,7 @@ public class ReportServiceImpl extends BaseService {
periodCellTemplateConfigDtos.forEach(a -> { periodCellTemplateConfigDtos.forEach(a -> {
workbook4Validate.getSheetAt(a.getSheetNumber() - 1).getRow(a.getRowNumber()).getCell(a.getColNumber()).setCellFormula(a.getParsedValidation()); workbook4Validate.getSheetAt(a.getSheetNumber() - 1).getRow(a.getRowNumber()).getCell(a.getColNumber()).setCellFormula(a.getParsedValidation());
}); });
reportGenerator.addFunctionsAndContext(workbook4Validate, functions, reportGenerator.initContext(resources, periodParam),true); reportGenerator.addFunctionsAndContext(workbook4Validate, functions, reportGenerator.initContext(resources, periodParam), true);
FormulaEvaluator validateEvaluator = workbook4Validate.getCreationHelper().createFormulaEvaluator(); FormulaEvaluator validateEvaluator = workbook4Validate.getCreationHelper().createFormulaEvaluator();
validateEvaluator.evaluateAll(); validateEvaluator.evaluateAll();
//todo: 4.then save the validation result to cellData table //todo: 4.then save the validation result to cellData table
...@@ -2241,7 +2248,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -2241,7 +2248,7 @@ public class ReportServiceImpl extends BaseService {
pwcReportAttach.setRemarks(remarks); pwcReportAttach.setRemarks(remarks);
pwcReportAttachMapper.insert(pwcReportAttach); pwcReportAttachMapper.insert(pwcReportAttach);
System.out.println("==>>>附件绑定成功"); System.out.println("==>>>附件绑定成功");
return pwcReportAttach; return pwcReportAttach;
} }
public List<PwcReportAttach> loadAttachList(ReportAttachDto param) { public List<PwcReportAttach> loadAttachList(ReportAttachDto param) {
...@@ -2389,7 +2396,7 @@ public class ReportServiceImpl extends BaseService { ...@@ -2389,7 +2396,7 @@ public class ReportServiceImpl extends BaseService {
* *
* @param requestParameterDto * @param requestParameterDto
*/ */
public void manyExport(RequestParameterDto requestParameterDto, String zipFileName, HttpServletRequest request, HttpServletResponse response, String zipPath) throws Exception { public void manyExport(RequestParameterDto requestParameterDto, String zipFileName, HttpServletRequest request, HttpServletResponse response, String zipPath) throws Exception {
try { try {
FileOutputStream out = new FileOutputStream(zipFileName);//要输出的文件名字 FileOutputStream out = new FileOutputStream(zipFileName);//要输出的文件名字
} catch (FileNotFoundException e) { } catch (FileNotFoundException e) {
...@@ -2425,8 +2432,8 @@ public class ReportServiceImpl extends BaseService { ...@@ -2425,8 +2432,8 @@ public class ReportServiceImpl extends BaseService {
} }
dataList.add(orgTypeList); dataList.add(orgTypeList);
} }
if(dataList.size() == 0){ if (dataList.size() == 0) {
throw new Exception("没有可导出的数据"); throw new Exception("没有可导出的数据");
} }
if (template.getIsSystemType()) { if (template.getIsSystemType()) {
try { try {
......
...@@ -52,19 +52,19 @@ public class KPSR extends FunctionBase implements FreeRefFunction { ...@@ -52,19 +52,19 @@ public class KPSR extends FunctionBase implements FreeRefFunction {
private double assembleData(String revenueTypeName, List<OutputInvoiceDataSourceDto> contain, Integer billType, Integer amountType, OperationEvaluationContext ec) { private double assembleData(String revenueTypeName, List<OutputInvoiceDataSourceDto> contain, Integer billType, Integer amountType, OperationEvaluationContext ec) {
String queryDate = formulaContext.getYear() + (formulaContext.getPeriod() < 10 ? ("0" + formulaContext.getPeriod()) : (formulaContext.getPeriod() + "")); String queryDate = formulaContext.getYear() + (formulaContext.getPeriod() < 10 ? ("0" + formulaContext.getPeriod()) : (formulaContext.getPeriod() + ""));
RevenueTypeMappingExample typeMappingExample = new RevenueTypeMappingExample(); // RevenueTypeMappingExample typeMappingExample = new RevenueTypeMappingExample();
typeMappingExample.createCriteria().andOrgIdEqualTo(formulaContext.getOrganizationId()) // typeMappingExample.createCriteria().andOrgIdEqualTo(formulaContext.getOrganizationId())
.andRevenueTypeNameEqualTo(revenueTypeName).andStartDateLessThanOrEqualTo(queryDate) // .andRevenueTypeNameEqualTo(revenueTypeName).andStartDateLessThanOrEqualTo(queryDate)
.andEndDateGreaterThanOrEqualTo(queryDate); // .andEndDateGreaterThanOrEqualTo(queryDate);
List<RevenueTypeMapping> typeMappingList = SpringContextUtil.revenueTypeMappingMapper.selectByExample(typeMappingExample); // List<RevenueTypeMapping> typeMappingList = SpringContextUtil.revenueTypeMappingMapper.selectByExample(typeMappingExample);
if (CollectionUtils.isEmpty(typeMappingList)) { // if (CollectionUtils.isEmpty(typeMappingList)) {
return 0.0; // return 0.0;
} // }
List<String> revenueTypes = typeMappingList.stream() // List<String> revenueTypes = typeMappingList.stream()
.map(o -> o.getRevenueTypeName()).collect(Collectors.toList()); // .map(o -> o.getRevenueTypeName()).collect(Collectors.toList());
RevenueConfigExample configExample = new RevenueConfigExample(); RevenueConfigExample configExample = new RevenueConfigExample();
configExample.createCriteria().andOrgIdEqualTo(formulaContext.getOrganizationId()).andStartDateLessThanOrEqualTo(queryDate) configExample.createCriteria().andOrgIdEqualTo(formulaContext.getOrganizationId()).andStartDateLessThanOrEqualTo(queryDate)
.andEndDateGreaterThanOrEqualTo(queryDate).andNameIn(revenueTypes); .andEndDateGreaterThanOrEqualTo(queryDate).andNameEqualTo(revenueTypeName);
List<RevenueConfig> configDatas = SpringContextUtil.revenueConfigMapper.selectByExample(configExample); List<RevenueConfig> configDatas = SpringContextUtil.revenueConfigMapper.selectByExample(configExample);
if (CollectionUtils.isEmpty(configDatas)) { if (CollectionUtils.isEmpty(configDatas)) {
return 0.0; return 0.0;
......
...@@ -1916,72 +1916,72 @@ public class TaxDocumentExample { ...@@ -1916,72 +1916,72 @@ public class TaxDocumentExample {
} }
public Criteria andEnableIsNull() { public Criteria andEnableIsNull() {
addCriterion("enable is null"); addCriterion("`enable` is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableIsNotNull() { public Criteria andEnableIsNotNull() {
addCriterion("enable is not null"); addCriterion("`enable` is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableEqualTo(String value) { public Criteria andEnableEqualTo(String value) {
addCriterion("enable =", value, "enable"); addCriterion("`enable` =", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableNotEqualTo(String value) { public Criteria andEnableNotEqualTo(String value) {
addCriterion("enable <>", value, "enable"); addCriterion("`enable` <>", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableGreaterThan(String value) { public Criteria andEnableGreaterThan(String value) {
addCriterion("enable >", value, "enable"); addCriterion("`enable` >", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableGreaterThanOrEqualTo(String value) { public Criteria andEnableGreaterThanOrEqualTo(String value) {
addCriterion("enable >=", value, "enable"); addCriterion("`enable` >=", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableLessThan(String value) { public Criteria andEnableLessThan(String value) {
addCriterion("enable <", value, "enable"); addCriterion("`enable` <", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableLessThanOrEqualTo(String value) { public Criteria andEnableLessThanOrEqualTo(String value) {
addCriterion("enable <=", value, "enable"); addCriterion("`enable` <=", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableLike(String value) { public Criteria andEnableLike(String value) {
addCriterion("enable like", value, "enable"); addCriterion("`enable` like", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableNotLike(String value) { public Criteria andEnableNotLike(String value) {
addCriterion("enable not like", value, "enable"); addCriterion("`enable` not like", value, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableIn(List<String> values) { public Criteria andEnableIn(List<String> values) {
addCriterion("enable in", values, "enable"); addCriterion("`enable` in", values, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableNotIn(List<String> values) { public Criteria andEnableNotIn(List<String> values) {
addCriterion("enable not in", values, "enable"); addCriterion("`enable` not in", values, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableBetween(String value1, String value2) { public Criteria andEnableBetween(String value1, String value2) {
addCriterion("enable between", value1, value2, "enable"); addCriterion("`enable` between", value1, value2, "enable");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andEnableNotBetween(String value1, String value2) { public Criteria andEnableNotBetween(String value1, String value2) {
addCriterion("enable not between", value1, value2, "enable"); addCriterion("`enable` not between", value1, value2, "enable");
return (Criteria) this; return (Criteria) this;
} }
......
...@@ -129,4 +129,6 @@ public interface InvoiceRecordMapper extends MyVatMapper { ...@@ -129,4 +129,6 @@ public interface InvoiceRecordMapper extends MyVatMapper {
List<String> queryBillTypeGroupBy(@Param("projectId") String projectId, List<String> queryBillTypeGroupBy(@Param("projectId") String projectId,
@Param("period") Integer period); @Param("period") Integer period);
int clearRevenueCof(@Param("clearRevenue") boolean clearRevenue, @Param("clearModifyRevenue") boolean clearModifyRevenue,@Param("example") InvoiceRecordExample example);
} }
\ No newline at end of file
...@@ -2,235 +2,240 @@ ...@@ -2,235 +2,240 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pwc.taxtech.atms.vat.dao.InvoiceRecordMapper"> <mapper namespace="pwc.taxtech.atms.vat.dao.InvoiceRecordMapper">
<sql id="QueryCondition"> <sql id="QueryCondition">
1 = 1 1 = 1
<if test="@com.github.pagehelper.util.StringUtil@isNotEmpty(irCondition.orgId)"> <if test="@com.github.pagehelper.util.StringUtil@isNotEmpty(irCondition.orgId)">
AND organization_id= #{irCondition.orgId,jdbcType=VARCHAR} AND organization_id= #{irCondition.orgId,jdbcType=VARCHAR}
</if> </if>
<if test="irCondition.periodStart!=null"> <if test="irCondition.periodStart!=null">
AND tms_period &gt;= #{irCondition.periodStart,jdbcType=INTEGER} AND tms_period &gt;= #{irCondition.periodStart,jdbcType=INTEGER}
</if> </if>
<if test="irCondition.periodEnd!=null"> <if test="irCondition.periodEnd!=null">
AND tms_period &lt;= #{irCondition.periodEnd,jdbcType=INTEGER} AND tms_period &lt;= #{irCondition.periodEnd,jdbcType=INTEGER}
</if> </if>
</sql> </sql>
<select id="selectByCondition" parameterType="pwc.taxtech.atms.vat.dpo.InvoiceRecordCondition" resultMap="BaseResultMap"> <select id="selectByCondition" parameterType="pwc.taxtech.atms.vat.dpo.InvoiceRecordCondition"
select resultMap="BaseResultMap">
<include refid="Base_Column_List" /> select
from invoice_record <include refid="Base_Column_List"/>
where from invoice_record
<include refid="QueryCondition"/> where
</select> <include refid="QueryCondition"/>
</select>
<select id="selectCountByCondition" parameterType="pwc.taxtech.atms.vat.dpo.InvoiceRecordCondition" resultType="Integer"> <select id="selectCountByCondition" parameterType="pwc.taxtech.atms.vat.dpo.InvoiceRecordCondition"
select resultType="Integer">
count(*) select
from invoice_record count(*)
where from invoice_record
<include refid="QueryCondition"/> where
</select> <include refid="QueryCondition"/>
</select>
<insert id="insertBatch" parameterType="java.util.List"> <insert id="insertBatch" parameterType="java.util.List">
insert into invoice_record insert into invoice_record
(id, organization_id, project_id, tms_period, period, seq_no, `source`, billing_body, (id, organization_id, project_id, tms_period, period, seq_no, `source`, billing_body,
customer_company_name, invoice_type, billing_content, invoice_amount, applicant, customer_company_name, invoice_type, billing_content, invoice_amount, applicant,
oa_application_num, contract_no, contract_amount, department, application_date, billing_date, oa_application_num, contract_no, contract_amount, department, application_date, billing_date,
billing_month, invoice_code, invoice_num, invoices_amount, customer_company_tax_num, billing_month, invoice_code, invoice_num, invoices_amount, customer_company_tax_num,
contract_source_system, tax_rate, tax_amount, invoice_status, remarks, create_time, contract_source_system, tax_rate, tax_amount, invoice_status, remarks, create_time,
update_time) update_time)
values values
<foreach collection="list" item="item" index="index" separator=","> <foreach collection="list" item="item" index="index" separator=",">
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<choose> <choose>
<when test="item.id != null">#{item.id,jdbcType=BIGINT},</when> <when test="item.id != null">#{item.id,jdbcType=BIGINT},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.organizationId != null">#{item.organizationId,jdbcType=VARCHAR},</when> <when test="item.organizationId != null">#{item.organizationId,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.projectId != null">#{item.projectId,jdbcType=VARCHAR},</when> <when test="item.projectId != null">#{item.projectId,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.tmsPeriod != null">#{item.tmsPeriod,jdbcType=INTEGER},</when> <when test="item.tmsPeriod != null">#{item.tmsPeriod,jdbcType=INTEGER},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.period != null">#{item.period,jdbcType=INTEGER},</when> <when test="item.period != null">#{item.period,jdbcType=INTEGER},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.seqNo != null">#{item.seqNo,jdbcType=INTEGER},</when> <when test="item.seqNo != null">#{item.seqNo,jdbcType=INTEGER},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.source != null">#{item.source,jdbcType=VARCHAR},</when> <when test="item.source != null">#{item.source,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.billingBody != null">#{item.billingBody,jdbcType=VARCHAR},</when> <when test="item.billingBody != null">#{item.billingBody,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.customerCompanyName != null">#{item.customerCompanyName,jdbcType=VARCHAR},</when> <when test="item.customerCompanyName != null">#{item.customerCompanyName,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.invoiceType != null">#{item.invoiceType,jdbcType=VARCHAR},</when> <when test="item.invoiceType != null">#{item.invoiceType,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.billingContent != null">#{item.billingContent,jdbcType=VARCHAR},</when> <when test="item.billingContent != null">#{item.billingContent,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.invoiceAmount != null">#{item.invoiceAmount,jdbcType=INTEGER},</when> <when test="item.invoiceAmount != null">#{item.invoiceAmount,jdbcType=INTEGER},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.applicant != null">#{item.applicant,jdbcType=VARCHAR},</when> <when test="item.applicant != null">#{item.applicant,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.oaApplicationNum != null">#{item.oaApplicationNum,jdbcType=VARCHAR},</when> <when test="item.oaApplicationNum != null">#{item.oaApplicationNum,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.contractNo != null">#{item.contractNo,jdbcType=VARCHAR},</when> <when test="item.contractNo != null">#{item.contractNo,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.contractAmount != null">#{item.contractAmount,jdbcType=DECIMAL},</when> <when test="item.contractAmount != null">#{item.contractAmount,jdbcType=DECIMAL},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.department != null">#{item.department,jdbcType=VARCHAR},</when> <when test="item.department != null">#{item.department,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.applicationDate != null">#{item.applicationDate,jdbcType=TIMESTAMP},</when> <when test="item.applicationDate != null">#{item.applicationDate,jdbcType=TIMESTAMP},</when>
<otherwise>CURRENT_TIMESTAMP,</otherwise> <otherwise>CURRENT_TIMESTAMP,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.billingDate != null">#{item.billingDate,jdbcType=TIMESTAMP},</when> <when test="item.billingDate != null">#{item.billingDate,jdbcType=TIMESTAMP},</when>
<otherwise>CURRENT_TIMESTAMP,</otherwise> <otherwise>CURRENT_TIMESTAMP,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.billingMonth != null">#{item.billingMonth,jdbcType=TIMESTAMP},</when> <when test="item.billingMonth != null">#{item.billingMonth,jdbcType=TIMESTAMP},</when>
<otherwise>CURRENT_TIMESTAMP,</otherwise> <otherwise>CURRENT_TIMESTAMP,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.invoiceCode != null">#{item.invoiceCode,jdbcType=VARCHAR},</when> <when test="item.invoiceCode != null">#{item.invoiceCode,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.invoiceNum != null">#{item.invoiceNum,jdbcType=VARCHAR},</when> <when test="item.invoiceNum != null">#{item.invoiceNum,jdbcType=VARCHAR},</when>
<otherwise>'',</otherwise> <otherwise>'',</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.invoicesAmount != null">#{item.invoicesAmount,jdbcType=INTEGER},</when> <when test="item.invoicesAmount != null">#{item.invoicesAmount,jdbcType=INTEGER},</when>
<otherwise>0,</otherwise> <otherwise>0,</otherwise>
</choose> </choose>
<choose> <choose>
<when test="item.customerCompanyTaxNum != null">#{item.customerCompanyTaxNum,jdbcType=VARCHAR},</when> <when test="item.customerCompanyTaxNum != null">#{item.customerCompanyTaxNum,jdbcType=VARCHAR},
<otherwise>'',</otherwise> </when>
</choose> <otherwise>'',</otherwise>
<choose> </choose>
<when test="item.contractSourceSystem != null">#{item.contractSourceSystem,jdbcType=VARCHAR},</when> <choose>
<otherwise>'',</otherwise> <when test="item.contractSourceSystem != null">#{item.contractSourceSystem,jdbcType=VARCHAR},</when>
</choose> <otherwise>'',</otherwise>
<choose> </choose>
<when test="item.taxRate != null">#{item.taxRate,jdbcType=DECIMAL},</when> <choose>
<otherwise>0,</otherwise> <when test="item.taxRate != null">#{item.taxRate,jdbcType=DECIMAL},</when>
</choose> <otherwise>0,</otherwise>
<choose> </choose>
<when test="item.taxAmount != null">#{item.taxAmount,jdbcType=DECIMAL},</when> <choose>
<otherwise>0,</otherwise> <when test="item.taxAmount != null">#{item.taxAmount,jdbcType=DECIMAL},</when>
</choose> <otherwise>0,</otherwise>
<choose> </choose>
<when test="item.invoiceStatus != null">#{item.invoiceStatus,jdbcType=VARCHAR},</when> <choose>
<otherwise>'',</otherwise> <when test="item.invoiceStatus != null">#{item.invoiceStatus,jdbcType=VARCHAR},</when>
</choose> <otherwise>'',</otherwise>
<choose> </choose>
<when test="item.remarks != null">#{item.remarks,jdbcType=VARCHAR},</when> <choose>
<otherwise>'',</otherwise> <when test="item.remarks != null">#{item.remarks,jdbcType=VARCHAR},</when>
</choose> <otherwise>'',</otherwise>
<choose> </choose>
<when test="item.createTime != null">#{item.createTime,jdbcType=TIMESTAMP},</when> <choose>
<otherwise>CURRENT_TIMESTAMP,</otherwise> <when test="item.createTime != null">#{item.createTime,jdbcType=TIMESTAMP},</when>
</choose> <otherwise>CURRENT_TIMESTAMP,</otherwise>
<choose> </choose>
<when test="item.updateTime != null">#{item.updateTime,jdbcType=TIMESTAMP},</when> <choose>
<otherwise>CURRENT_TIMESTAMP,</otherwise> <when test="item.updateTime != null">#{item.updateTime,jdbcType=TIMESTAMP},</when>
</choose> <otherwise>CURRENT_TIMESTAMP,</otherwise>
</trim> </choose>
</foreach>; </trim>
SELECT 1 FROM DUAL; </foreach>
</insert> ;
SELECT 1 FROM DUAL;
</insert>
<select id="queryBillWithRevenueConf" resultType="pwc.taxtech.atms.dpo.BillDetailDto"> <select id="queryBillWithRevenueConf" resultType="pwc.taxtech.atms.dpo.BillDetailDto">
select detail.* select detail.*
from (select bd.id as id, from (select bd.id as id,
bd.billing_body as subject, bd.billing_body as subject,
bd.customer_company_name as customer, bd.customer_company_name as customer,
bd.invoice_type as billType, bd.invoice_type as billType,
bd.billing_content as billContent, bd.billing_content as billContent,
bd.invoice_amount as billAmount, bd.invoice_amount as billAmount,
bd.tax_rate as billTaxRat, bd.tax_rate as billTaxRat,
bd.tax_amount as billTaxAmount, bd.tax_amount as billTaxAmount,
bd.oa_application_num as OANo, bd.oa_application_num as OANo,
bd.department as department, bd.department as department,
bd.billing_date as billDate, bd.billing_date as billDate,
bd.invoice_code as billCode, bd.invoice_code as billCode,
bd.invoice_num as billNumber, bd.invoice_num as billNumber,
modfiy_rc.id as modifyRevenueCofId, modfiy_rc.id as modifyRevenueCofId,
modfiy_rc.name as modifyRevenueCofName, modfiy_rc.name as modifyRevenueCofName,
rc.id as revenueCofId, rc.id as revenueCofId,
rc.name as revenueConfName, rc.name as revenueConfName,
case case
when rc.id is null then 1 when rc.id is null then 1
<![CDATA[WHEN rc.id IS NOT NULL and (rc.start_date > #{queryDate} or rc.end_date < #{queryDate}) then 1]]> <![CDATA[WHEN rc.id IS NOT NULL and (rc.start_date > #{queryDate} or rc.end_date < #{queryDate}) then 1]]>
<![CDATA[WHEN rc.id IS NOT NULL and rc.start_date <= #{queryDate} and rc.end_date >= #{queryDate} THEN 2]]> <![CDATA[WHEN rc.id IS NOT NULL and rc.start_date <= #{queryDate} and rc.end_date >= #{queryDate} THEN 2]]>
end as emptyCode end as emptyCode
from invoice_record as bd from invoice_record as bd
left join revenue_config as rc on rc.org_id = bd.organization_id and rc.id = bd.revenue_cof_id left join revenue_config as rc on rc.org_id = bd.organization_id and rc.id = bd.revenue_cof_id
left join revenue_config as modfiy_rc on modfiy_rc.id = bd.modify_revenue_cof_id left join revenue_config as modfiy_rc on modfiy_rc.id = bd.modify_revenue_cof_id
where bd.project_id = #{projectId} where bd.project_id = #{projectId}
and bd.period = #{period} and bd.period = #{period}
<if test="billType != null and billType != ''"> <if test="billType != null and billType != ''">
and bd.invoice_type = #{billType} and bd.invoice_type = #{billType}
</if> </if>
<if test="customer != null and customer != ''"> <if test="customer != null and customer != ''">
and bd.customer_company_name like concat('%',#{customer},'%') and bd.customer_company_name like concat('%',#{customer},'%')
</if> </if>
<if test="billNumber != null and billNumber != ''"> <if test="billNumber != null and billNumber != ''">
and bd.invoice_num like concat('%',#{billNumber},'%') and bd.invoice_num like concat('%',#{billNumber},'%')
</if> </if>
<if test="revenueCofId != null"> <if test="revenueCofId != null">
and if(bd.modify_revenue_cof_id is null,bd.revenue_cof_id = #{revenueCofId},bd.modify_revenue_cof_id = #{revenueCofId}) and if(bd.modify_revenue_cof_id is null,bd.revenue_cof_id = #{revenueCofId},bd.modify_revenue_cof_id =
</if> #{revenueCofId})
<if test="billContent != null and billContent != ''"> </if>
and bd.billing_content like concat('%',#{billContent},'%') <if test="billContent != null and billContent != ''">
</if> and bd.billing_content like concat('%',#{billContent},'%')
<if test="department != null and department != ''"> </if>
and bd.department like concat('%',#{department},'%') <if test="department != null and department != ''">
</if> and bd.department like concat('%',#{department},'%')
<if test="billTaxRat != null"> </if>
and bd.tax_rate = #{billTaxRat} <if test="billTaxRat != null">
</if> and bd.tax_rate = #{billTaxRat}
<if test="billDate != null and billDate != ''"> </if>
and bd.billing_date = #{billDate} <if test="billDate != null and billDate != ''">
</if> and bd.billing_date = #{billDate}
) as detail </if>
order by detail.emptyCode,detail.billDate desc ) as detail
order by detail.emptyCode,detail.billDate desc
</select> </select>
<select id="queryBillTypeGroupBy" resultType="java.lang.String"> <select id="queryBillTypeGroupBy" resultType="java.lang.String">
select invoice_type select invoice_type
from invoice_record from invoice_record
where project_id = #{projectId} where project_id = #{projectId}
...@@ -238,4 +243,18 @@ ...@@ -238,4 +243,18 @@
group by invoice_type; group by invoice_type;
</select> </select>
<update id="clearRevenueCof">
update invoice_record
<set>
<if test="clearRevenue">
revenue_cof_id = null,
</if>
<if test="clearModifyRevenue">
modify_revenue_cof_id = null,
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause"/>
</if>
</update>
</mapper> </mapper>
\ No newline at end of file
package pwc.taxtech.atms.orangeheap.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/OrangeHeap/tableau")
public class OrangeHeapController {
}
package pwc.taxtech.atms.orangeheap.service;
public class OrangeHeapService {
}
...@@ -813,6 +813,7 @@ ...@@ -813,6 +813,7 @@
"dateFormat4YearMonthDayCh": "yyyy-mm-dd", "dateFormat4YearMonthDayCh": "yyyy-mm-dd",
"RecordSize": "Record Size", "RecordSize": "Record Size",
"ExtractFile": "Extract File", "ExtractFile": "Extract File",
"ExtractTaskId": "任务ID",
"TaxPayerIdNum": "纳税人识别号", "TaxPayerIdNum": "纳税人识别号",
"ExtractDistribution": "Extract Distribution", "ExtractDistribution": "Extract Distribution",
......
...@@ -857,6 +857,7 @@ ...@@ -857,6 +857,7 @@
"RecordSize": "记录条数", "RecordSize": "记录条数",
"ExtractFile": "抽取类型", "ExtractFile": "抽取类型",
"ExtractTaskId": "任务ID",
"TaxPayerIdNum": "纳税人识别号", "TaxPayerIdNum": "纳税人识别号",
"ExtractDistribution": "抽取分发", "ExtractDistribution": "抽取分发",
"Log":"日志", "Log":"日志",
......
...@@ -236,6 +236,7 @@ ...@@ -236,6 +236,7 @@
"MessagePushObject": "消息推送对象", "MessagePushObject": "消息推送对象",
"WorkFlowCode": "流程编号", "WorkFlowCode": "流程编号",
"CreatedTime": "创建时间", "CreatedTime": "创建时间",
"UpdateTime": "更新时间",
"HighPriority": "高级", "HighPriority": "高级",
"MediumPriority": "中级", "MediumPriority": "中级",
"LowPriority": "低级", "LowPriority": "低级",
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
"DefaultTaxTypeAndReport": "默认纳税类型及报表:", "DefaultTaxTypeAndReport": "默认纳税类型及报表:",
"DeleteKeyValueConfiguration": "删除关键数据", "DeleteKeyValueConfiguration": "删除关键数据",
"Description": "描述:", "Description": "描述:",
"DescriptionWithOutColon": "描述", "DescriptionWithOutColon": "说明",
"DirectionDifferent": "借贷方向不一致", "DirectionDifferent": "借贷方向不一致",
"EnterpriceAccountMapping": "自动对应", "EnterpriceAccountMapping": "自动对应",
"EtsSubjectNameCol": "对应企业科目", "EtsSubjectNameCol": "对应企业科目",
......
...@@ -136,9 +136,8 @@ ...@@ -136,9 +136,8 @@
showBorders: true, showBorders: true,
columns: [{ columns: [{
dataField: "id", dataField: "id",
visible: false,
allowHeaderFiltering: false, allowHeaderFiltering: false,
caption: $translate.instant('id') caption: $translate.instant('ExtractTaskId')
}, { }, {
dataField: "taxpayerIdNum", dataField: "taxpayerIdNum",
width: '15%', width: '15%',
...@@ -195,7 +194,10 @@ ...@@ -195,7 +194,10 @@
dataField: "operateTime", dataField: "operateTime",
allowHeaderFiltering: false, allowHeaderFiltering: false,
width: '10%', width: '10%',
caption: $translate.instant('LogOperationTime') caption: $translate.instant('LogOperationTime'),
calculateCellValue: function(data) {
return new Date(data).formatDateTime('yyyy-MM-dd hh:mm:ss');
}
} }
], ],
onContentReady: function (e) { onContentReady: function (e) {
......
...@@ -25,8 +25,8 @@ taxDocumentManageModule.controller('taxDocumentListController', ...@@ -25,8 +25,8 @@ taxDocumentManageModule.controller('taxDocumentListController',
var params = angular.copy($scope.queryFieldModel); var params = angular.copy($scope.queryFieldModel);
params.fileBeginTime = getQueryDate(params.fileBeginTime,"-"); params.fileBeginTime = getQueryDate(params.fileBeginTime,"-");
params.fileEndTTime = getQueryDate(params.fileEndTTime,"-"); params.fileEndTTime = getQueryDate(params.fileEndTTime,"-");
params.ownBeginTime = getQueryDate(params.ownBeginTime,"-"); // params.ownBeginTime = getQueryDate(params.ownBeginTime,"-");
params.ownEndTime = getQueryDate(params.ownEndTime,"-"); // params.ownEndTime = getQueryDate(params.ownEndTime,"-");
params.effectiveBeginTime = getQueryDate(params.effectiveBeginTime,"-"); params.effectiveBeginTime = getQueryDate(params.effectiveBeginTime,"-");
params.effectiveEndTime = getQueryDate(params.effectiveEndTime,"-"); params.effectiveEndTime = getQueryDate(params.effectiveEndTime,"-");
params.uploadBeginTime = getQueryDate(params.uploadBeginTime,"-"); params.uploadBeginTime = getQueryDate(params.uploadBeginTime,"-");
...@@ -60,6 +60,17 @@ taxDocumentManageModule.controller('taxDocumentListController', ...@@ -60,6 +60,17 @@ taxDocumentManageModule.controller('taxDocumentListController',
dataSource: 'localData', dataSource: 'localData',
}, },
showBorders: true, showBorders: true,
paging: {
enable: true,
pageIndex: 1,
pageSize: 100
},
pager: {
showInfo: false,
showNavigationButtons: false,
showPageSizeSelector: false,
visible: false,
},
sorting: {//排序 sorting: {//排序
ascendingText: "Sort Ascending", ascendingText: "Sort Ascending",
clearText: "Clear Sorting", clearText: "Clear Sorting",
...@@ -267,15 +278,10 @@ taxDocumentManageModule.controller('taxDocumentListController', ...@@ -267,15 +278,10 @@ taxDocumentManageModule.controller('taxDocumentListController',
}; };
$scope.getTableHeight=function(){ $scope.getTableHeight=function(){
var row_height=$("table").find("tr").height(); var row_height=$("table").find("tr").height();
if(row_height && $scope.pagingOptions.pageSize==20){ if(row_height){
return { return {
height:(row_height*12)+"px" height:(row_height*12)+"px"
} }
}else if(row_height && ($scope.pagingOptions.pageSize==50||$scope.pagingOptions.pageSize==100)){
return {
height:(row_height*12+55)+"px"
}
}else{
} }
}; };
}; };
...@@ -439,51 +445,65 @@ taxDocumentManageModule.controller('taxDocumentListController', ...@@ -439,51 +445,65 @@ taxDocumentManageModule.controller('taxDocumentListController',
}; };
var editDocFileRecord = function (fieldModel, type) { var editDocFileRecord = function (fieldModel, type) {
SweetAlert.swal({
var params = angular.copy(fieldModel); title: '提示',
// params.ownTime = params.ownTime ? params.ownTime : ""; text: $translate.instant("CoverConfirm"),
// var splitMark = params.ownTime.indexOf("-") > -1 ? "-" : "/"; type: "warning",
// params.ownTime = parseInt(params.ownTime.split(splitMark).join("")); showCancelButton: true,
Object.keys(params).forEach(function(key){ confirmButtonColor: "#DD6B55",
if(params[key] === undefined || params[key] === null) params[key] = ""; confirmButtonText: $translate.instant('Confirm'),
}); cancelButtonText: $translate.instant('Cancel'),
params.ownTime = $scope.queryOwnTime(params.ownTime, "int"); closeOnConfirm: true,
params.effectiveTime ? params.effectiveTime = $scope.getQueryDate(params.effectiveTime, "/") : delete params.effectiveTime; closeOnCancel: true
params.fileTime ? params.fileTime = $scope.getQueryDate(params.fileTime, "/") : delete params.fileTime; },
params.createTime ? params.createTime = $scope.getQueryDate(params.createTime, "/") : delete params.createTime; function (isConfirm) {
params.updateTime ? params.updateTime = $scope.getQueryDate(params.updateTime, "/") : delete params.updateTime; if (isConfirm) {
params.uploadTime ? params.uploadTime = $scope.getQueryDate(params.uploadTime, "/") : delete params.uploadTime; var params = angular.copy(fieldModel);
params.filePositionUrl = encodeURIComponent(params.filePositionUrl); // params.ownTime = params.ownTime ? params.ownTime : "";
params.auditStatus = $scope.transformAuditStatusToServer(params.auditStatus); // var splitMark = params.ownTime.indexOf("-") > -1 ? "-" : "/";
taxDocumentListService.editRecord(params).then(function (data) { // params.ownTime = parseInt(params.ownTime.split(splitMark).join(""));
if (data == true) { Object.keys(params).forEach(function(key){
if (type == 'simple') { if(params[key] === undefined || params[key] === null) params[key] = "";
SweetAlert.swal({ });
title: $translate.instant("Edited"), params.ownTime = $scope.queryOwnTime(params.ownTime, "int");
type: "success", params.effectiveTime ? params.effectiveTime = $scope.getQueryDate(params.effectiveTime, "/") : delete params.effectiveTime;
confirmButtonText: $translate.instant('Confirm'), params.fileTime ? params.fileTime = $scope.getQueryDate(params.fileTime, "/") : delete params.fileTime;
closeOnConfirm: true params.createTime ? params.createTime = $scope.getQueryDate(params.createTime, "/") : delete params.createTime;
}, params.updateTime ? params.updateTime = $scope.getQueryDate(params.updateTime, "/") : delete params.updateTime;
function (isConfirm) { params.uploadTime ? params.uploadTime = $scope.getQueryDate(params.uploadTime, "/") : delete params.uploadTime;
if (isConfirm) $scope.loadMainData(); params.filePositionUrl = encodeURIComponent(params.filePositionUrl);
}); params.auditStatus = $scope.transformAuditStatusToServer(params.auditStatus);
} else { taxDocumentListService.editRecord(params).then(function (data) {
if ($scope.multiUploadSuccessItems.length == 0) { if (data == true) {
SweetAlert.swal({ if (type == 'simple') {
title: $translate.instant("Uploaded"), SweetAlert.swal({
type: "success", title: $translate.instant("Edited"),
confirmButtonText: $translate.instant('Confirm'), type: "success",
closeOnConfirm: true confirmButtonText: $translate.instant('Confirm'),
}, closeOnConfirm: true
function (isConfirm) { },
if (isConfirm) $scope.loadMainData(); function (isConfirm) {
}); if (isConfirm) $scope.loadMainData();
} });
} else {
if ($scope.multiUploadSuccessItems.length == 0) {
SweetAlert.swal({
title: $translate.instant("Uploaded"),
type: "success",
confirmButtonText: $translate.instant('Confirm'),
closeOnConfirm: true
},
function (isConfirm) {
if (isConfirm) $scope.loadMainData();
});
}
}
} else {
SweetAlert.warning($translate.instant('SaveFail'));
}
});
} }
} else { });
SweetAlert.warning($translate.instant('SaveFail'));
}
});
$('#simpleUploadPopDialog').modal('hide'); $('#simpleUploadPopDialog').modal('hide');
$('#multiUploadPopDialog').modal('hide'); $('#multiUploadPopDialog').modal('hide');
}; };
...@@ -508,38 +528,39 @@ taxDocumentManageModule.controller('taxDocumentListController', ...@@ -508,38 +528,39 @@ taxDocumentManageModule.controller('taxDocumentListController',
} }
}); });
if(delIDs.length ==0){ if(delIDs.length ==0){
return; SweetAlert.warning($translate.instant("NeedChecked"));
}else{
SweetAlert.swal({
title: '提示',
text: $translate.instant("DeleteConfirm"),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: $translate.instant('Confirm'),
cancelButtonText: $translate.instant('Cancel'),
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
taxDocumentListService.delFileRecordItems({
"ids":delIDs
}).then(function (data) {
if (data) {
SweetAlert.swal({
title: $translate.instant("Deleted"),
type: "success",
confirmButtonText: $translate.instant('Confirm'),
closeOnConfirm: true
},
function (isConfirm) {
if (isConfirm) $scope.loadMainData();
});
}
});
}
})
} }
SweetAlert.swal({
title: '提示',
text: $translate.instant("DeleteConfirm"),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: $translate.instant('Confirm'),
cancelButtonText: $translate.instant('Cancel'),
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
taxDocumentListService.delFileRecordItems({
"ids":delIDs
}).then(function (data) {
if (data) {
SweetAlert.swal({
title: $translate.instant("Deleted"),
type: "success",
confirmButtonText: $translate.instant('Confirm'),
closeOnConfirm: true
},
function (isConfirm) {
if (isConfirm) $scope.loadMainData();
});
}
});
}
})
}; };
(function initialize() { (function initialize() {
...@@ -709,6 +730,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -709,6 +730,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
$scope.multiUploadErrorItems = []; $scope.multiUploadErrorItems = [];
$scope.multiUploadSuccessItems = []; $scope.multiUploadSuccessItems = [];
$scope.multiUploader = {}; $scope.multiUploader = {};
$scope.FileItem={isSuccess:false};
$scope.abandonFileCache = []; $scope.abandonFileCache = [];
$scope.uploadResultSuccessList = []; $scope.uploadResultSuccessList = [];
$scope.activeTab = function (activeIndex) { $scope.activeTab = function (activeIndex) {
...@@ -881,6 +903,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -881,6 +903,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
//data.id===null|| data.id===undefined,代表可以直接上传,否则属于覆盖行为 //data.id===null|| data.id===undefined,代表可以直接上传,否则属于覆盖行为
if (data.id===null|| data.id===undefined) { if (data.id===null|| data.id===undefined) {
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/add"; _fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/add";
_multiUploader.uploadItem(_i);
} else { } else {
//覆盖行为-需上传参数 //覆盖行为-需上传参数
for (var name in data) { for (var name in data) {
...@@ -894,11 +917,27 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -894,11 +917,27 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
} }
var cover_fields={}; var cover_fields={};
cover_fields[name] = data[name]; cover_fields[name] = data[name];
fileItem.formData.push(cover_fields); _fileItem.formData.push(cover_fields);
} }
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/edit"; var Cover_Confirm="'"+data.fileName+"' 记录已经存在,是否进行覆盖?";
SweetAlert.swal({
title: '提示',
text: $translate.instant(Cover_Confirm),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: $translate.instant('Confirm'),
cancelButtonText: $translate.instant('Cancel'),
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/edit";
_multiUploader.uploadItem(_i);
}
})
} }
_multiUploader.uploadItem(_i);
}); });
})(i, fileItem, editFieldModel, taxDocumentListService, $scope.multiUploader); })(i, fileItem, editFieldModel, taxDocumentListService, $scope.multiUploader);
...@@ -913,7 +952,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -913,7 +952,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
if($scope.multiUploadErrorItems.length if($scope.multiUploadErrorItems.length
|| $scope.uploadResultSuccessList.length) || $scope.uploadResultSuccessList.length)
$("#uploadResultPop").modal("show"); $("#uploadResultPop").modal("show");
$scope.FileItem.isSuccess=true;//文件上传成功标识
$('#busy-indicator-container').hide(); $('#busy-indicator-container').hide();
$scope.loadMainData(); $scope.loadMainData();
...@@ -930,7 +969,11 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -930,7 +969,11 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
$scope.multiUploadErrorItems[0].iShow = true; $scope.multiUploadErrorItems[0].iShow = true;
} }
$('#uploadResultPop').modal('hide'); $('#uploadResultPop').modal('hide');
$("#multiUploadPopDialog").modal("show"); if($scope.FileItem.isSuccess==false){
$("#multiUploadPopDialog").modal("show");
}else{
$scope.FileItem.isSuccess=false;
}
}; };
$scope.closeUploadReview = function () { $scope.closeUploadReview = function () {
...@@ -1056,6 +1099,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -1056,6 +1099,7 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
//data.id===null|| data.id===undefined,代表可以直接上传,否则属于覆盖行为 //data.id===null|| data.id===undefined,代表可以直接上传,否则属于覆盖行为
if (data.id===null|| data.id===undefined) { if (data.id===null|| data.id===undefined) {
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/add"; _fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/add";
_multiUploader.uploadItem(_i);
} else { } else {
//覆盖行为-需上传参数 //覆盖行为-需上传参数
for (var name in data) { for (var name in data) {
...@@ -1069,11 +1113,29 @@ taxDocumentManageModule.directive('multiFileUploader', function () { ...@@ -1069,11 +1113,29 @@ taxDocumentManageModule.directive('multiFileUploader', function () {
} }
var cover_fields={}; var cover_fields={};
cover_fields[name] = data[name]; cover_fields[name] = data[name];
fileItem.formData.push(cover_fields); _fileItem.formData.push(cover_fields);
} }
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/edit"; var Cover_Confirm="'"+data.fileName+"' 记录已经存在,是否进行覆盖?";
SweetAlert.swal({
title: '提示',
text: $translate.instant(Cover_Confirm),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: $translate.instant('Confirm'),
cancelButtonText: $translate.instant('Cancel'),
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
_fileItem.url = apiInterceptor.webApiHostUrl + "/taxDoc/edit";
_multiUploader.uploadItem(_i);
}
})
} }
_multiUploader.uploadItem(_i);
}); });
})(i, fileItem, editFieldModel, taxDocumentListService, $scope.multiUploader); })(i, fileItem, editFieldModel, taxDocumentListService, $scope.multiUploader);
......
...@@ -418,12 +418,12 @@ ...@@ -418,12 +418,12 @@
<!--ng-model="queryFieldModel.Duration"/>--> <!--ng-model="queryFieldModel.Duration"/>-->
<input type='text' placeholder="From" <input type='text' placeholder="From"
date-time-picker class="form-control TDL-query-val-multi" date-time-picker class="form-control TDL-query-val-multi"
data-date-format="yyyy/mm/dd" ng-model="queryFieldModel.ownBeginTime" data-date-format="yyyymm" ng-model="queryFieldModel.ownBeginTime"
data-min-view-mode="0"/> data-min-view-mode="1"/>
<input type='text' placeholder="To" <input type='text' placeholder="To"
date-time-picker class="form-control TDL-query-val-multi" date-time-picker class="form-control TDL-query-val-multi"
data-date-format="yyyy/mm/dd" ng-model="queryFieldModel.ownEndTime" data-date-format="yyyymm" ng-model="queryFieldModel.ownEndTime"
data-min-view-mode="0"/> data-min-view-mode="1"/>
<!--<input type="text" class="form-control radius3" id="period-picker2"/>--> <!--<input type="text" class="form-control radius3" id="period-picker2"/>-->
</div> </div>
...@@ -1407,8 +1407,8 @@ ...@@ -1407,8 +1407,8 @@
<span>{{item.fileName}}</span> <span>{{item.fileName}}</span>
</li> </li>
</ul> </ul>
<p ng-if="multiUploadErrorItems.length">{{multiUploadErrorItems.length}}{{'UploadFailCount'|translate}}</p> <p class="text-danger" ng-if="multiUploadErrorItems.length">{{multiUploadErrorItems.length}}{{'UploadFailCount'|translate}}</p>
<ul> <ul class="text-danger">
<li ng-repeat="item in multiUploadErrorItems"> <li ng-repeat="item in multiUploadErrorItems">
<span>{{item.fileName}}</span> <span>{{item.fileName}}</span>
</li> </li>
......
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