Author: apatel
Date: Sat Oct 17 03:00:19 2009
New Revision: 826169
URL:
http://svn.apache.org/viewvc?rev=826169&view=revLog:
Removed condition to show only invoices that have outstanding amount.
Modified:
ofbiz/trunk/applications/accounting/webapp/ap/invoices/PurchaseInvoices.ftl
Modified: ofbiz/trunk/applications/accounting/webapp/ap/invoices/PurchaseInvoices.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ap/invoices/PurchaseInvoices.ftl?rev=826169&r1=826168&r2=826169&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/ap/invoices/PurchaseInvoices.ftl (original)
+++ ofbiz/trunk/applications/accounting/webapp/ap/invoices/PurchaseInvoices.ftl Sat Oct 17 03:00:19 2009
@@ -163,7 +163,6 @@
<#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>
- <#if invoicePaymentInfo.outstandingAmount != 0>
<#assign statusItem = invoice.getRelatedOneCache("StatusItem")>
<tr valign="middle"<#if alt_row> class="alternate-row"</#if>>
<td><a class="buttontext" href="<@ofbizUrl>invoiceOverview?invoiceId=${invoice.invoiceId}</@ofbizUrl>">${invoice.get("invoiceId")}</a></td>
@@ -179,7 +178,6 @@
</tr>
<#-- toggle the row color -->
<#assign alt_row = !alt_row>
- </#if>
</#list>
</table>
</form>