feature: 大象v6开票接口新加字段

jianshui-ui
xingze 11 months ago
parent b931687062
commit cee4cf640c
  1. 25
      jianshui-invoice/src/main/java/com/jianshui/invoice/domain/BillInfo.java
  2. 3
      jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java

@ -469,10 +469,35 @@ public class BillInfo extends BaseEntity
private String infoClientAddressPhone;
// todo 20240827新加 是否展示购方银行账号 是否展示销方银行账号
// 是否展示购方银行账号
private String sfzsgfyhzh;
// 是否展示销方银行账号
private String sfzsxfyhzh;
/** 推送系统 */
@TableField(exist=false)
private String tsxt;
public String getSfzsgfyhzh() {
return sfzsgfyhzh;
}
public void setSfzsgfyhzh(String sfzsgfyhzh) {
this.sfzsgfyhzh = sfzsgfyhzh;
}
public String getSfzsxfyhzh() {
return sfzsxfyhzh;
}
public void setSfzsxfyhzh(String sfzsxfyhzh) {
this.sfzsxfyhzh = sfzsxfyhzh;
}
public String getTsxt() {
return tsxt;
}

@ -241,6 +241,9 @@ public class ElephantInvoiceApiV6ServiceImpl implements IInvoiceApiService {
// 权限id赋值
ddpcxx.setENTID(entId);
ddtxx.setSFZSGFYHZH(billInfo.getSfzsgfyhzh());
ddtxx.setSFZSXFYHZH(billInfo.getSfzsxfyhzh());
if ("001".equals(fplxdm) || "002".equals(fplxdm)) {
CompanyserviceProp companyserviceProp = companyservicePropMapper.selectPropByKey(companyservice.getCompanyid(), "account_show");

Loading…
Cancel
Save