|
@@ -79,7 +79,8 @@ public class PlanAccountServiceImpl implements PlanAccountService {
|
|
|
PlanAccountExample example = new PlanAccountExample();
|
|
|
example.createCriteria().andCreateTimeGreaterThan(DateUtil.getThatDayDate())
|
|
|
.andAccountIdEqualTo(accountId)
|
|
|
- .andStatusEqualTo(0).andIsDeleteEqualTo(0).andPublishOpenFlagEqualTo(1);
|
|
|
+ .andStatusEqualTo(0).andIsDeleteEqualTo(0).andPublishOpenFlagEqualTo(1)
|
|
|
+ .andIsSpecialSettingEqualTo(0);
|
|
|
return planAccountMapper.selectByExample(example);
|
|
|
}
|
|
|
|