Sfoglia il codice sorgente

fix cambio istruttore e label

feature/advanced-operation
Marco Alderighi 4 settimane fa
parent
commit
ffa0b44a2c
  1. 2
      liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/bo/model/impl/DettPraticaImpl.java
  2. 4
      liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/bo/service/impl/IntPraticaLocalServiceImpl.java
  3. 2
      liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/html/gestioneattivita/action_button.jsp

2
liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/bo/model/impl/DettPraticaImpl.java

@ -1282,7 +1282,7 @@ public class DettPraticaImpl extends DettPraticaBaseImpl {
notCompleted.add("destinazione"); notCompleted.add("destinazione");
} }
if (Validator.isNull(getVia())) { if (Validator.isNull(getVia())) {
notCompleted.add("via"); notCompleted.add("Indirizzo mancante");
} }
if (Validator.isNull(getLocalizzazioneGeografica()) || getLocalizzazioneGeografica().startsWith("||")) { if (Validator.isNull(getLocalizzazioneGeografica()) || getLocalizzazioneGeografica().startsWith("||")) {
notCompleted.add("Localizzazione geografica mancante"); notCompleted.add("Localizzazione geografica mancante");

4
liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/bo/service/impl/IntPraticaLocalServiceImpl.java

@ -943,7 +943,7 @@ public class IntPraticaLocalServiceImpl extends IntPraticaLocalServiceBaseImpl {
ControlloPratica controlloPratica = controlloPraticaLocalService.getControlloPratica(controlloPraticaId); ControlloPratica controlloPratica = controlloPraticaLocalService.getControlloPratica(controlloPraticaId);
WorkflowTask lastTask = WorkflowUtil.getLastTask(controlloPratica.getCompanyId(), WorkflowTask lastTask = WorkflowUtil.getLastTask(controlloPratica.getCompanyId(),
controlloPratica.getGroupId(), null, controlloPratica); controlloPratica.getGroupId(), null, controlloPratica);
if(lastTask.getName().equalsIgnoreCase("assegnazione")){ // if(lastTask.getName().equalsIgnoreCase("assegnazione")){
IntPratica intPratica = getIntPratica(intPraticaId); IntPratica intPratica = getIntPratica(intPraticaId);
intPratica.setStatusByUserId(istruttoreId); intPratica.setStatusByUserId(istruttoreId);
@ -980,7 +980,7 @@ public class IntPraticaLocalServiceImpl extends IntPraticaLocalServiceBaseImpl {
} catch (Exception e) { } catch (Exception e) {
_log.error(e, e); _log.error(e, e);
} }
} // }
} }
@Override @Override

2
liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/html/gestioneattivita/action_button.jsp

@ -98,7 +98,6 @@ long territorioGroupId = territorio.getGroupId();
} }
%> %>
</c:if> </c:if>
<c:if test ='<%= listaTask.get(0).getName().equalsIgnoreCase("assegnazione") %>'>
<c:if test="<%= IntPraticaPermission.contains(permissionChecker, territorioGroupId, <c:if test="<%= IntPraticaPermission.contains(permissionChecker, territorioGroupId,
ActionKeys.CAMBIO_ISTRUTTORE) %>"> ActionKeys.CAMBIO_ISTRUTTORE) %>">
<c:if test="<%= Validator.isNotNull(intPratica.getStatusByUserId()) %>"> <c:if test="<%= Validator.isNotNull(intPratica.getStatusByUserId()) %>">
@ -117,7 +116,6 @@ long territorioGroupId = territorio.getGroupId();
</div> </div>
</c:if> </c:if>
</c:if> </c:if>
</c:if>
<c:if test="<%= IntPraticaPermission.contains(permissionChecker, territorioGroupId, <c:if test="<%= IntPraticaPermission.contains(permissionChecker, territorioGroupId,
ActionKeys.RICHIEDI_PARERE_GEOLOGO) || intPratica.getStatusByUserId() == user.getUserId() %>"> ActionKeys.RICHIEDI_PARERE_GEOLOGO) || intPratica.getStatusByUserId() == user.getUserId() %>">
<c:if test="<%= !listaTask.isEmpty() %>"> <c:if test="<%= !listaTask.isEmpty() %>">

Caricamento…
Annulla
Salva