blob: cd6ae8d63c112ef0277f9d384acfee5f04dc2f23 [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.
*/
import org.ofbiz.entity.*;
import org.ofbiz.base.util.Debug;
import org.ofbiz.common.*;
import org.ofbiz.webapp.control.*;
import org.ofbiz.accounting.invoice.*;
import org.ofbiz.accounting.payment.*;
import org.ofbiz.entity.*;
import org.ofbiz.entity.condition.*;
import org.ofbiz.entity.util.*;
import javolution.util.FastMap;
Boolean actualCurrency = new Boolean(context.actualCurrency);
if (actualCurrency == null) {
actualCurrency = true;
}
invExprs =
EntityCondition.makeCondition([
EntityCondition.makeCondition("statusId", EntityOperator.NOT_EQUAL, "INVOICE_IN_PROCESS"),
EntityCondition.makeCondition("statusId", EntityOperator.NOT_EQUAL, "INVOICE_WRITEOFF"),
EntityCondition.makeCondition("statusId", EntityOperator.NOT_EQUAL, "INVOICE_CANCELLED"),
EntityCondition.makeCondition([
EntityCondition.makeCondition([
EntityCondition.makeCondition("partyId", EntityOperator.EQUALS, parameters.partyId),
EntityCondition.makeCondition("partyIdFrom", EntityOperator.EQUALS, context.defaultOrganizationPartyId)
],EntityOperator.AND),
EntityCondition.makeCondition([
EntityCondition.makeCondition("partyId", EntityOperator.EQUALS, context.defaultOrganizationPartyId),
EntityCondition.makeCondition("partyIdFrom", EntityOperator.EQUALS, parameters.partyId)
],EntityOperator.AND)
],EntityOperator.OR)
],EntityOperator.AND);
invIterator = from("InvoiceAndType").where(invExprs).cursorScrollInsensitive().distinct().queryIterator();
invoiceList = [];
while (invoice = invIterator.next()) {
unAppliedAmount = InvoiceWorker.getInvoiceNotApplied(invoice, actualCurrency).setScale(2,BigDecimal.ROUND_HALF_UP);
if (unAppliedAmount.signum() == 1) {
if (actualCurrency.equals(true)) {
invoiceCurrencyUomId = invoice.currencyUomId;
} else {
invoiceCurrencyUomId = context.defaultOrganizationPartyCurrencyUomId;
}
invoiceList.add([invoiceId : invoice.invoiceId,
invoiceDate : invoice.invoiceDate,
unAppliedAmount : unAppliedAmount,
invoiceCurrencyUomId : invoiceCurrencyUomId,
amount : InvoiceWorker.getInvoiceTotal(invoice, actualCurrency).setScale(2,BigDecimal.ROUND_HALF_UP),
invoiceTypeId : invoice.invoiceTypeId,
invoiceParentTypeId : invoice.parentTypeId]);
}
}
invIterator.close();
context.ListUnAppliedInvoices = invoiceList;