|
@@ -37,6 +37,8 @@ import org.springframework.stereotype.Service;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 采购付款 服务实现类
|
|
@@ -94,6 +96,7 @@ public class PayServiceImpl extends ServiceImpl<PayMapper, Pay> implements PaySe
|
|
|
if (StringUtils.isNotEmpty(dto.getStatus())) {
|
|
|
wrapper.eq("p", Pay::getStatus, dto.getStatus());
|
|
|
}
|
|
|
+ //付款状态
|
|
|
if (StringUtils.isNotEmpty(dto.getPayStatus())) {
|
|
|
wrapper.eq("p", Pay::getPayStatus, dto.getPayStatus());
|
|
|
}
|