Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
c4b2c255
Commit
c4b2c255
authored
Apr 22, 2019
by
sam.x.wang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_mysql' of
http://code.tech.tax.asia.pwcinternal.com/root/atms
into dev_mysql
parents
7f08eb48
9c653913
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
118 additions
and
62 deletions
+118
-62
pom.xml
atms-api/pom.xml
+14
-4
ThousandConvert.java
...rc/main/java/pwc/taxtech/atms/common/ThousandConvert.java
+6
-3
AnalysisActualTaxReturnDto.java
...taxtech/atms/dto/analysis/AnalysisActualTaxReturnDto.java
+8
-1
AnalysisDriverNumDto.java
...a/pwc/taxtech/atms/dto/analysis/AnalysisDriverNumDto.java
+4
-0
EbitDataDto.java
...rc/main/java/pwc/taxtech/atms/dto/vatdto/EbitDataDto.java
+8
-2
CitDataPreviewServiceImpl.java
.../taxtech/atms/service/impl/CitDataPreviewServiceImpl.java
+1
-0
CitReportServiceImpl.java
...a/pwc/taxtech/atms/service/impl/CitReportServiceImpl.java
+2
-2
ReportGeneratorImpl.java
...wc/taxtech/atms/vat/service/impl/ReportGeneratorImpl.java
+0
-0
ReportServiceImpl.java
.../pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
+7
-34
TBM.java
...c/taxtech/atms/vat/service/impl/report/functions/TBM.java
+1
-1
AnalysisActualTaxReturn.java
...taxtech/atms/analysis/entity/AnalysisActualTaxReturn.java
+2
-0
app.json
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
+2
-1
app.json
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
+1
-0
fixed-assets-rule-enginee.ctrl.js
.../fixedAssetsRuleEnginee/fixed-assets-rule-enginee.ctrl.js
+20
-1
cit-import-asset-list.ctrl.js
...mport/cit-import-asset-list/cit-import-asset-list.ctrl.js
+2
-2
cit-preview-journal-merge-search.html
...eview-journal-merge/cit-preview-journal-merge-search.html
+6
-0
cit-preview-journal-merge.ctrl.js
...t-preview-journal-merge/cit-preview-journal-merge.ctrl.js
+2
-0
cit-calculate-data.ctrl.js
...t/reduction/cit-calculate-data/cit-calculate-data.ctrl.js
+8
-3
cit-report-view.ctrl.js
...pp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
+3
-1
import-cit-trial-balance.html
...rt/import-cit-trial-balance/import-cit-trial-balance.html
+1
-1
constant.js
atms-web/src/main/webapp/app/common/utils/constant.js
+2
-1
pwc-util.js
atms-web/src/main/webapp/app/common/utils/pwc-util.js
+7
-5
import-log.ctrl.js
...n/webapp/app/dataImport/log/import-log/import-log.ctrl.js
+11
-0
No files found.
atms-api/pom.xml
View file @
c4b2c255
...
...
@@ -443,20 +443,30 @@
<profiles>
<profile>
<id>
dev
</id>
<build>
<filters>
<filter>
src/main/resources/conf/conf_profile_dev.properties
</filter>
</filters>
</build>
<properties>
<env>
dev
</env>
</properties>
</profile>
<profile>
<id>
local
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<build>
<filters>
<filter>
src/main/resources/conf/conf_profile_dev.properties
</filter>
<filter>
src/main/resources/conf/conf_profile_dev
_local
.properties
</filter>
</filters>
</build>
<properties>
<env>
dev
</env>
</properties>
</profile>
<profile>
<id>
staging
</id>
<build>
...
...
@@ -617,7 +627,7 @@
</dependencies>
</plugin>
<!-- See: https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Maven -->
<plugin>
<plugin>
ll
<groupId>
org.sonarsource.scanner.maven
</groupId>
<artifactId>
sonar-maven-plugin
</artifactId>
<version>
3.4.0.905
</version>
...
...
atms-api/src/main/java/pwc/taxtech/atms/common/ThousandConvert.java
View file @
c4b2c255
...
...
@@ -8,6 +8,7 @@ import com.fasterxml.jackson.databind.SerializerProvider;
import
java.io.IOException
;
import
java.math.BigDecimal
;
import
java.math.RoundingMode
;
import
java.text.NumberFormat
;
import
java.text.SimpleDateFormat
;
import
java.util.Date
;
...
...
@@ -19,11 +20,13 @@ import java.util.Locale;
* version 1.0
*/
public
class
ThousandConvert
extends
JsonSerializer
<
BigDecimal
>
{
@Override
public
void
serialize
(
BigDecimal
value
,
JsonGenerator
jgen
,
SerializerProvider
arg2
)
throws
IOException
{
jgen
.
writeString
(
NumberFormat
.
getIntegerInstance
(
Locale
.
getDefault
()).
format
(
value
));
NumberFormat
integerInstance
=
NumberFormat
.
getIntegerInstance
(
Locale
.
getDefault
());
integerInstance
.
setMinimumFractionDigits
(
2
);
integerInstance
.
setRoundingMode
(
RoundingMode
.
HALF_UP
);
integerInstance
.
setGroupingUsed
(
true
);
jgen
.
writeString
(
integerInstance
.
format
(
value
));
}
}
atms-api/src/main/java/pwc/taxtech/atms/dto/analysis/AnalysisActualTaxReturnDto.java
View file @
c4b2c255
package
pwc
.
taxtech
.
atms
.
dto
.
analysis
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
pwc.taxtech.atms.common.ThousandConvert
;
import
java.math.BigDecimal
;
/**
...
...
@@ -10,15 +13,19 @@ import java.math.BigDecimal;
public
class
AnalysisActualTaxReturnDto
{
private
String
companyName
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
segment1
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
segment2
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
segment3
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
segment4
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
segment5
;
public
String
getCompanyName
()
{
...
...
atms-api/src/main/java/pwc/taxtech/atms/dto/analysis/AnalysisDriverNumDto.java
View file @
c4b2c255
package
pwc
.
taxtech
.
atms
.
dto
.
analysis
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
pwc.taxtech.atms.common.ThousandConvert
;
import
java.math.BigDecimal
;
/**
...
...
@@ -11,6 +14,7 @@ public class AnalysisDriverNumDto {
private
String
driverType
;
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
driverNum
;
public
String
getDriverType
()
{
...
...
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/EbitDataDto.java
View file @
c4b2c255
package
pwc
.
taxtech
.
atms
.
dto
.
vatdto
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
pwc.taxtech.atms.common.ThousandConvert
;
import
java.math.BigDecimal
;
/**
...
...
@@ -10,11 +13,16 @@ import java.math.BigDecimal;
* Version 1.0
**/
public
class
EbitDataDto
{
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
ebitSubtraction
;
// 1. EBIT(考虑资产减值损失)
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
specialFactors
;
//考虑特殊因素
private
String
ebitRate
;
// ebit比率 默认1%(可更改)
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
transactionAmount
;
//关联交易金额
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
sixAddTax
;
//6%增值税
@JsonSerialize
(
using
=
ThousandConvert
.
class
)
private
BigDecimal
totalAmountTax
;
// 价税合计金额
private
String
specialConsiderations
;
//特殊因素考虑
public
String
getSpecialConsiderations
()
{
...
...
@@ -26,8 +34,6 @@ public class EbitDataDto {
}
public
BigDecimal
getEbitSubtraction
()
{
return
ebitSubtraction
;
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitDataPreviewServiceImpl.java
View file @
c4b2c255
...
...
@@ -57,6 +57,7 @@ public class CitDataPreviewServiceImpl extends BaseService {
public
PageInfo
<
CitJournalAdjustDto
>
getJournalMergeData
(
CitJournalAdjustDto
citJournalAdjustDto
)
{
CitJournalEntryAdjust
citJournalEntryAdjust
=
beanUtil
.
copyProperties
(
citJournalAdjustDto
,
new
CitJournalEntryAdjust
());
List
<
String
>
orgList
=
getOrgList
(
citJournalAdjustDto
.
getProjectId
());
//判断选择的期间是否为12月,若为12月份则需查询出到13期的内容
if
(
citJournalEntryAdjust
.
getPeriodEnd
()
!=
null
&&
citJournalEntryAdjust
.
getPeriodEnd
()
%
100
==
12
)
{
citJournalEntryAdjust
.
setPeriodEnd
(
citJournalEntryAdjust
.
getPeriodEnd
()
/
100
*
100
+
13
);
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitReportServiceImpl.java
View file @
c4b2c255
...
...
@@ -234,7 +234,7 @@ public class CitReportServiceImpl extends BaseService {
setStatus
(
genJob
,
STATUS_END
);
periodJobMapper
.
updateByPrimaryKey
(
genJob
);
reportGenerator
.
citU
pdateWorkbookCaclsValueToDb
(
projectId
,
periodParam
,
workbook
,
resources
,
isMergeManualData
,
genJob
);
reportGenerator
.
u
pdateWorkbookCaclsValueToDb
(
projectId
,
periodParam
,
workbook
,
resources
,
isMergeManualData
,
genJob
);
//===============================================start validation compute==========================================================
//todo: 1.get the data from workbook, then put the data into new workbook
...
...
@@ -1704,7 +1704,7 @@ public class CitReportServiceImpl extends BaseService {
ByteArrayOutputStream
bout
=
new
ByteArrayOutputStream
();
Workbook
tWorkbook
=
null
;
try
{
tWorkbook
=
reportGenerator
.
createWorkBookByPeriodTemplate
(
dataList
);
tWorkbook
=
reportGenerator
.
create
Cit
WorkBookByPeriodTemplate
(
dataList
);
tWorkbook
.
write
(
bout
);
// FileUpload fileUpload = didiFileUploadService.uploadFile(bout.toByteArray(), "demo.xlsx", FileUploadEnum.BizSource.PERIOD_REPORT_TEMPLATE_UPLOAD.name());
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/ReportGeneratorImpl.java
View file @
c4b2c255
This diff is collapsed.
Click to expand it.
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
View file @
c4b2c255
...
...
@@ -56,6 +56,7 @@ import javax.servlet.http.HttpServletRequest;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.*
;
import
java.math.BigDecimal
;
import
java.text.NumberFormat
;
import
java.util.*
;
import
java.util.concurrent.BlockingQueue
;
import
java.util.concurrent.LinkedBlockingQueue
;
...
...
@@ -1309,6 +1310,7 @@ public class ReportServiceImpl extends BaseService {
CellDataDto
cellDataDto
=
null
;
CellDataDto
cellDataDto1
=
null
;
for
(
int
i
=
0
;
i
<
list
.
size
();
i
++)
{
if
(
i
>=
23
)
continue
;
//过滤掉多余数据
cellDataDto
=
new
CellDataDto
();
cellDataDto1
=
new
CellDataDto
();
if
(
list
.
get
(
i
).
getItemName
().
equals
(
""
))
...
...
@@ -2520,38 +2522,6 @@ public class ReportServiceImpl extends BaseService {
}
@Transactional
public
void
saveDatasource
(
String
orgId
,
Integer
period
,
Integer
specialConsiderations
,
String
ebitRate
,
OperationResultDto
<
ReportDataDto
>
operationResultDto
,
List
<
CellDataDto
>
cellDataList
)
{
EbitCellDataExample
example
=
null
;
List
<
EbitCellData
>
ebitCellDataList
=
new
ArrayList
<>();
for
(
int
i
=
37
;
i
<=
43
;
i
++)
{
example
=
new
EbitCellDataExample
();
EbitCellDataExample
.
Criteria
criteria
=
example
.
createCriteria
();
criteria
.
andOrganizationIdEqualTo
(
orgId
).
andPeriodEqualTo
(
period
).
andColEqualTo
(
1
).
andRowEqualTo
(
i
);
List
<
EbitCellData
>
ebitCellData
=
ebitCellDataMapper
.
selectByExample
(
example
);
if
(
ebitCellData
.
size
()
==
0
)
{
for
(
CellDataDto
cellDataDto
:
cellDataList
)
{
EbitCellData
ebitCellData1
=
new
EbitCellData
();
ebitCellData1
.
setId
(
idService
.
nextId
());
ebitCellData1
.
setOrganizationId
(
orgId
);
ebitCellData1
.
setPeriod
(
period
);
ebitCellData1
.
setCreateTime
(
new
Date
());
ebitCellData1
.
setCol
(
cellDataDto
.
getColumnIndex
());
ebitCellData1
.
setRow
(
cellDataDto
.
getRowIndex
());
ebitCellData1
.
setData
(
cellDataDto
.
getCellValue
());
ebitCellDataList
.
add
(
ebitCellData1
);
}
ebitCellDataList
.
add
(
switchMeth
(
i
,
new
EbitCellData
(),
operationResultDto
,
specialConsiderations
,
ebitRate
,
orgId
,
period
));
ebitCellDataMapper
.
insertBatch
(
ebitCellDataList
);
}
else
{
ebitCellDataMapper
.
updateByExampleSelective
(
switchMeth
(
i
,
new
EbitCellData
(),
operationResultDto
,
specialConsiderations
,
ebitRate
,
orgId
,
period
),
example
);
}
}
}
private
EbitCellData
switchMeth
(
Integer
i
,
EbitCellData
ebitCellData1
,
OperationResultDto
<
ReportDataDto
>
operationResultDto
,
Integer
specialConsiderations
,
String
ebitRate
,
String
orgId
,
Integer
period
)
{
switch
(
i
)
{
case
37
:
...
...
@@ -2671,6 +2641,7 @@ public class ReportServiceImpl extends BaseService {
@Autowired
private
JdbcTemplate
jdbcTemplate
;
private
CellStyle
cellStyle1
=
null
;
private
static
final
String
EBITTemplateCode
=
"VAT10086"
;
/**
* 批量导出Excel ebit利润表
...
...
@@ -2685,7 +2656,7 @@ public class ReportServiceImpl extends BaseService {
File
templateFile
;
InputStream
inputStream
=
null
;
TemplateExample
templateExample
=
new
TemplateExample
();
templateExample
.
createCriteria
().
andCodeEqualTo
(
"VAT10086"
).
andNameEqualTo
(
"VAT10086"
);
//todo 这里是利润表模板的固定code,禁止重复
templateExample
.
createCriteria
().
andCodeEqualTo
(
EBITTemplateCode
).
andNameEqualTo
(
EBITTemplateCode
);
//todo 这里是利润表模板的固定code,禁止重复
List
<
Template
>
templates1
=
templateMapper
.
selectByExample
(
templateExample
);
if
(
templates1
.
size
()
==
0
)
throw
new
Exception
(
"没有利润表模板,无法批量导出,请上传模板"
);
...
...
@@ -2885,7 +2856,9 @@ public class ReportServiceImpl extends BaseService {
sheetAt
.
getRow
(
row
).
getCell
(
col
).
setCellStyle
(
cellStyle1
);
return
sheetAt
.
getRow
(
row
).
getCell
(
col
);
}
private
static
final
String
headerEbitTitle
=
"汇总利润表"
;
public
void
insertExcelOne
(
CellStyle
headerCellType
,
XSSFWorkbook
workbook1
,
Sheet
sheetAt
,
Integer
_index
,
RequestParameterDto
requestParameterDto
)
{
headerCellType
.
setVerticalAlignment
(
VerticalAlignment
.
CENTER
);
// 垂直
headerCellType
.
setAlignment
(
HorizontalAlignment
.
CENTER
);
// 水平
...
...
@@ -2949,7 +2922,7 @@ public class ReportServiceImpl extends BaseService {
//获取利润表模板Id 利润表固定模板VAT10086
public
String
getlxbId
()
throws
Exception
{
try
{
String
sql
=
"select * from template t where t.name = '
VAT10086
' order by t.create_time desc "
;
String
sql
=
"select * from template t where t.name = '
"
+
EBITTemplateCode
+
"
' order by t.create_time desc "
;
Map
<
String
,
Object
>
stringObjectMap
=
new
HashMap
<>();
stringObjectMap
=
jdbcTemplate
.
queryForList
(
sql
).
get
(
0
);
return
stringObjectMap
.
get
(
"id"
).
toString
();
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/report/functions/TBM.java
View file @
c4b2c255
...
...
@@ -144,7 +144,7 @@ public class TBM extends FunctionBase implements FreeRefFunction {
dto
.
setAmount
(
balance
.
getEndBalBeq
().
multiply
(
new
BigDecimal
(-
1
)));
}
}
amount
=
amount
.
add
(
dto
.
getAmount
());
amount
=
amount
.
add
(
dto
.
getAmount
()
==
null
?(
new
BigDecimal
(
0
)):
dto
.
getAmount
()
);
dto
.
setPeriod
(
period
);
dto
.
setIsOnlyManualInput
(
Boolean
.
FALSE
);
dto
.
setName
(
Constant
.
DataSourceName
.
ReportDataSource
);
...
...
atms-dao/src/main/java/pwc/taxtech/atms/analysis/entity/AnalysisActualTaxReturn.java
View file @
c4b2c255
...
...
@@ -3,6 +3,8 @@ package pwc.taxtech.atms.analysis.entity;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
pwc.taxtech.atms.entity.BaseEntity
;
/**
...
...
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
View file @
c4b2c255
...
...
@@ -868,5 +868,6 @@
"NumOfBranches"
:
"分公司数量"
,
"ConditionColumnNum"
:
"Search Condition Column Num"
,
"Condition"
:
"Search Condition"
,
"RevenueTypeConfiguration"
:
"Revenue Type Config"
"RevenueTypeConfiguration"
:
"Revenue Type Config"
,
"FinancialStatementsType"
:
"Financial Statements"
}
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
View file @
c4b2c255
...
...
@@ -928,5 +928,6 @@
"ConditionColumnNum"
:
"条件列"
,
"Condition"
:
"查询条件"
,
"Cancel4Tax"
:
"取消"
,
"FinancialStatementsType"
:
"财务报表"
,
"~MustBeEndOneApp"
:
"I Must be the End One, please!"
}
atms-web/src/main/webapp/app/admin/systemConfiguration/ruleEngineeConfiguration/fixedAssetsRuleEnginee/fixed-assets-rule-enginee.ctrl.js
View file @
c4b2c255
...
...
@@ -211,7 +211,26 @@
var
m
=
data
.
year
.
substring
(
0
,
data
.
year
.
length
-
1
);
$scope
.
fixedAssetsObject
.
year
=
m
;
}
//根据当前资产的一级分类判断当前modal需要显示的标签
if
(
type
==
"1"
){
$scope
.
assetAdd
=
"StandardFixedAssetsAdd"
;
$scope
.
assetEdit
=
"StandardFixedAssetsEdit"
;
$scope
.
assetCode
=
"FixedAssetsCode"
;
$scope
.
assetName
=
"FixedAssetsName"
;
$scope
.
assetAgeLimit
=
"FixedAssetsAgeLimit"
;
}
else
if
(
type
==
"2"
)
{
$scope
.
assetAdd
=
"LongTermPendingAdd"
;
$scope
.
assetEdit
=
"LongTermPendingEdit"
;
$scope
.
assetCode
=
"LongTermPendingCode"
;
$scope
.
assetName
=
"LongTermPendingName"
;
$scope
.
assetAgeLimit
=
"LongTermPendingAgeLimit"
;
}
else
if
(
type
==
"3"
)
{
$scope
.
assetAdd
=
"IntangibleAssetsAdd"
;
$scope
.
assetEdit
=
"IntangibleAssetsEdit"
;
$scope
.
assetCode
=
"IntangibleAssetsCode"
;
$scope
.
assetName
=
"IntangibleAssetsName"
;
$scope
.
assetAgeLimit
=
"IntangibleAssetsAgeLimit"
;
}
$
(
editModalSelector
).
modal
(
'show'
);
};
$scope
.
editMapping
=
function
(
data
)
{
...
...
atms-web/src/main/webapp/app/cit/import/cit-import-asset-list/cit-import-asset-list.ctrl.js
View file @
c4b2c255
...
...
@@ -519,7 +519,7 @@
rowData
.
taxDepreciationPeriod
=
null
;
}
else
{
rowData
.
assetDetailGroupId
=
aseetDetailList
[
0
].
id
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
*
12
;
}
;
},
...
...
@@ -543,7 +543,7 @@
return
item
.
id
==
value
;
});
if
(
aseetDetailList
.
length
>
0
)
{
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
*
12
;
}
},
lookup
:
{
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge-search.html
View file @
c4b2c255
...
...
@@ -21,6 +21,12 @@
<input
class=
"form-control input-width-middle"
type=
"text"
id=
"description"
ng-model=
"queryParams.description"
/>
</td>
</tr>
<tr>
<td>
<span
translate=
"importWay"
></span>
<input
class=
"form-control input-width-middle"
type=
"text"
id=
"source"
ng-model=
"queryParams.source"
/>
</td>
</tr>
<tr
style=
"display: none"
>
<td>
<span
translate=
"orgCode"
></span>
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.ctrl.js
View file @
c4b2c255
...
...
@@ -43,6 +43,7 @@
subjectCode
:
null
,
subjectName
:
null
,
description
:
null
,
source
:
null
,
orgCode
:
null
,
orgName
:
null
,
documentDate
:
null
,
...
...
@@ -97,6 +98,7 @@
subjectCode
:
null
,
subjectName
:
null
,
description
:
null
,
source
:
null
,
orgCode
:
null
,
orgName
:
null
,
documentDate
:
null
,
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-calculate-data/cit-calculate-data.ctrl.js
View file @
c4b2c255
...
...
@@ -578,7 +578,6 @@ debugger;
var
tasks
=
JSON
.
parse
(
job
.
status
);
if
(
job
.
jobStatus
==
'End'
)
{
items
.
forEach
(
function
(
item
,
index
)
{
item
.
status
=
'completed'
;
...
...
@@ -632,10 +631,11 @@ debugger;
items
.
forEach
(
function
(
item
,
index
)
{
item
.
items
.
forEach
(
function
(
_task
,
index
)
{
var
temp
=
false
;
tasks
.
forEach
(
function
(
task
)
{
if
(
task
.
code
==
_task
.
code
)
{
temp
=
true
;
if
(
task
.
status
==
'Error'
)
{
_task
.
status
=
'error'
;
}
else
if
(
task
.
status
==
'End'
)
{
...
...
@@ -645,7 +645,12 @@ debugger;
}
_task
.
text
=
$translate
.
instant
(
_task
.
status
);
}
})
});
//此时证明该code还未开始
if
(
!
temp
){
_task
.
status
=
'unstarted'
;
_task
.
text
=
$translate
.
instant
(
_task
.
status
);
}
})
});
}
...
...
atms-web/src/main/webapp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
View file @
c4b2c255
...
...
@@ -980,7 +980,7 @@
//批量导出EXCEL
$scope
.
export
=
function
()
{
debugger
;
$
(
'#busy-indicator-container'
).
show
()
;
var
grp
=
_
.
find
(
$scope
.
$parent
.
$parent
.
groups
,
function
(
g
)
{
return
g
.
name
==
'TaxReturnType'
;
});
...
...
@@ -1028,6 +1028,7 @@ debugger;
xhr
.
send
(
JSON
.
stringify
({
reportIds
:
reportIds
}));
$
(
'#busy-indicator-container'
).
hide
();
return
;
}
...
...
@@ -1048,6 +1049,7 @@ debugger;
xhr
.
send
(
JSON
.
stringify
({
reportIds
:
reportIds
}));
$
(
'#busy-indicator-container'
).
hide
();
return
;
}
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-trial-balance/import-cit-trial-balance.html
View file @
c4b2c255
...
...
@@ -57,7 +57,7 @@
ng-click=
"downloadTemplate()"
></button>
<button
type=
"button"
class=
"btn btn-vat-primary"
style=
"float:right; margin-right: 10px;margin-left: 30px;margin-top: 8px;"
class=
"btn btn-vat-primary"
style=
"float:right; margin-right: 10px;margin-left: 30px;margin-top: 8px;
display: none
"
translate=
"AddImportBtn"
ng-click=
"importFile(importEnum.AddImport)"
></button>
...
...
atms-web/src/main/webapp/app/common/utils/constant.js
View file @
c4b2c255
...
...
@@ -66,7 +66,8 @@ constant.citReportTypeList = [
{
value
:
2
,
name
:
'QuarterlyFilingReturnType'
,
orderIndex
:
2
},
{
value
:
3
,
name
:
'WorkingPaperType'
,
orderIndex
:
3
},
{
value
:
4
,
name
:
'DocumentListType'
,
orderIndex
:
4
},
{
value
:
5
,
name
:
'OtherTaxes'
,
orderIndex
:
5
}];
{
value
:
5
,
name
:
'FinancialStatementsType'
,
orderIndex
:
5
},
{
value
:
6
,
name
:
'OtherTaxes'
,
orderIndex
:
6
}];
constant
.
cfReportTypeList
=
[
{
value
:
1
,
name
:
'企业所得税预算'
},
...
...
atms-web/src/main/webapp/app/common/utils/pwc-util.js
View file @
c4b2c255
...
...
@@ -1181,7 +1181,9 @@
/------------------------------------------------kevin insert -----------------------------------/
PWC
.
downloadCallBack
=
function
(
data
,
status
,
headers
,
fileName
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
var
contentType
=
octetStreamMime
;
if
(
headers
)
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
if
(
window
.
navigator
.
msSaveBlob
)
{
var
blob
=
new
Blob
([
data
],
{
type
:
contentType
...
...
@@ -1214,7 +1216,7 @@
scope
.
selectOrgOptions
=
{
displayExpr
:
'name'
,
valueExpr
:
'id'
,
width
:
function
()
{
width
:
function
()
{
return
window
.
innerWidth
/
4.5
;
},
bindingOptions
:
{
...
...
@@ -1227,10 +1229,10 @@
searchEnabled
:
true
,
noDataText
:
translate
.
instant
(
'RevenueNoOrgData'
),
showSelectionControls
:
true
,
visible
:
true
,
deferRendering
:
false
visible
:
true
,
deferRendering
:
false
};
if
(
exp
)
if
(
exp
)
_
.
extend
(
scope
.
selectOrgOptions
,
exp
);
};
...
...
atms-web/src/main/webapp/app/dataImport/log/import-log/import-log.ctrl.js
View file @
c4b2c255
...
...
@@ -107,6 +107,17 @@
allowHeaderFiltering
:
false
,
width
:
'15%'
,
caption
:
$translate
.
instant
(
'Status'
)
},
{
dataField
:
"operator"
,
allowHeaderFiltering
:
false
,
width
:
'10%'
,
caption
:
$translate
.
instant
(
'Creator'
)
},{
dataField
:
"createTime"
,
dataType
:
"date"
,
format
:
"yyyy-MM-dd HH:mm:ss"
,
width
:
'15%'
,
caption
:
$translate
.
instant
(
'OperateTime'
)
}
],
onContentReady
:
function
(
e
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment