⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ordermanagerevents.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: OrderManagerEvents.java 5462 2005-08-05 18:35:48Z jonesde $ * *  Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org * *  Permission is hereby granted, free of charge, to any person obtaining a *  copy of this software and associated documentation files (the "Software"), *  to deal in the Software without restriction, including without limitation *  the rights to use, copy, modify, merge, publish, distribute, sublicense, *  and/or sell copies of the Software, and to permit persons to whom the *  Software is furnished to do so, subject to the following conditions: * *  The above copyright notice and this permission notice shall be included *  in all copies or substantial portions of the Software. * *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY *  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT *  OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *  THE USE OR OTHER DEALINGS IN THE SOFTWARE. */package org.ofbiz.order;import java.text.NumberFormat;import java.util.Iterator;import java.util.LinkedList;import java.util.List;import java.util.Locale;import java.util.Map;import javax.servlet.ServletContext;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.servlet.http.HttpSession;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.UtilDateTime;import org.ofbiz.base.util.UtilHttp;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.base.util.UtilProperties;import org.ofbiz.base.util.UtilValidate;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.entity.GenericValue;import org.ofbiz.entity.condition.EntityExpr;import org.ofbiz.entity.condition.EntityOperator;import org.ofbiz.entity.util.EntityUtil;import org.ofbiz.order.order.OrderChangeHelper;import org.ofbiz.service.ModelService;import org.ofbiz.service.LocalDispatcher;import org.ofbiz.service.GenericServiceException;/** * Order Manager Events * * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version $Rev: 6642 $ * @since 2.0 */public class OrderManagerEvents {    public static final String module = OrderManagerEvents.class.getName();    public static final String resource_error = "OrderErrorUiLabels";    public static String processOfflinePayments(HttpServletRequest request, HttpServletResponse response) {        HttpSession session = request.getSession();        ServletContext application = ((ServletContext) request.getAttribute("servletContext"));        LocalDispatcher dispatcher = (LocalDispatcher) request.getAttribute("dispatcher");        GenericDelegator delegator = (GenericDelegator) request.getAttribute("delegator");        GenericValue userLogin = (GenericValue) session.getAttribute("userLogin");        Locale locale = UtilHttp.getLocale(request);        if (session.getAttribute("OFFLINE_PAYMENTS") != null) {            String orderId = (String) request.getAttribute("orderId");            List toBeStored = new LinkedList();            List paymentPrefs = null;            GenericValue placingCustomer = null;            try {                paymentPrefs = delegator.findByAnd("OrderPaymentPreference", UtilMisc.toMap("orderId", orderId));                List pRoles = delegator.findByAnd("OrderRole", UtilMisc.toMap("orderId", orderId, "roleTypeId", "PLACING_CUSTOMER"));                if (pRoles != null && pRoles.size() > 0)                    placingCustomer = EntityUtil.getFirst(pRoles);            } catch (GenericEntityException e) {                Debug.logError(e, "Problems looking up order payment preferences", module);                request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderErrorProcessingOfflinePayments", locale));                return "error";            }            if (paymentPrefs != null) {                Iterator i = paymentPrefs.iterator();                while (i.hasNext()) {                    // update the preference to received                    // TODO: updating payment preferences should be done as a service                     GenericValue ppref = (GenericValue) i.next();                    ppref.set("statusId", "PAYMENT_RECEIVED");                    ppref.set("authDate", UtilDateTime.nowTimestamp());                    toBeStored.add(ppref);                    // create a payment record                    Map results = null;                    try {                        results = dispatcher.runSync("createPaymentFromPreference", UtilMisc.toMap("orderPaymentPreferenceId", ppref.get("orderPaymentPreferenceId"),                                 "paymentFromId", placingCustomer.getString("partyId"), "comments", "Payment received offline and manually entered."));                    } catch (GenericServiceException e) {                        Debug.logError(e, "Failed to execute service createPaymentFromPreference", module);                        request.setAttribute("_ERROR_MESSAGE_", e.getMessage());                        return "error";                    }                     if ((results == null) || (results.get(ModelService.RESPONSE_MESSAGE).equals(ModelService.RESPOND_ERROR))) {                        Debug.logError((String) results.get(ModelService.ERROR_MESSAGE), module);                         request.setAttribute("_ERROR_MESSAGE_", (String) results.get(ModelService.ERROR_MESSAGE));                        return "error";                    }                }                // store the updated preferences                try {                    delegator.storeAll(toBeStored);                } catch (GenericEntityException e) {                    Debug.logError(e, "Problems storing payment information", module);                    request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemStoringReceivedPaymentInformation", locale));                    return "error";                }                // set the status of the order to approved                OrderChangeHelper.approveOrder(dispatcher, userLogin, orderId);            }        }        return "success";    }    public static String receiveOfflinePayment(HttpServletRequest request, HttpServletResponse response) {        HttpSession session = request.getSession();        LocalDispatcher dispatcher = (LocalDispatcher) request.getAttribute("dispatcher");        GenericDelegator delegator = (GenericDelegator) request.getAttribute("delegator");        GenericValue userLogin = (GenericValue) session.getAttribute("userLogin");        Locale locale = UtilHttp.getLocale(request);        String orderId = request.getParameter("orderId");        // get the order header & payment preferences        GenericValue orderHeader = null;        try {            orderHeader = delegator.findByPrimaryKey("OrderHeader", UtilMisc.toMap("orderId", orderId));        } catch (GenericEntityException e) {            Debug.logError(e, "Problems reading order header from datasource.", module);            request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemsReadingOrderHeaderInformation", locale));            return "error";        }        Double grandTotal = new Double(0.00);        if (orderHeader != null) {            grandTotal = orderHeader.getDouble("grandTotal");        }        // get the payment types to receive        List paymentMethodTypes = null;        try {            List pmtFields = UtilMisc.toList(new EntityExpr("paymentMethodTypeId", EntityOperator.NOT_EQUAL, "EXT_OFFLINE"));            paymentMethodTypes = delegator.findByAnd("PaymentMethodType", pmtFields);        } catch (GenericEntityException e) {            Debug.logError(e, "Problems getting payment types", module);            request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemsWithPaymentTypeLookup", locale));            return "error";        }        if (paymentMethodTypes == null) {        	request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemsWithPaymentTypeLookup", locale));            return "error";        }        List toBeStored = new LinkedList();        GenericValue placingCustomer = null;        try {            List pRoles = delegator.findByAnd("OrderRole", UtilMisc.toMap("orderId", orderId, "roleTypeId", "PLACING_CUSTOMER"));            if (pRoles != null && pRoles.size() > 0)                placingCustomer = EntityUtil.getFirst(pRoles);        } catch (GenericEntityException e) {            Debug.logError(e, "Problems looking up order payment preferences", module);            request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderErrorProcessingOfflinePayments", locale));            return "error";        }        Iterator pmti = paymentMethodTypes.iterator();        double paymentTally = 0.00;        while (pmti.hasNext()) {            GenericValue paymentMethodType = (GenericValue) pmti.next();            String paymentMethodTypeId = paymentMethodType.getString("paymentMethodTypeId");            String amountStr = request.getParameter(paymentMethodTypeId + "_amount");            String paymentReference = request.getParameter(paymentMethodTypeId + "_reference");            if (!UtilValidate.isEmpty(amountStr)) {                double paymentTypeAmount = 0.00;                try {                    paymentTypeAmount = NumberFormat.getNumberInstance(locale).parse(amountStr).doubleValue();                } catch (java.text.ParseException pe) {                	request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemsPaymentParsingAmount", locale));                    return "error";                }                if (paymentTypeAmount > 0.00) {                    paymentTally += paymentTypeAmount;                    // create the OrderPaymentPreference                    // TODO: this should be done with a service                    Map prefFields = UtilMisc.toMap("orderPaymentPreferenceId", delegator.getNextSeqId("OrderPaymentPreference").toString());                    GenericValue paymentPreference = delegator.makeValue("OrderPaymentPreference", prefFields);                    paymentPreference.set("paymentMethodTypeId", paymentMethodType.getString("paymentMethodTypeId"));                    paymentPreference.set("maxAmount", new Double(paymentTypeAmount));                    paymentPreference.set("statusId", "PAYMENT_RECEIVED");                    paymentPreference.set("orderId", orderId);                    paymentPreference.set("createdDate", UtilDateTime.nowTimestamp());                    if (userLogin != null) {                        paymentPreference.set("createdByUserLogin", userLogin.getString("userLoginId"));                    }                                        try {                        delegator.create(paymentPreference);                    } catch (GenericEntityException ex) {                        Debug.logError(ex, "Cannot create a new OrderPaymentPreference", module);                        request.setAttribute("_ERROR_MESSAGE_", ex.getMessage());                        return "error";                    }                    // create a payment record                    Map results = null;                    try {                        results = dispatcher.runSync("createPaymentFromPreference", UtilMisc.toMap("userLogin", userLogin,                                 "orderPaymentPreferenceId", paymentPreference.get("orderPaymentPreferenceId"), "paymentRefNum", paymentReference,                                 "paymentFromId", placingCustomer.getString("partyId"), "comments", "Payment received offline and manually entered."));                    } catch (GenericServiceException e) {                        Debug.logError(e, "Failed to execute service createPaymentFromPreference", module);                        request.setAttribute("_ERROR_MESSAGE_", e.getMessage());                        return "error";                    }                                         if ((results == null) || (results.get(ModelService.RESPONSE_MESSAGE).equals(ModelService.RESPOND_ERROR))) {                        Debug.logError((String) results.get(ModelService.ERROR_MESSAGE), module);                        request.setAttribute("_ERROR_MESSAGE_", (String) results.get(ModelService.ERROR_MESSAGE));                        return "error";                    }                }            }        }        // get the current payment prefs        GenericValue offlineValue = null;        List currentPrefs = null;        try {            List oppFields = UtilMisc.toList(new EntityExpr("orderId", EntityOperator.EQUALS, orderId),                    new EntityExpr("statusId", EntityOperator.NOT_EQUAL, "PAYMENT_CANCELLED"));            currentPrefs = delegator.findByAnd("OrderPaymentPreference", oppFields);        } catch (GenericEntityException e) {            Debug.logError(e, "ERROR: Unable to get existing payment preferences from order", module);        }        if (currentPrefs != null && currentPrefs.size() > 0) {            Iterator cpi = currentPrefs.iterator();            while (cpi.hasNext()) {                GenericValue cp = (GenericValue) cpi.next();                String paymentMethodType = cp.getString("paymentMethodTypeId");                if ("EXT_OFFLINE".equals(paymentMethodType)) {                    offlineValue = cp;                } else {                    Double cpAmt = cp.getDouble("maxAmount");                    if (cpAmt != null) {                        paymentTally += cpAmt.doubleValue();                    }                }            }        }        // now finish up        boolean okayToApprove = false;        if (paymentTally >= grandTotal.doubleValue()) {            // cancel the offline preference            okayToApprove = true;            if (offlineValue != null) {                offlineValue.set("statusId", "PAYMENT_CANCELLED");                toBeStored.add(offlineValue);            }        }        // store the status changes and the newly created payment preferences and payments        // TODO: updating order payment preference should be done with a service        try {            delegator.storeAll(toBeStored);        } catch (GenericEntityException e) {            Debug.logError(e, "Problems storing payment information", module);            request.setAttribute("_ERROR_MESSAGE_", UtilProperties.getMessage(resource_error,"OrderProblemStoringReceivedPaymentInformation", locale));            return "error";        }        if (okayToApprove) {            // update the status of the order and items            OrderChangeHelper.approveOrder(dispatcher, userLogin, orderId);        }        return "success";    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -