From 1fcaf7919db7ec3350e9bf953c0d651d4d85fac2 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期一, 23 六月 2025 11:45:48 +0800
Subject: [PATCH] 2025-06-23 回款登记导出+分页查询条件问题修复+【采购管理】-【来票登记】,合同金额列后面增加已开票金额、待开票金额两列

---
 src/main/java/com/ruoyi/sales/dto/ReceiptPaymentDto.java |   32 +++++++++++++++++++++++++++++++-
 1 files changed, 31 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/ruoyi/sales/dto/ReceiptPaymentDto.java b/src/main/java/com/ruoyi/sales/dto/ReceiptPaymentDto.java
index f46e99d..cc9b935 100644
--- a/src/main/java/com/ruoyi/sales/dto/ReceiptPaymentDto.java
+++ b/src/main/java/com/ruoyi/sales/dto/ReceiptPaymentDto.java
@@ -1,48 +1,78 @@
 package com.ruoyi.sales.dto;
 
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
 import com.ruoyi.sales.pojo.ReceiptPayment;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
 import java.math.BigDecimal;
+import java.time.LocalDate;
 
 @Data
 public class ReceiptPaymentDto extends ReceiptPayment {
 
     @ApiModelProperty(value = "瀹㈡埛鍚堝悓鍙�")
+    @Excel(name = "瀹㈡埛鍚堝悓鍙�")
     private String customerContractNo;
 
     @ApiModelProperty(value = "瀹㈡埛鍚嶇О")
+    @Excel(name = "瀹㈡埛鍚嶇О")
     private String customerName;
 
     @ApiModelProperty(value = "鏌ヨ鏂囨湰")
     private String searchText;
 
     @ApiModelProperty(value = "閿�鍞彴璐ales_ledger")
+    @Excel(isExport = false)
     private Integer salesLedgerId;
 
     @ApiModelProperty(value = "閿�鍞悎鍚屽彿")
+    @Excel(name = "閿�鍞悎鍚屽彿")
     private String salesContractNo;
 
     @ApiModelProperty(value = "瀹㈡埛鍚嶇ОID")
+    @Excel(isExport = false)
     private Integer customerId;
 
     @ApiModelProperty(value = "鍙戠エ鍙�")
+    @Excel(name = "鍙戠エ鍙�")
     private String invoiceNo;
 
     @ApiModelProperty(value = "鍙戠エ閲戦")
+    @Excel(name = "鍙戠エ閲戦")
     private BigDecimal invoiceTotal;
 
-    @ApiModelProperty(value = "绋庣巼")
+    @ApiModelProperty(value = "绋庣巼锛�%锛�")
+    @Excel(name = "绋庣巼锛�%锛�")
     private BigDecimal taxRate;
 
     @ApiModelProperty(value = "浜у搧澶х被")
+    @Excel(name = "浜у搧澶х被")
     private String productCategory;
 
     @ApiModelProperty(value = "鍥炴閲戦")
+    @Excel(name = "鍥炴閲戦")
     private BigDecimal receiptPaymentAmountTotal;
 
     @ApiModelProperty(value = "寰呭洖娆鹃噾棰�")
+    @Excel(name = "寰呭洖娆鹃噾棰�")
     private BigDecimal noReceiptAmount;
 
+    @TableField(exist = false)
+    @Excel(isExport = false)
+    private Boolean status;
+
+    @TableField(exist = false)
+    @Excel(isExport = false)
+    private String receiptPaymentDateStart;
+    @TableField(exist = false)
+    @Excel(isExport = false)
+    private String receiptPaymentDateEnd;
+
+    @ApiModelProperty(value = "椤圭洰鍚嶇О")
+    @Excel(name = "椤圭洰鍚嶇О")
+    private String projectName;
+
+
 }

--
Gitblit v1.9.3