|
|
|
@ -16,6 +16,8 @@ import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import com.liferay.portal.kernel.exception.PortalException; |
|
|
|
|
import com.liferay.portal.kernel.exception.SystemException; |
|
|
|
|
import com.liferay.portal.kernel.log.Log; |
|
|
|
|
import com.liferay.portal.kernel.log.LogFactoryUtil; |
|
|
|
|
import com.liferay.portal.kernel.util.ListUtil; |
|
|
|
|
import com.liferay.portal.kernel.util.StringPool; |
|
|
|
|
import com.liferay.portal.kernel.util.UniqueList; |
|
|
|
@ -46,6 +48,8 @@ public class AzioniPraticheUtil {
|
|
|
|
|
public static final String STATE_FINE_LAVORI_PARZIALE = "FINE_LAVORI_PARZIALE"; |
|
|
|
|
public static final String STATE_FINE_LAVORI_TOTALE = "FINE_LAVORI_TOTALE"; |
|
|
|
|
public static final String STATE_COLLAUDO_PARZIALE = "COLLAUDO_PARZIALE"; |
|
|
|
|
|
|
|
|
|
private static final Log _log = LogFactoryUtil.getLog(AzioniPraticheUtil.class); |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("serial") |
|
|
|
|
public static List<String> ALL_ACTIONS = new UniqueList<String>() { |
|
|
|
@ -139,6 +143,11 @@ public class AzioniPraticheUtil {
|
|
|
|
|
} else if (StatoPraticaConstants.COLLAUDO_PARZIALE.equalsIgnoreCase(intPratica.getStatoPratica())) { |
|
|
|
|
status = STATE_COLLAUDO_PARZIALE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(intPratica.getIntPraticaId() == 186466){ |
|
|
|
|
_log.info(status); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<String> actionList = STATE_ACTIONS_MAP.get(status); |
|
|
|
|
if (actionList == null) { |
|
|
|
|
actionList = new ArrayList<>(); |
|
|
|
|