|
@@ -288,7 +288,7 @@ public abstract class SnapshotApplicationBase
|
|
|
public async Task<IReadOnlyList<BulletinOutDto>> GetBulletinsAsync(BulletinInDto dto, CancellationToken cancellationToken)
|
|
|
{
|
|
|
var items = await _bulletinRepository.Queryable()
|
|
|
- .Where(m => m.BulletinState == EBulletinState.ReviewPass)
|
|
|
+ .Where(m => m.BulletinState == EBulletinState.ReviewPass && m.IsArrive == true)
|
|
|
.LeftJoin<Industry>((bulletin, industry) => bulletin.SnapshotBulletinTypeId == industry.BulletinTypePublicityId)
|
|
|
.Where((bulletin, industry) => industry.Id == dto.IndustryId)
|
|
|
.ToFixedListAsync(dto, cancellationToken);
|