blob: 387f26ecbb91454e9b7d313fedf9f330fbe895d3 [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.
-->
<script language="JavaScript" type="text/javascript">
<!--
function toggleInvoiceId(master) {
var form = document.listSalesInvoices;
var invoices = form.elements.length;
for (var i = 0; i < invoices; i++) {
var element = form.elements[i];
if (element.name == "invoiceIds") {
element.checked = master.checked;
}
}
enableSubmitButton();
}
function setServiceName(selection) {
document.listSalesInvoices.action = '<@ofbizUrl>'+selection.value+'</@ofbizUrl>';
enableSubmitButton();
}
function runAction() {
var form = document.listSalesInvoices;
var invoices = form.elements.length;
for (var i = 0; i < invoices; i++) {
var element = form.elements[i];
if (element.name == "invoiceIds") {
element.disabled = false;
}
}
form.submit();
}
function enableSubmitButton() {
var form = document.listSalesInvoices;
var invoices = form.elements.length;
var isSingle = true;
var isAllSelected = true;
for (var i = 0; i < invoices; i++) {
var element = form.elements[i];
if (element.name == "invoiceIds") {
if (element.checked) {
isSingle = false;
} else {
isAllSelected = false;
}
}
}
if (isAllSelected) {
jQuery('#checkAllInvoices').attr('checked', true);
} else {
jQuery('#checkAllInvoices').attr('checked', false);
}
if (!isSingle && jQuery('#serviceName').val() != "") {
jQuery('#submitButton').removeAttr("disabled");
} else {
jQuery('#submitButton').attr('disabled', true);
}
}
-->
</script>
<#if invoices?has_content >
<form name="listSalesInvoices" id="listSalesInvoices" method="post">
<#if salesRepPartyList?has_content>
${setRequestAttribute("partyIds", salesRepPartyList)}
</#if>
<div align="right">
<select name="serviceName" id="serviceName" onchange="javascript:setServiceName(this);">
<option value="">${uiLabelMap.AccountingSelectAction}</options>
<option value="processCommissionRun">${uiLabelMap.AccountingCommissionRun}</option>
</select>
<input id="submitButton" type="button" onclick="javascript:runAction();" value="${uiLabelMap.CommonRun}" disabled="disabled" />
</div>
<table class="basic-table hover-bar" cellspacing="0">
<#-- Header Begins -->
<tr class="header-row-2">
<td width="9%"><input type="checkbox" id="checkAllInvoices" name="checkAllInvoices" onchange="javascript:toggleInvoiceId(this);"/> ${uiLabelMap.CommonSelectAll}</td>
<td width="6%">${uiLabelMap.FormFieldTitle_invoiceId}</td>
<td width="10%">${uiLabelMap.AccountingFromParty}</td>
<td width="14%">${uiLabelMap.AccountingToParty}</td>
<td width="4%">${uiLabelMap.CommonStatus}</td>
<td width="9%">${uiLabelMap.AccountingReferenceNumber}</td>
<td width="12%">${uiLabelMap.CommonDescription}</td>
<td width="9%">${uiLabelMap.AccountingInvoiceDate}</td>
<td width="8%">${uiLabelMap.AccountingDueDate}</td>
<td width="8%">${uiLabelMap.AccountingAmount}</td>
<td width="8%">${uiLabelMap.FormFieldTitle_paidAmount}</td>
<td width="8%">${uiLabelMap.FormFieldTitle_outstandingAmount}</td>
</tr>
<#-- Header Ends-->
<#assign alt_row = false>
<#list invoices as invoice>
<#assign invoicePaymentInfoList = dispatcher.runSync("getInvoicePaymentInfoList", Static["org.ofbiz.base.util.UtilMisc"].toMap("invoiceId", invoice.invoiceId, "userLogin", userLogin))/>
<#assign invoicePaymentInfo = invoicePaymentInfoList.get("invoicePaymentInfoList").get(0)?if_exists>
<#assign statusItem = delegator.findOne("StatusItem", {"statusId" : invoice.statusId}, false)?if_exists/>
<tr valign="middle"<#if alt_row> class="alternate-row"</#if>>
<td><input type="checkbox" id="invoiceId_${invoice_index}" name="invoiceIds" value="${invoice.invoiceId}" onclick="javascript:enableSubmitButton();"/></td>
<td><a class="buttontext" href="<@ofbizUrl>invoiceOverview?invoiceId=${invoice.invoiceId}</@ofbizUrl>">${invoice.get("invoiceId")}</a></td>
<td><a href="/partymgr/control/viewprofile?partyId=${invoice.partyIdFrom}">${Static["org.ofbiz.party.party.PartyHelper"].getPartyName(delegator, invoice.partyIdFrom, false)?if_exists}</a></td>
<td><a href="/partymgr/control/viewprofile?partyId=${invoice.invoiceRolePartyId}">${Static["org.ofbiz.party.party.PartyHelper"].getPartyName(delegator, invoice.invoiceRolePartyId, false)?if_exists}</a></td>
<td>${statusItem.get("description")?if_exists}</td>
<td>${invoice.get("referenceNumber")?if_exists}</td>
<td>${invoice.get("description")?if_exists}</td>
<td>${invoice.get("invoiceDate")?if_exists}</td>
<td>${invoice.get("dueDate")?if_exists}</td>
<td><@ofbizCurrency amount=invoicePaymentInfo.amount isoCode=defaultOrganizationPartyCurrencyUomId/></td>
<td><@ofbizCurrency amount=invoicePaymentInfo.paidAmount isoCode=defaultOrganizationPartyCurrencyUomId/></td>
<td><@ofbizCurrency amount=invoicePaymentInfo.outstandingAmount isoCode=defaultOrganizationPartyCurrencyUomId/></td>
</tr>
<#-- toggle the row color -->
<#assign alt_row = !alt_row>
</#list>
</table>
</form>
<#else>
<h3>${uiLabelMap.AccountingNoInvoicesFound}</h3>
</#if>