|
|
@ -506,8 +506,18 @@ public class BusArrearsCarryVehicleApplyService extends MybatisBaseService<BusAr |
|
|
|
if (StringUtils.isNotBlank(params.getUserSid())) { |
|
|
|
qw.eq("createBySid", params.getUserSid()); |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(params.getType())) { |
|
|
|
/*if (StringUtils.isNotBlank(params.getType())) { |
|
|
|
qw.eq("type", params.getType()); |
|
|
|
}*/ |
|
|
|
if (StringUtils.isNotBlank(params.getType())) { |
|
|
|
//待办理
|
|
|
|
if ("1".equals(params.getType())) { |
|
|
|
qw.isNull("bo.nodeState"); |
|
|
|
} |
|
|
|
//已办理
|
|
|
|
if ("2".equals(params.getType())) { |
|
|
|
qw.isNotNull("bo.nodeState"); |
|
|
|
} |
|
|
|
} |
|
|
|
IPage<AppArrearsCarryVehicleQuery> page = PagerUtil.queryToPage(pagerQuery); |
|
|
|
IPage<AppArrearsCarryVehiclePageVo> iPage = baseMapper.getAdvanceInvoiceList(page, qw, params.getName()); |
|
|
|