项目财务明细增加按照签约公司筛选

This commit is contained in:
砂糖
2025-12-05 13:30:40 +08:00
parent a5ce7b76db
commit a087d7b0ce

View File

@@ -196,6 +196,7 @@ public class SysOaFinanceServiceImpl implements ISysOaFinanceService {
lqw.like(StringUtils.isNotBlank(bo.getFinanceTitle()), "sof.finance_title", bo.getFinanceTitle());
lqw.like(StringUtils.isNotBlank(bo.getFinanceParties()), "sof.finance_parties", bo.getFinanceParties());
lqw.eq(StringUtils.isNotBlank(bo.getFinanceType()), "sof.finance_type", bo.getFinanceType());
lqw.eq(StringUtils.isNotBlank(bo.getSigningCompany()), "sof.signing_company", bo.getSigningCompany());
lqw.eq(Objects.nonNull(bo.getReceiveAccountId()) && bo.getReceiveAccountId()!=-1L, "sof.receive_account_id", bo.getReceiveAccountId());
lqw.between(params.get("beginCreateTime") != null && params.get("endCreateTime") != null,
"sof.create_time", params.get("beginCreateTime"), params.get("endCreateTime"));