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
0790718a
Commit
0790718a
authored
Apr 17, 2019
by
zhkwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CIT日记账预览bug修改
parent
d72fbba6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
CitImportExcelServiceImpl.java
.../taxtech/atms/service/impl/CitImportExcelServiceImpl.java
+3
-3
CitJournalAdjustExtendsMapper.xml
...axtech/atms/dao/extends/CitJournalAdjustExtendsMapper.xml
+2
-2
No files found.
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitImportExcelServiceImpl.java
View file @
0790718a
...
...
@@ -286,9 +286,9 @@ public class CitImportExcelServiceImpl extends BaseService {
}
citJournal
.
setAttribute3
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
38
)).
toString
());
citJournal
.
setAttribute4
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
39
)).
toString
());
citJournal
.
setAttribute5
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
40
)).
toString
());
citJournal
.
setAttribute6
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
41
)).
toString
());
citJournal
.
setAttribute7
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
42
)).
toString
());
citJournal
.
setAttribute5
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
40
)).
toString
()
.
replace
(
".0"
,
""
)
);
citJournal
.
setAttribute6
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
41
)).
toString
()
.
replace
(
".0"
,
""
)
);
citJournal
.
setAttribute7
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
42
)).
toString
()
.
replace
(
".0"
,
""
)
);
citJournal
.
setAttribute8
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
43
)).
toString
());
citJournal
.
setAttribute9
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
44
)).
toString
());
citJournal
.
setAttribute10
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
45
)).
toString
());
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/dao/extends/CitJournalAdjustExtendsMapper.xml
View file @
0790718a
...
...
@@ -418,7 +418,7 @@
attribute16,
created_by, created_date, late_updated_by,
late_updated_date, create_time, update_time,is_select
from cit_journal_entry_adjust where period like
#{record.period}
from cit_journal_entry_adjust where period like
CONCAT('%' ,#{record.period},'%')
<if
test=
"orgList != null and orgList.size > 0"
>
AND organization_id in
<foreach
item=
"item"
index=
"index"
collection=
"orgList"
open=
"("
separator=
","
close=
")"
>
...
...
@@ -450,7 +450,7 @@
accounted_dr, accounted_cr, entered_dr, entered_cr, cf_item, attribute1, attribute2, attribute3, attribute4, attribute5,
attribute6, attribute7, attribute8, attribute9, attribute10, attribute11, attribute12, attribute13, attribute14, attribute15,
attribute16, created_by, created_date, late_updated_by, late_updated_date, create_time, update_time, is_select
from journal_entry where tms_period like
#{record.period}
from journal_entry where tms_period like
CONCAT('%' ,#{record.period},'%')
<if
test=
"orgList != null and orgList.size > 0"
>
AND organization_id in
<foreach
item=
"item"
index=
"index"
collection=
"orgList"
open=
"("
separator=
","
close=
")"
>
...
...
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