修改服务流程推送状态

optimize
jianghaiqing 1 year ago
parent 6b9f475b80
commit 2acb95a08b

@ -135,7 +135,7 @@ namespace Myshipping.Application
//检索状态对应所有的服务流程如果已经提取到的状态数量与推送的不一致提示错误不能入库s //检索状态对应所有的服务流程如果已经提取到的状态数量与推送的不一致提示错误不能入库s
var skuList = _statusSkuBaseInfoRepository.AsQueryable().Filter(null, true) var skuList = _statusSkuBaseInfoRepository.AsQueryable().Filter(null, true)
.LeftJoin<ServiceWorkFlowActivitiesInfo>((sts, act) => sts.PK_ID == act.STATUS_SKU_ID) .LeftJoin<ServiceWorkFlowActivitiesInfo>((sts, act) => sts.PK_ID == act.STATUS_SKU_ID)
.LeftJoin<ServiceWorkFlowActivitiesSubRelation>((sts,act,rela)=> .LeftJoin<ServiceWorkFlowActivitiesRelation>((sts,act,rela)=>
act.PK_ID == rela.SERVICE_ACTIVITIES_ID) act.PK_ID == rela.SERVICE_ACTIVITIES_ID)
.LeftJoin<ServiceWorkFlowBaseInfo>((sts, act, rela,wf)=> .LeftJoin<ServiceWorkFlowBaseInfo>((sts, act, rela,wf)=>
rela.SERVICE_WORKFLOW_ID == wf.PK_ID && rela.WF_VERSION == wf.RELEASE_VERSION) rela.SERVICE_WORKFLOW_ID == wf.PK_ID && rela.WF_VERSION == wf.RELEASE_VERSION)
@ -192,7 +192,7 @@ namespace Myshipping.Application
return new { Exists = true, WF = l }; return new { Exists = true, WF = l };
} }
return new { Exists = true, WF = l }; return new { Exists = false, WF = l };
}).ToList(); }).ToList();

Loading…
Cancel
Save