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
9c653913
Commit
9c653913
authored
Apr 22, 2019
by
kevin
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
d17a613b
6c293162
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
123 additions
and
68 deletions
+123
-68
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
TBM.java
...c/taxtech/atms/vat/service/impl/report/functions/TBM.java
+1
-1
app.json
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
+2
-1
taxDocumentList.json
...main/webapp/app-resources/i18n/en-us/taxDocumentList.json
+30
-27
app.json
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
+1
-0
taxDocumentList.json
...main/webapp/app-resources/i18n/zh-CN/taxDocumentList.json
+29
-26
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
import-log.ctrl.js
...n/webapp/app/dataImport/log/import-log/import-log.ctrl.js
+11
-0
app-usr-operate-log.ctrl.js
...framework/app-usr-operate-log/app-usr-operate-log.ctrl.js
+1
-1
app-usr-operate-log.html
...pp/framework/app-usr-operate-log/app-usr-operate-log.html
+1
-1
tax-document-list.ctrl.js
...ocumentManage/tax-document-list/tax-document-list.ctrl.js
+0
-0
tax-document-list.html
...axDocumentManage/tax-document-list/tax-document-list.html
+0
-0
No files found.
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitDataPreviewServiceImpl.java
View file @
9c653913
...
@@ -57,6 +57,7 @@ public class CitDataPreviewServiceImpl extends BaseService {
...
@@ -57,6 +57,7 @@ public class CitDataPreviewServiceImpl extends BaseService {
public
PageInfo
<
CitJournalAdjustDto
>
getJournalMergeData
(
CitJournalAdjustDto
citJournalAdjustDto
)
{
public
PageInfo
<
CitJournalAdjustDto
>
getJournalMergeData
(
CitJournalAdjustDto
citJournalAdjustDto
)
{
CitJournalEntryAdjust
citJournalEntryAdjust
=
beanUtil
.
copyProperties
(
citJournalAdjustDto
,
new
CitJournalEntryAdjust
());
CitJournalEntryAdjust
citJournalEntryAdjust
=
beanUtil
.
copyProperties
(
citJournalAdjustDto
,
new
CitJournalEntryAdjust
());
List
<
String
>
orgList
=
getOrgList
(
citJournalAdjustDto
.
getProjectId
());
List
<
String
>
orgList
=
getOrgList
(
citJournalAdjustDto
.
getProjectId
());
//判断选择的期间是否为12月,若为12月份则需查询出到13期的内容
if
(
citJournalEntryAdjust
.
getPeriodEnd
()
!=
null
&&
citJournalEntryAdjust
.
getPeriodEnd
()
%
100
==
12
)
{
if
(
citJournalEntryAdjust
.
getPeriodEnd
()
!=
null
&&
citJournalEntryAdjust
.
getPeriodEnd
()
%
100
==
12
)
{
citJournalEntryAdjust
.
setPeriodEnd
(
citJournalEntryAdjust
.
getPeriodEnd
()
/
100
*
100
+
13
);
citJournalEntryAdjust
.
setPeriodEnd
(
citJournalEntryAdjust
.
getPeriodEnd
()
/
100
*
100
+
13
);
}
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitReportServiceImpl.java
View file @
9c653913
...
@@ -234,7 +234,7 @@ public class CitReportServiceImpl extends BaseService {
...
@@ -234,7 +234,7 @@ public class CitReportServiceImpl extends BaseService {
setStatus
(
genJob
,
STATUS_END
);
setStatus
(
genJob
,
STATUS_END
);
periodJobMapper
.
updateByPrimaryKey
(
genJob
);
periodJobMapper
.
updateByPrimaryKey
(
genJob
);
reportGenerator
.
citU
pdateWorkbookCaclsValueToDb
(
projectId
,
periodParam
,
workbook
,
resources
,
isMergeManualData
,
genJob
);
reportGenerator
.
u
pdateWorkbookCaclsValueToDb
(
projectId
,
periodParam
,
workbook
,
resources
,
isMergeManualData
,
genJob
);
//===============================================start validation compute==========================================================
//===============================================start validation compute==========================================================
//todo: 1.get the data from workbook, then put the data into new workbook
//todo: 1.get the data from workbook, then put the data into new workbook
...
@@ -1704,7 +1704,7 @@ public class CitReportServiceImpl extends BaseService {
...
@@ -1704,7 +1704,7 @@ public class CitReportServiceImpl extends BaseService {
ByteArrayOutputStream
bout
=
new
ByteArrayOutputStream
();
ByteArrayOutputStream
bout
=
new
ByteArrayOutputStream
();
Workbook
tWorkbook
=
null
;
Workbook
tWorkbook
=
null
;
try
{
try
{
tWorkbook
=
reportGenerator
.
createWorkBookByPeriodTemplate
(
dataList
);
tWorkbook
=
reportGenerator
.
create
Cit
WorkBookByPeriodTemplate
(
dataList
);
tWorkbook
.
write
(
bout
);
tWorkbook
.
write
(
bout
);
// FileUpload fileUpload = didiFileUploadService.uploadFile(bout.toByteArray(), "demo.xlsx", FileUploadEnum.BizSource.PERIOD_REPORT_TEMPLATE_UPLOAD.name());
// 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 @
9c653913
This diff is collapsed.
Click to expand it.
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/report/functions/TBM.java
View file @
9c653913
...
@@ -144,7 +144,7 @@ public class TBM extends FunctionBase implements FreeRefFunction {
...
@@ -144,7 +144,7 @@ public class TBM extends FunctionBase implements FreeRefFunction {
dto
.
setAmount
(
balance
.
getEndBalBeq
().
multiply
(
new
BigDecimal
(-
1
)));
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
.
setPeriod
(
period
);
dto
.
setIsOnlyManualInput
(
Boolean
.
FALSE
);
dto
.
setIsOnlyManualInput
(
Boolean
.
FALSE
);
dto
.
setName
(
Constant
.
DataSourceName
.
ReportDataSource
);
dto
.
setName
(
Constant
.
DataSourceName
.
ReportDataSource
);
...
...
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
View file @
9c653913
...
@@ -868,5 +868,6 @@
...
@@ -868,5 +868,6 @@
"NumOfBranches"
:
"分公司数量"
,
"NumOfBranches"
:
"分公司数量"
,
"ConditionColumnNum"
:
"Search Condition Column Num"
,
"ConditionColumnNum"
:
"Search Condition Column Num"
,
"Condition"
:
"Search Condition"
,
"Condition"
:
"Search Condition"
,
"RevenueTypeConfiguration"
:
"Revenue Type Config"
"RevenueTypeConfiguration"
:
"Revenue Type Config"
,
"FinancialStatementsType"
:
"Financial Statements"
}
}
atms-web/src/main/webapp/app-resources/i18n/en-us/taxDocumentList.json
View file @
9c653913
{
{
"Document
Attr"
:
"DocumentAttr
"
,
"Document
Attribute"
:
"Document Attribute
"
,
"Document
Type"
:
"Document
Type"
,
"Document
Type"
:
"Document
Type"
,
"Document
Name"
:
"Document
Name"
,
"Document
Name"
:
"Document
Name"
,
"IsRequired"
:
"Is Required"
,
"IsRequired"
:
"Is Required"
,
"PleaseChecksRequired"
:
"Please Checks Required"
,
"PleaseChecksRequired"
:
"Please Checks Required"
,
"Business
Line"
:
"Business
Line"
,
"Business
Line"
:
"Business
Line"
,
"Co
rporationName"
:
"Corporation
Name"
,
"Co
mpany Name"
:
"Company
Name"
,
"
AvailabilityDate"
:
"Availability
Date"
,
"
Effective_Date"
:
"Effective_
Date"
,
"
Duration"
:
"Duration
"
,
"
Period"
:
"Period
"
,
"Due
Date"
:
"Due
Date"
,
"Due
Date"
:
"Due
Date"
,
"Tax
Type"
:
"Tax
Type"
,
"Tax
Type"
:
"Tax
Type"
,
"
EntityIndex"
:
"Entity
Index"
,
"
Storage Index"
:
"Storage
Index"
,
"
EntityStorageLocation"
:
"EntityStorage
Location"
,
"
Storage Location"
:
"Storage
Location"
,
"
EntityCustodian"
:
"Entity
Custodian"
,
"
Custodian"
:
"
Custodian"
,
"Approval
Status"
:
"Approval
Status"
,
"Approval
Status"
:
"Approval
Status"
,
"ApprovalPass"
:
"ApprovalPass"
,
"ApprovalPass"
:
"ApprovalPass"
,
"ApprovalReject"
:
"ApprovalReject"
,
"ApprovalReject"
:
"ApprovalReject"
,
"ApprovalStandby"
:
"ApprovalStandby"
,
"ApprovalStandby"
:
"ApprovalStandby"
,
"Upload
Date"
:
"Upload
Date"
,
"Upload
Date"
:
"Upload
Date"
,
"Creator"
:
"Creator"
,
"Creator"
:
"Creator"
,
"Remarks"
:
"Remarks"
,
"Remarks"
:
"Remarks"
,
"More
Fields"
:
"MoreFields
"
,
"More
"
:
"More
"
,
"Less
Fields"
:
"LessField
s"
,
"Less
"
:
"Les
s"
,
"Search"
:
"Search"
,
"Search"
:
"Search"
,
"Reset"
:
"Reset"
,
"Reset"
:
"Reset"
,
"Preview"
:
"Preview"
,
"Preview"
:
"Preview"
,
"Del
Record"
:
"Del
Record"
,
"Del
ete Record"
:
"Delete
Record"
,
"Create
Record"
:
"Create
Record"
,
"Create
Record"
:
"Create
Record"
,
"Export
Table"
:
"ExportTable
"
,
"Export
Record"
:
"Export Record
"
,
"Download
Attachment"
:
"Download
Attachment"
,
"Download
Attachment"
:
"Download
Attachment"
,
"Log"
:
"Log"
,
"Log"
:
"Log"
,
"Multi
Upload"
:
"Multi
Upload"
,
"Multi
ple File Upload"
:
"Multiple File
Upload"
,
"MultiUploadFailList"
:
"MultiUploadFailList"
,
"MultiUploadFailList"
:
"MultiUploadFailList"
,
"UnFile"
:
"UnFile"
,
"UnFile"
:
"UnFile"
,
"UnRecord"
:
"UnRecord"
,
"UnRecord"
:
"UnRecord"
,
...
@@ -44,18 +44,20 @@
...
@@ -44,18 +44,20 @@
"Edited"
:
"Edited"
,
"Edited"
:
"Edited"
,
"Created"
:
"Created"
,
"Created"
:
"Created"
,
"CoverConfirm"
:
"CoverConfirm"
,
"CoverConfirm"
:
"CoverConfirm"
,
"No
Data"
:
"No
Data"
,
"No
Data"
:
"No
Data"
,
"Please
Selected"
:
"PleaseSelected
"
,
"Please
Select"
:
"Please Select
"
,
"Please
Type"
:
"Please
Type"
,
"Please
Type"
:
"Please
Type"
,
"Tips"
:
"Tips"
,
"Tips"
:
"Tips"
,
"EntityStorageDescription"
:
"EntityStorageDescription"
,
"EntityStorageDescription"
:
"EntityStorageDescription"
,
"multiUpload"
:
"multiUpload"
,
"multiUpload"
:
"multiUpload"
,
"UploadAttach"
:
"UploadAttach"
,
"UploadAttach"
:
"UploadAttach"
,
"Edit"
:
"Edit"
,
"Edit"
:
"Edit"
,
"Document
Path"
:
"Document
Path"
,
"Document
Path"
:
"Document
Path"
,
"PreviewFile"
:
"PreviewFile"
,
"PreviewFile"
:
"PreviewFile"
,
"UploadSuccessCount"
:
"UploadSuccessCount"
,
"UploadSuccessCount"
:
"UploadSuccessCount"
,
"UploadFailCount"
:
"UploadFailCount"
,
"UploadFailCount"
:
"UploadFailCount"
,
"DeleteConfirm"
:
"DeleteConfirm"
,
"Confirm delete"
:
"Confirm delete"
,
"FileTimeDateRangeError"
:
"FileTimeDateRangeError"
"FileTimeDateRangeError"
:
"FileTimeDateRangeError"
,
"Warning"
:
"Warning"
,
"Page {0} of {1} ({2} items)"
:
"Page {0} of {1} ({2} items)"
}
}
\ No newline at end of file
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
View file @
9c653913
...
@@ -928,5 +928,6 @@
...
@@ -928,5 +928,6 @@
"ConditionColumnNum"
:
"条件列"
,
"ConditionColumnNum"
:
"条件列"
,
"Condition"
:
"查询条件"
,
"Condition"
:
"查询条件"
,
"Cancel4Tax"
:
"取消"
,
"Cancel4Tax"
:
"取消"
,
"FinancialStatementsType"
:
"财务报表"
,
"~MustBeEndOneApp"
:
"I Must be the End One, please!"
"~MustBeEndOneApp"
:
"I Must be the End One, please!"
}
}
atms-web/src/main/webapp/app-resources/i18n/zh-CN/taxDocumentList.json
View file @
9c653913
{
{
"Document
Attr
"
:
"档案属性"
,
"Document
Attribute
"
:
"档案属性"
,
"Document"
:
"档案"
,
"Document"
:
"档案"
,
"IsRequired"
:
"为必填字段,不能为空,请检查"
,
"IsRequired"
:
"为必填字段,不能为空,请检查"
,
"PleaseChecksRequired"
:
"请检查必填字段"
,
"PleaseChecksRequired"
:
"请检查必填字段"
,
"DocumentType"
:
"档案类型"
,
"Document
Type"
:
"档案类型"
,
"DocumentName"
:
"档案名称"
,
"Document
Name"
:
"档案名称"
,
"BusinessLine"
:
"业务线"
,
"Business
Line"
:
"业务线"
,
"Co
rporation
Name"
:
"公司名称"
,
"Co
mpany
Name"
:
"公司名称"
,
"
Availability
Date"
:
"文件生效日期"
,
"
Effective_
Date"
:
"文件生效日期"
,
"
Duration
"
:
"所属期间"
,
"
Period
"
:
"所属期间"
,
"DueDate"
:
"到期日"
,
"Due
Date"
:
"到期日"
,
"TaxType"
:
"税种"
,
"Tax
Type"
:
"税种"
,
"
Entity
Index"
:
"实物索引号"
,
"
Storage
Index"
:
"实物索引号"
,
"
EntityStorage
Location"
:
"实物存放地点"
,
"
Storage
Location"
:
"实物存放地点"
,
"
Entity
Custodian"
:
"保管人"
,
"Custodian"
:
"保管人"
,
"ApprovalStatus"
:
"审批状态"
,
"Approval
Status"
:
"审批状态"
,
"ApprovalPass"
:
"审批通过"
,
"ApprovalPass"
:
"审批通过"
,
"ApprovalReject"
:
"拒绝审批"
,
"ApprovalReject"
:
"拒绝审批"
,
"ApprovalStandby"
:
"待审批"
,
"ApprovalStandby"
:
"待审批"
,
"UploadDate"
:
"上传日期"
,
"Upload
Date"
:
"上传日期"
,
"Creator"
:
"创建人"
,
"Creator"
:
"创建人"
,
"Remarks"
:
"档案备注"
,
"Remarks"
:
"档案备注"
,
"More
Fields
"
:
"查看更多"
,
"More"
:
"查看更多"
,
"Less
Fields
"
:
"收起"
,
"Less"
:
"收起"
,
"Search"
:
"查询"
,
"Search"
:
"查询"
,
"Reset"
:
"重置"
,
"Reset"
:
"重置"
,
"Preview"
:
"预览"
,
"Preview"
:
"预览"
,
"DelRecord"
:
"删除记录"
,
"Del
ete
Record"
:
"删除记录"
,
"CreateRecord"
:
"新建记录"
,
"Create
Record"
:
"新建记录"
,
"Export
Table
"
:
"导出列表"
,
"Export
Record
"
:
"导出列表"
,
"DownloadAttachment"
:
"下载附件"
,
"Download
Attachment"
:
"下载附件"
,
"Log"
:
"日志"
,
"Log"
:
"日志"
,
"MultiUpload"
:
"批量上传"
,
"Multi
ple File
Upload"
:
"批量上传"
,
"MultiUploadFailList"
:
"批量上传失败列表"
,
"MultiUploadFailList"
:
"批量上传失败列表"
,
"UnFile"
:
"未支持的文件类型"
,
"UnFile"
:
"未支持的文件类型"
,
"UnRecord"
:
"当前记录没有附件信息"
,
"UnRecord"
:
"当前记录没有附件信息"
,
...
@@ -46,17 +46,19 @@
...
@@ -46,17 +46,19 @@
"Created"
:
"新建成功"
,
"Created"
:
"新建成功"
,
"CoverConfirm"
:
"当前记录已经存在,是否进行覆盖?"
,
"CoverConfirm"
:
"当前记录已经存在,是否进行覆盖?"
,
"NoData"
:
"当前无数据可下载"
,
"NoData"
:
"当前无数据可下载"
,
"Please
Selected
"
:
"请选择"
,
"Please
Select
"
:
"请选择"
,
"PleaseType"
:
"请输入"
,
"Please
Type"
:
"请输入"
,
"Tips"
:
"提示讯息"
,
"Tips"
:
"提示讯息"
,
"EntityStorageDescription"
:
"请将实物档案存放地址精确到某个档案柜"
,
"EntityStorageDescription"
:
"请将实物档案存放地址精确到某个档案柜"
,
"multiUpload"
:
"批量上传"
,
"multiUpload"
:
"批量上传"
,
"UploadAttach"
:
"上传附件"
,
"UploadAttach"
:
"上传附件"
,
"Edit"
:
"编辑"
,
"Edit"
:
"编辑"
,
"DocumentPath"
:
"档案路径"
,
"Document
Path"
:
"档案路径"
,
"PreviewFile"
:
"预览文件"
,
"PreviewFile"
:
"预览文件"
,
"UploadSuccessCount"
:
"个档案上传成功:"
,
"UploadSuccessCount"
:
"个档案上传成功:"
,
"UploadFailCount"
:
"个档案上传失败:"
,
"UploadFailCount"
:
"个档案上传失败:"
,
"DeleteConfirm"
:
"是否确认删除记录?"
,
"Confirm delete"
:
"是否确认删除记录?"
,
"FileTimeDateRangeError"
:
"'到期日'不能早于'文件生效日期'"
"FileTimeDateRangeError"
:
"'到期日'不能早于'文件生效日期'"
,
"Warning"
:
"提示"
,
"Page {0} of {1} ({2} items)"
:
"当前 {0}页 /共 {1}页 ({2} 项)"
}
}
\ No newline at end of file
atms-web/src/main/webapp/app/admin/systemConfiguration/ruleEngineeConfiguration/fixedAssetsRuleEnginee/fixed-assets-rule-enginee.ctrl.js
View file @
9c653913
...
@@ -211,7 +211,26 @@
...
@@ -211,7 +211,26 @@
var
m
=
data
.
year
.
substring
(
0
,
data
.
year
.
length
-
1
);
var
m
=
data
.
year
.
substring
(
0
,
data
.
year
.
length
-
1
);
$scope
.
fixedAssetsObject
.
year
=
m
;
$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'
);
$
(
editModalSelector
).
modal
(
'show'
);
};
};
$scope
.
editMapping
=
function
(
data
)
{
$scope
.
editMapping
=
function
(
data
)
{
...
...
atms-web/src/main/webapp/app/cit/import/cit-import-asset-list/cit-import-asset-list.ctrl.js
View file @
9c653913
...
@@ -519,7 +519,7 @@
...
@@ -519,7 +519,7 @@
rowData
.
taxDepreciationPeriod
=
null
;
rowData
.
taxDepreciationPeriod
=
null
;
}
else
{
}
else
{
rowData
.
assetDetailGroupId
=
aseetDetailList
[
0
].
id
;
rowData
.
assetDetailGroupId
=
aseetDetailList
[
0
].
id
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
*
12
;
}
}
;
;
},
},
...
@@ -543,7 +543,7 @@
...
@@ -543,7 +543,7 @@
return
item
.
id
==
value
;
return
item
.
id
==
value
;
});
});
if
(
aseetDetailList
.
length
>
0
)
{
if
(
aseetDetailList
.
length
>
0
)
{
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
;
rowData
.
taxDepreciationPeriod
=
aseetDetailList
[
0
].
groupYear
*
12
;
}
}
},
},
lookup
:
{
lookup
:
{
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge-search.html
View file @
9c653913
...
@@ -21,6 +21,12 @@
...
@@ -21,6 +21,12 @@
<input
class=
"form-control input-width-middle"
type=
"text"
id=
"description"
ng-model=
"queryParams.description"
/>
<input
class=
"form-control input-width-middle"
type=
"text"
id=
"description"
ng-model=
"queryParams.description"
/>
</td>
</td>
</tr>
</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"
>
<tr
style=
"display: none"
>
<td>
<td>
<span
translate=
"orgCode"
></span>
<span
translate=
"orgCode"
></span>
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.ctrl.js
View file @
9c653913
...
@@ -43,6 +43,7 @@
...
@@ -43,6 +43,7 @@
subjectCode
:
null
,
subjectCode
:
null
,
subjectName
:
null
,
subjectName
:
null
,
description
:
null
,
description
:
null
,
source
:
null
,
orgCode
:
null
,
orgCode
:
null
,
orgName
:
null
,
orgName
:
null
,
documentDate
:
null
,
documentDate
:
null
,
...
@@ -97,6 +98,7 @@
...
@@ -97,6 +98,7 @@
subjectCode
:
null
,
subjectCode
:
null
,
subjectName
:
null
,
subjectName
:
null
,
description
:
null
,
description
:
null
,
source
:
null
,
orgCode
:
null
,
orgCode
:
null
,
orgName
:
null
,
orgName
:
null
,
documentDate
:
null
,
documentDate
:
null
,
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-calculate-data/cit-calculate-data.ctrl.js
View file @
9c653913
...
@@ -578,7 +578,6 @@ debugger;
...
@@ -578,7 +578,6 @@ debugger;
var
tasks
=
JSON
.
parse
(
job
.
status
);
var
tasks
=
JSON
.
parse
(
job
.
status
);
if
(
job
.
jobStatus
==
'End'
)
{
if
(
job
.
jobStatus
==
'End'
)
{
items
.
forEach
(
function
(
item
,
index
)
{
items
.
forEach
(
function
(
item
,
index
)
{
item
.
status
=
'completed'
;
item
.
status
=
'completed'
;
...
@@ -632,10 +631,11 @@ debugger;
...
@@ -632,10 +631,11 @@ debugger;
items
.
forEach
(
function
(
item
,
index
)
{
items
.
forEach
(
function
(
item
,
index
)
{
item
.
items
.
forEach
(
function
(
_task
,
index
)
{
item
.
items
.
forEach
(
function
(
_task
,
index
)
{
var
temp
=
false
;
tasks
.
forEach
(
function
(
task
)
{
tasks
.
forEach
(
function
(
task
)
{
if
(
task
.
code
==
_task
.
code
)
{
if
(
task
.
code
==
_task
.
code
)
{
temp
=
true
;
if
(
task
.
status
==
'Error'
)
{
if
(
task
.
status
==
'Error'
)
{
_task
.
status
=
'error'
;
_task
.
status
=
'error'
;
}
else
if
(
task
.
status
==
'End'
)
{
}
else
if
(
task
.
status
==
'End'
)
{
...
@@ -645,7 +645,12 @@ debugger;
...
@@ -645,7 +645,12 @@ debugger;
}
}
_task
.
text
=
$translate
.
instant
(
_task
.
status
);
_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 @
9c653913
...
@@ -980,7 +980,7 @@
...
@@ -980,7 +980,7 @@
//批量导出EXCEL
//批量导出EXCEL
$scope
.
export
=
function
()
{
$scope
.
export
=
function
()
{
debugger
;
$
(
'#busy-indicator-container'
).
show
()
;
var
grp
=
_
.
find
(
$scope
.
$parent
.
$parent
.
groups
,
function
(
g
)
{
var
grp
=
_
.
find
(
$scope
.
$parent
.
$parent
.
groups
,
function
(
g
)
{
return
g
.
name
==
'TaxReturnType'
;
return
g
.
name
==
'TaxReturnType'
;
});
});
...
@@ -1028,6 +1028,7 @@ debugger;
...
@@ -1028,6 +1028,7 @@ debugger;
xhr
.
send
(
JSON
.
stringify
({
xhr
.
send
(
JSON
.
stringify
({
reportIds
:
reportIds
reportIds
:
reportIds
}));
}));
$
(
'#busy-indicator-container'
).
hide
();
return
;
return
;
}
}
...
@@ -1048,6 +1049,7 @@ debugger;
...
@@ -1048,6 +1049,7 @@ debugger;
xhr
.
send
(
JSON
.
stringify
({
xhr
.
send
(
JSON
.
stringify
({
reportIds
:
reportIds
reportIds
:
reportIds
}));
}));
$
(
'#busy-indicator-container'
).
hide
();
return
;
return
;
}
}
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-trial-balance/import-cit-trial-balance.html
View file @
9c653913
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
ng-click=
"downloadTemplate()"
></button>
ng-click=
"downloadTemplate()"
></button>
<button
type=
"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"
translate=
"AddImportBtn"
ng-click=
"importFile(importEnum.AddImport)"
></button>
ng-click=
"importFile(importEnum.AddImport)"
></button>
...
...
atms-web/src/main/webapp/app/common/utils/constant.js
View file @
9c653913
...
@@ -66,7 +66,8 @@ constant.citReportTypeList = [
...
@@ -66,7 +66,8 @@ constant.citReportTypeList = [
{
value
:
2
,
name
:
'QuarterlyFilingReturnType'
,
orderIndex
:
2
},
{
value
:
2
,
name
:
'QuarterlyFilingReturnType'
,
orderIndex
:
2
},
{
value
:
3
,
name
:
'WorkingPaperType'
,
orderIndex
:
3
},
{
value
:
3
,
name
:
'WorkingPaperType'
,
orderIndex
:
3
},
{
value
:
4
,
name
:
'DocumentListType'
,
orderIndex
:
4
},
{
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
=
[
constant
.
cfReportTypeList
=
[
{
value
:
1
,
name
:
'企业所得税预算'
},
{
value
:
1
,
name
:
'企业所得税预算'
},
...
...
atms-web/src/main/webapp/app/dataImport/log/import-log/import-log.ctrl.js
View file @
9c653913
...
@@ -107,6 +107,17 @@
...
@@ -107,6 +107,17 @@
allowHeaderFiltering
:
false
,
allowHeaderFiltering
:
false
,
width
:
'15%'
,
width
:
'15%'
,
caption
:
$translate
.
instant
(
'Status'
)
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
)
{
onContentReady
:
function
(
e
)
{
...
...
atms-web/src/main/webapp/app/framework/app-usr-operate-log/app-usr-operate-log.ctrl.js
View file @
9c653913
...
@@ -78,7 +78,7 @@ frameworkModule.controller('appUsrOperateLogController',
...
@@ -78,7 +78,7 @@ frameworkModule.controller('appUsrOperateLogController',
},
},
pager
:
{
pager
:
{
allowedPageSizes
:
5
,
allowedPageSizes
:
5
,
infoText
:
"当前 {0}页 /共 {1}页 ({2} 项)"
,
infoText
:
$translate
.
instant
(
'Page {0} of {1} ({2} items)'
)
,
showInfo
:
true
,
showInfo
:
true
,
showNavigationButtons
:
true
,
showNavigationButtons
:
true
,
showPageSizeSelector
:
true
,
showPageSizeSelector
:
true
,
...
...
atms-web/src/main/webapp/app/framework/app-usr-operate-log/app-usr-operate-log.html
View file @
9c653913
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
<
button
class
=
"btn log-export-btn"
ng
-
click
=
"exportTableData()"
>
<
button
class
=
"btn log-export-btn"
ng
-
click
=
"exportTableData()"
>
<
i
class
=
"fa fa-file-excel-o"
><
/i
>
<
i
class
=
"fa fa-file-excel-o"
><
/i
>
<
span
translate
=
"Export
Table
"
><
/span
>
<
span
translate
=
"Export
Record
"
><
/span
>
<
/button
>
<
/button
>
<
div
dx
-
data
-
grid
=
"dataGridOptions"
><
/div
>
<
div
dx
-
data
-
grid
=
"dataGridOptions"
><
/div
>
<
/div
>
<
/div
>
...
...
atms-web/src/main/webapp/app/taxDocumentManage/tax-document-list/tax-document-list.ctrl.js
View file @
9c653913
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/taxDocumentManage/tax-document-list/tax-document-list.html
View file @
9c653913
This diff is collapsed.
Click to expand it.
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