|
@@ -5464,7 +5464,7 @@ public class OrderController : BaseController
|
|
|
if (isSnapshotEnable)
|
|
|
{
|
|
|
var orderSnapShot = await _orderSnapshotRepository.GetAsync(orderId, HttpContext.RequestAborted);
|
|
|
- if (orderSnapShot != null && string.CompareOrdinal(orderSnapShot.IndustryName, "安全隐患") != 0)
|
|
|
+ if (orderSnapShot != null && string.CompareOrdinal(orderSnapShot.IndustryName, "安全隐患") == 0)
|
|
|
{
|
|
|
dto.Steps = dto.Steps.Where(d => string.CompareOrdinal(d.Value, "网格员") != 0
|
|
|
&& string.CompareOrdinal(d.Value, "工单标记") != 0).ToList();
|