blob: 2cd260005ff90f63e257734adb2c95c54a76be3a [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.util.EntityUtil;
import javolution.util.FastList;
import javolution.util.FastMap;
import org.ofbiz.entity.util.EntityUtil;
orderLists = FastList.newInstance();
if (orderList) {
for (orderCount = 0; orderCount < orderList.size(); orderCount++) {
orderItem = orderList[orderCount];
orderId = null;
orderHeaders = delegator.findByAnd("OrderHeader", [externalId : orderItem.("externalId")], null, false);
if (orderHeaders.size() > 0) {
orderHeader = EntityUtil.getFirst(orderHeaders);
orderId = orderHeader.get("orderId").toString();
}
checkoutStatus = orderItem.get("checkoutStatusCtx");
paymentMethodUsed = null;
if (checkoutStatus) {
paymentMethodUsed = checkoutStatus.get("paymentMethodUsed");
}
//orderLists.add(orderMap);
items = orderItem.get("orderItemList");
for (itemCount = 0; itemCount < items.size(); itemCount++) {
item = items[itemCount];
title = null;
if (!(item.get("title"))) {
product = delegator.findOne("Product", [productId : item.get("productId")], true);
title = product.get("internalName");
}
orderMap = FastMap.newInstance();
orderMap.put("orderId", orderId);
orderMap.put("externalId", orderItem.get("externalId"));
orderMap.put("amountPaid", orderItem.get("amountPaid"));
orderMap.put("createdDate", orderItem.get("createdDate"));
orderMap.put("ebayUserIdBuyer", orderItem.get("ebayUserIdBuyer"));
orderMap.put("paymentMethodUsed", paymentMethodUsed);
orderMap.put("itemId", item.get("itemId"));
orderMap.put("quantity", item.get("quantity"));
orderMap.put("productId", item.get("productId"));
orderMap.put("transactionPrice", item.get("transactionPrice"));
orderMap.put("title", title);
orderMap.put("closedDate", item.get("closedDate"));
orderMap.put("shippingAddressCtx", orderItem.get("shippingAddressCtx"));
orderMap.put("shippingServiceSelectedCtx", orderItem.get("shippingServiceSelectedCtx"));
orderMap.put("shippingDetailsCtx", orderItem.get("shippingDetailsCtx"));
orderMap.put("checkoutStatusCtx", orderItem.get("checkoutStatusCtx"));
orderMap.put("externalTransactionCtx", orderItem.get("externalTransactionCtx"));
orderMap.put("orderItemList", orderItem.get("orderItemList"));
orderMap.put("paidTime", orderItem.get("paidTime"));
orderMap.put("shippedTime", orderItem.get("shippedTime"));
orderMap.put("paidTime", orderItem.get("paidTime"));
orderMap.put("emailBuyer", orderItem.get("emailBuyer"));
orderLists.add(orderMap);
}
}
}
context.orderLists = orderLists;