release
路明慧 2 years ago
parent 62d37f198a
commit 56905dbd60
  1. 4
      dxhy-core/src/main/java/com/dxhy/core/model/InvoiceOutVO.java
  2. 4
      dxhy-core/src/main/java/com/dxhy/core/model/ReceiptInvoiceView.java
  3. 8
      dxhy-core/src/main/java/com/dxhy/core/thread/InvoiceOutExportThread.java
  4. 9
      dxhy-core/src/main/resources/mapper/InvoiceOutMapper.xml

@ -30,10 +30,10 @@ public class InvoiceOutVO {
private String snVoucherNumber; private String snVoucherNumber;
private String postingTime; private String postingTime;
private String imageId; private String imageNumber;
private String accountPeriod; private String accountPeriod;
private String compCode; private String compCode;
private String inaccountStatus; private String inAccountStatus;
private String bzdh; private String bzdh;
private String bzr; private String bzr;

@ -124,10 +124,10 @@ public class ReceiptInvoiceView implements Serializable {
private String snVoucherNumber; private String snVoucherNumber;
private String postingTime; private String postingTime;
private String imageId; private String imageNumber;
private String accountPeriod; private String accountPeriod;
private String compCode; private String compCode;
private String inaccountStatus; private String inAccountStatus;
private String bzdh; private String bzdh;
private String bzr; private String bzr;
} }

@ -322,10 +322,14 @@ public class InvoiceOutExportThread extends BaseThread {
vo.setSnVoucherNumber(view.getSnVoucherNumber()); vo.setSnVoucherNumber(view.getSnVoucherNumber());
vo.setPostingTime(view.getPostingTime()); vo.setPostingTime(view.getPostingTime());
vo.setImageId(view.getImageId()); vo.setImageNumber(view.getImageNumber());
vo.setAccountPeriod(view.getAccountPeriod()); vo.setAccountPeriod(view.getAccountPeriod());
vo.setCompCode(view.getCompCode()); vo.setCompCode(view.getCompCode());
vo.setInaccountStatus(view.getInaccountStatus()); if ("1".equals(view.getInAccountStatus())){
vo.setInAccountStatus("已入账");
}else {
vo.setInAccountStatus("未入账");
}
vo.setBzr(view.getBzr()); vo.setBzr(view.getBzr());
vo.setBzdh(view.getBzdh()); vo.setBzdh(view.getBzdh());

@ -26,7 +26,14 @@
<result column="tax_amount" property="taxAmount"/> <result column="tax_amount" property="taxAmount"/>
<result column="rzh_date" property="certDate"/> <result column="rzh_date" property="certDate"/>
<result column="invoice_type" property="invoiceType"/> <result column="invoice_type" property="invoiceType"/>
<result column="snVoucherNumber" property="snVoucherNumber"/>
<result column="postingTime" property="postingTime"/>
<result column="imageId" property="imageNumber"/>
<result column="account_period" property="accountPeriod"/>
<result column="bzdh" property="bzdh"/>
<result column="bzr" property="bzr"/>
<result column="inaccountStatus" property="inAccountStatus"/>
<result column="compCode" property="compCode"/>
</resultMap> </resultMap>

Loading…
Cancel
Save