工艺路线接口优化_V2
This commit is contained in:
parent
0d16cd4860
commit
c081c8a551
|
@ -555,10 +555,16 @@ public class RoutingResource extends AbstractNCCRestResource {
|
||||||
Set<String> crcIdList = new HashSet<>();
|
Set<String> crcIdList = new HashSet<>();
|
||||||
for (AggRtVO aggVo : aggVos) {
|
for (AggRtVO aggVo : aggVos) {
|
||||||
RtHeadVO hvo = (RtHeadVO) aggVo.getParentVO();
|
RtHeadVO hvo = (RtHeadVO) aggVo.getParentVO();
|
||||||
|
if(hvo.getStatus()==3){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
hOrgList.add(hvo.getPk_org());
|
hOrgList.add(hvo.getPk_org());
|
||||||
RtItemVO[] itemVos = (RtItemVO[]) aggVo.getChildren(RtItemVO.class);
|
RtItemVO[] itemVos = (RtItemVO[]) aggVo.getChildren(RtItemVO.class);
|
||||||
if (MMValueCheck.isNotEmpty(itemVos)) {
|
if (MMValueCheck.isNotEmpty(itemVos)) {
|
||||||
for (RtItemVO itemVo : itemVos) {
|
for (RtItemVO itemVo : itemVos) {
|
||||||
|
if (itemVo.getStatus()==3){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
String pkOrg = itemVo.getPk_org();
|
String pkOrg = itemVo.getPk_org();
|
||||||
String crcId = itemVo.getCrcid();
|
String crcId = itemVo.getCrcid();
|
||||||
if (pkOrg != null) {
|
if (pkOrg != null) {
|
||||||
|
|
Loading…
Reference in New Issue