feat: 第三方明细下载增加字段

dev
chenhc 1 year ago
parent 728e2162ad
commit be59f9845b

@ -773,12 +773,6 @@ public class CtqyyClient extends CommonHttpClient {
thrInvResultResponse.setType("1"); thrInvResultResponse.setType("1");
thrInvResultResponse.setOutCount(ptxhInvResponse.getQuantity() + ""); thrInvResultResponse.setOutCount(ptxhInvResponse.getQuantity() + "");
thrInvResultResponse.setReCount(ptxhInvResponse.getQuantity() + ""); thrInvResultResponse.setReCount(ptxhInvResponse.getQuantity() + "");
thrInvResultResponse.setSickerCode(ptxhInvResponse.getVisitNo());
thrInvResultResponse.setSickerName(ptxhInvResponse.getSickName());
thrInvResultResponse.setChargeTime(ptxhInvResponse.getFeeTime());
thrInvResultResponse.setChargeUser(ptxhInvResponse.getFeeUper());
thrInvResultResponses.add(thrInvResultResponse); thrInvResultResponses.add(thrInvResultResponse);
} }
} }
@ -841,6 +835,11 @@ public class CtqyyClient extends CommonHttpClient {
// else // else
// thrInvResultResponse.setInvCode(ptxhInvResponse.getInDept()); // thrInvResultResponse.setInvCode(ptxhInvResponse.getInDept());
thrInvResultResponse.setSickerCode(ptxhInvResponse.getVisitNo());
thrInvResultResponse.setSickerName(ptxhInvResponse.getSickName());
thrInvResultResponse.setChargeTime(ptxhInvResponse.getFeeTime());
thrInvResultResponse.setChargeUser(ptxhInvResponse.getFeeOper());
thrInvResultResponse.setInvCode("1000003"); thrInvResultResponse.setInvCode("1000003");
thrInvResultResponse.setDeptCode("1002"); thrInvResultResponse.setDeptCode("1002");
thrInvResultResponse.setSickerCode(ptxhInvResponse.getVisitNo()); thrInvResultResponse.setSickerCode(ptxhInvResponse.getVisitNo());

@ -57,13 +57,4 @@ public class InvResultEntity {
private String factoryCode; private String factoryCode;
@JsonProperty("factoryName") @JsonProperty("factoryName")
private String factoryName; private String factoryName;
@JsonProperty("visitNo")
private String visitNo;
@JsonProperty("sickName")
private String sickName;
@JsonProperty("feeTime")
private String feeTime;
@JsonProperty("feeUper")
private String feeUper;
} }

Loading…
Cancel
Save