mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
开票信息查询接口补充发票号跟备注
This commit is contained in:
+6
@@ -39,4 +39,10 @@ public class InvoiceDetailsRespVO {
|
||||
|
||||
@Schema(description = "发票附件名称")
|
||||
private String invoiceAttachmentName;
|
||||
|
||||
@Schema(description = "发票号")
|
||||
private String invoiceNo;
|
||||
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
}
|
||||
|
||||
+2
@@ -315,12 +315,14 @@ public class InvoiceServiceImpl implements InvoiceService {
|
||||
|
||||
return InvoiceDetailsRespVO.builder()
|
||||
.invoicePurchaseRecords(invoicePurchaseRecords)
|
||||
.invoiceNo(invoiceRecordsDO.getInvoiceNo())
|
||||
.invoiceTitleInfo(invoiceTitleInfo)
|
||||
.applicant(invoiceRecordsDO.getCreator())
|
||||
.orgName(invoiceRecordsDO.getOrganName())
|
||||
.applyTime(invoiceRecordsDO.getCreateTime())
|
||||
.invoiceAttachmentPath(invoiceRecordsDO.getInvoiceAttachmentPath())
|
||||
.invoiceAttachmentName(invoiceRecordsDO.getInvoiceAttachmentName())
|
||||
.remark(invoiceRecordsDO.getRemark())
|
||||
.build();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user