Commit b5725e69 authored by neo's avatar neo

[bugfix] json filed fro code

parent ba86838f
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,8 +49,8 @@ public class JsonParentCodesLookup {
return acctCode;
}
public int getAcctCodeLength(){
return acctCode.length();
public int getAcctCodeLength() {
return acctCode.length();
}
public void setAcctCode(String acctCode) {
......
......@@ -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));
}
......
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