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
b5725e69
Commit
b5725e69
authored
Aug 02, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bugfix] json filed fro code
parent
ba86838f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
JsonParentCodesLookup.java
...va/pwc/taxtech/atms/dto/vatdto/JsonParentCodesLookup.java
+5
-2
CustomerServiceImpl.java
...va/pwc/taxtech/atms/service/impl/CustomerServiceImpl.java
+0
-1
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/JsonParentCodesLookup.java
View file @
b5725e69
package
pwc
.
taxtech
.
atms
.
dto
.
vatdto
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
java.util.List
;
public
class
JsonParentCodesLookup
{
...
...
@@ -11,7 +14,7 @@ public class JsonParentCodesLookup {
private
String
direction
;
// REQUIRED:
@JSONField
(
name
=
"accountCode"
)
private
String
acctCode
;
private
List
<
JsonParentCodesLookup
>
children
;
...
...
@@ -46,7 +49,7 @@ public class JsonParentCodesLookup {
return
acctCode
;
}
public
int
getAcctCodeLength
(){
public
int
getAcctCodeLength
()
{
return
acctCode
.
length
();
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CustomerServiceImpl.java
View file @
b5725e69
...
...
@@ -269,7 +269,6 @@ public class CustomerServiceImpl implements CustomerService {
for
(
CustomsInvoice
r
:
reuslt
)
{
CustomsInvoiceDto
dto
=
new
CustomsInvoiceDto
();
dto
.
setSeqNo
(
seqNo
++);
dto
.
setAuditResult
(
r
.
getAuditResult
());
if
(
r
.
getInvoiceAmount
()
!=
null
)
{
r
.
setInvoiceAmount
(
r
.
getInvoiceAmount
().
setScale
(
2
));
}
...
...
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