gongdecai 3 yıl önce
ebeveyn
işleme
31d24b6b79

+ 3 - 0
unimall-admin-api/src/main/java/com/iotechn/unimall/admin/api/sys/CollectionPaymentServiceImpl.java

@@ -67,6 +67,9 @@ public class CollectionPaymentServiceImpl implements CollectionPaymentService {
         if (!StringUtils.isEmpty(selectDTO.getBusinessType())) {
             wrapper.eq("business_type", selectDTO.getBusinessType());
         }
+        if (!StringUtils.isEmpty(selectDTO.getStatus())) {
+            wrapper.eq("status", selectDTO.getStatus());
+        }
         if (!StringUtils.isEmpty(selectDTO.getPayNo())) {
             wrapper.like("pay_no", selectDTO.getPayNo());
         }

+ 1 - 1
unimall-data/src/main/java/com/iotechn/unimall/data/dto/CustomerBillingInfoDTO.java

@@ -50,7 +50,7 @@ public class CustomerBillingInfoDTO extends SuperDTO {
      @Excel(name = "备注2")
     private String remark;
      /* 状态 */
-     @Excel(name = "状态")
+     @Excel(name = "状态",readConverterExp = "1=未付款,2=部分付款,2=已付款")
     private Integer status;
      /* gmtCreate */
     private Date gmtCreate;