Commit f7799716 authored by sam.x.wang's avatar sam.x.wang

Merge branch 'dev_wzk_phase1' of http://code.tech.tax.asia.pwcinternal.com/root/atms into sam_p1

parents 96b3ed4d fa7ffc0d
...@@ -164,7 +164,7 @@ public class ReportUploadService extends BaseService { ...@@ -164,7 +164,7 @@ public class ReportUploadService extends BaseService {
FileTypesExample fileTypesExample = new FileTypesExample(); FileTypesExample fileTypesExample = new FileTypesExample();
fileTypesExample.createCriteria().andFileTypeEqualTo("增值税及附加税费计算底稿"); fileTypesExample.createCriteria().andFileTypeEqualTo("增值税及附加税费计算底稿");
List<FileTypes> fileTypesList = fileTypesMapper.selectByExample(fileTypesExample); List<FileTypes> fileTypesList = fileTypesMapper.selectByExample(fileTypesExample);
if(CollectionUtils.isNotEmpty(dataList)){ if(CollectionUtils.isNotEmpty(fileTypesList)){
taxDocument.setFileAttr(fileTypesList.get(0).getFileAttr()); taxDocument.setFileAttr(fileTypesList.get(0).getFileAttr());
taxDocument.setFileTypeId(fileTypesList.get(0).getId()); taxDocument.setFileTypeId(fileTypesList.get(0).getId());
} }
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
$scope.ledgerCurrencyCodeFirst = itemFirst.ledgerCurrencyCode; $scope.ledgerCurrencyCodeFirst = itemFirst.ledgerCurrencyCode;
$scope.ledgerStatusFirst = itemFirst.status; $scope.ledgerStatusFirst = itemFirst.status;
//TODO //TODO
$scope.importDate = $filter('date')(data.list[0].updateTime, "yyyy-MM-dd hh:mm:ss"); $scope.importDate = $filter('date')(data.list[0].updateTime, "yyyy-MM-dd HH:mm:ss");
} }
$scope.gridOptions.data = data.list; $scope.gridOptions.data = data.list;
$scope.queryIncomeInvoiceItemResult.pageInfo = data; $scope.queryIncomeInvoiceItemResult.pageInfo = data;
......
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
if(data.size>0){ if(data.size>0){
$scope.currencyCode = data.list[0].ledgerCurrencyCode; $scope.currencyCode = data.list[0].ledgerCurrencyCode;
$scope.status = data.list[0].status; $scope.status = data.list[0].status;
$scope.importDate = $filter('date')(data.list[0].updateTime, "yyyy-MM-dd hh:mm:ss"); $scope.importDate = $filter('date')(data.list[0].updateTime, "yyyy-MM-dd HH:mm:ss");
} }
} }
}); });
......
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