blob: 30ef0326ac22f1a9b482201833b4f71a51c597e0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.ofbiz.base.util.*;
import org.apache.ofbiz.entity.condition.*;
def module = "BacklogNotifications.groovy";
custRequest = from("CustRequest").where("custRequestId", custRequestId).queryOne();
person = from("PartyNameView").where("partyId", partyIdTo).queryOne();
informationMap = [:];
informationMap.internalName = null;
informationMap.productId = null;
informationMap.workEffortName = null;
informationMap.workEffortId = null;
//check in sprint
backlogList = select("productId", "workEffortId", "custRequestId").from("ProductBacklog").where("workEffortTypeId", "SCRUM_SPRINT", "custRequestId", custRequestId).queryList();
if (backlogList) {
product = from("Product").where("productId", backlogList[0].productId).queryOne();
sprint = from("WorkEffort").where("workEffortId", backlogList[0].workEffortId).queryOne();
informationMap.internalName = product.internalName;
informationMap.productId = product.productId;
informationMap.workEffortName = sprint.workEffortName;
informationMap.workEffortId = sprint.workEffortId;
} else {
backlogList = select("productId", "workEffortId", "custRequestId").from("ProductBacklog").where("custRequestId", custRequestId).queryList();
if (backlogList) {
if (backlogList[0].productId) {
product = from("Product").where("productId", backlogList[0].productId).queryOne();
informationMap.internalName = product.internalName;
informationMap.productId = product.productId;
}
}
}
// check backlog removed from sprint.
removedFromSprint = false;
if ("CRQ_ACCEPTED".equals(custRequest.statusId)) {
custStatusList = custRequest.getRelated("CustRequestStatus", null, ["-custRequestStatusId"], false);
if (custStatusList.size() > 2 && "CRQ_REVIEWED".equals(custStatusList[1].statusId)) {
removedFromSprint = true;
}
}
context.custRequest = custRequest;
context.person = person;
context.informationMap = informationMap;
context.removedFromSprint = removedFromSprint;