|
@@ -312,7 +312,7 @@ public abstract class SnapshotApplicationBase
|
|
|
.FirstAsync();
|
|
|
|
|
|
var outDto = await _orderRepository.Queryable()
|
|
|
- .Where(m => m.Contact == userInfo.PhoneNumber)
|
|
|
+ .Where(m => m.Contact == userInfo.PhoneNumber && m.CreatorId == _sessionContext.UserId)
|
|
|
.Select(m => new SnapshotUserInfoOutDto
|
|
|
{
|
|
|
NoReplyCount = SqlFunc.AggregateSum(SqlFunc.IIF(m.Status < EOrderStatus.Filed, 1, 0)),
|