Mattia Gosetto
4 anni fa
5 ha cambiato i file con 111 aggiunte e 3 eliminazioni
@ -0,0 +1,42 @@ |
|||||||
|
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> |
||||||
|
<%@page import="java.util.Locale"%> |
||||||
|
<%@page import="it.tref.liferay.portos.bo.util.PagamentiCommonUtil"%> |
||||||
|
<%@page import="com.liferay.portal.kernel.util.Validator"%> |
||||||
|
<%@page import="java.text.NumberFormat"%> |
||||||
|
<%@page import="java.math.BigDecimal"%> |
||||||
|
<%@page import="com.liferay.portal.kernel.bean.BeanPropertiesUtil"%> |
||||||
|
<%@page import="it.tref.liferay.portos.bo.shared.util.PagamentoConstants"%> |
||||||
|
<%@page import="com.liferay.portal.kernel.language.LanguageUtil"%> |
||||||
|
|
||||||
|
<%@ include file="/html/init.jsp" %> |
||||||
|
|
||||||
|
<% |
||||||
|
long dettPraticaId = ParamUtil.getLong(request, "dettPraticaId",0l); |
||||||
|
long idPagamento = ParamUtil.getLong(request, "idPagamento", 0l); |
||||||
|
|
||||||
|
DettPratica dettPratica = DettPraticaLocalServiceUtil.getDettPratica(dettPraticaId); |
||||||
|
Pagamento objPagamento = PagamentoLocalServiceUtil.fetchPagamento(idPagamento); |
||||||
|
|
||||||
|
long companyId = company.getCompanyId(); |
||||||
|
|
||||||
|
String portletNamespace = renderResponse.getNamespace(); |
||||||
|
String redirect = currentURL+"#"+portletNamespace+"tab="+portletNamespace+"page_pagamenti"; |
||||||
|
|
||||||
|
%> |
||||||
|
|
||||||
|
<c:if test="<%= Validator.isNotNull(objPagamento) %>"> |
||||||
|
<div class="col-sm-12 col-md-12"> |
||||||
|
<liferay-portlet:actionURL name="setBollettinoImposta" var="setBollettinoImpostaURL"> |
||||||
|
<liferay-portlet:param name="idPagamento" value="<%=String.valueOf(idPagamento) %>"/> |
||||||
|
<liferay-portlet:param name="dettPraticaId" value="<%=String.valueOf(dettPraticaId) %>"/> |
||||||
|
<liferay-portlet:param name="redirect" value="<%= redirect %>" /> |
||||||
|
<liferay-portlet:param name="mvcPath" value="/html/pagamenti/view_panel_form_bollettino.jsp"/> |
||||||
|
</liferay-portlet:actionURL> |
||||||
|
|
||||||
|
<aui:form name="fm4-pagamenti" method="post" action="<%= setBollettinoImpostaURL %>"> |
||||||
|
<aui:input name="numeroBollettino" type="text" |
||||||
|
label="label-codice-bollettino" value="<%= objPagamento.getNumeroBollettino() %>"/> |
||||||
|
<aui:button type="submit" value="Salva" cssClass="btn btn-primary"/> |
||||||
|
</aui:form> |
||||||
|
</div> |
||||||
|
</c:if> |
Caricamento…
Reference in new issue