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

📄 contentservicescomplex.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * $Id: ContentServicesComplex.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2001-2005 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.content.content;import java.sql.Timestamp;import java.util.ArrayList;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Locale;import java.util.Map;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.StringUtil;import org.ofbiz.base.util.UtilDateTime;import org.ofbiz.base.util.UtilMisc;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.EntityConditionList;import org.ofbiz.entity.condition.EntityExpr;import org.ofbiz.entity.condition.EntityOperator;import org.ofbiz.entity.util.EntityUtil;import org.ofbiz.minilang.MiniLangException;import org.ofbiz.minilang.SimpleMapProcessor;import org.ofbiz.service.DispatchContext;import org.ofbiz.service.ServiceUtil;/** * ContentServicesComplex Class * * @author     <a href="mailto:byersa@automationgroups.com">Al Byers</a> * @version    $Rev: 5462 $ * @since      2.2 * *  */public class ContentServicesComplex {    public static final String module = ContentServicesComplex.class.getName();   /*    * A service that returns a list of ContentAssocDataResourceViewFrom/To views that are    * associated with the passed in contentId. Other conditions are also applied, including:    * a list of contentAssocTypeIds or contentTypeIds that the result set views must match.    * A direction (From or To - case insensitive).    * From and thru dates or date strings.    * A mapKey value.    */    public static Map getAssocAndContentAndDataResource(DispatchContext dctx, Map context) {        GenericDelegator delegator = dctx.getDelegator();        List assocTypes = (List) context.get("assocTypes");         List contentTypes = (List)context.get("contentTypes");        Timestamp fromDate = (Timestamp)context.get("fromDate");        Timestamp thruDate = (Timestamp)context.get("thruDate");        String fromDateStr = (String)context.get("fromDateStr");        String thruDateStr = (String)context.get("thruDateStr");        String contentId = (String)context.get("contentId");        String direction = (String)context.get("direction");        String mapKey = (String)context.get("mapKey");        Boolean nullThruDatesOnly = (Boolean)context.get("nullThruDatesOnly");        Map results = getAssocAndContentAndDataResourceMethod(delegator,                          contentId, mapKey, direction, fromDate, thruDate,                          fromDateStr, thruDateStr, assocTypes, contentTypes);        return results;    }    public static Map getAssocAndContentAndDataResourceMethod(GenericDelegator delegator, String contentId, String mapKey, String direction, Timestamp fromDate, Timestamp thruDate, String fromDateStr, String thruDateStr, List assocTypes, List contentTypes) {        List exprList = new ArrayList();        EntityExpr joinExpr = null;        EntityExpr expr = null;        String viewName = null;        if (mapKey != null ) {            EntityExpr mapKeyExpr = new EntityExpr("caMapKey", EntityOperator.EQUALS, mapKey);            exprList.add(mapKeyExpr);        }        if (direction != null && direction.equalsIgnoreCase("From") ) {            joinExpr = new EntityExpr("caContentIdTo", EntityOperator.EQUALS, contentId);            viewName = "ContentAssocDataResourceViewFrom";        } else {            joinExpr = new EntityExpr("caContentId", EntityOperator.EQUALS, contentId);            viewName = "ContentAssocDataResourceViewTo";        }        exprList.add(joinExpr);        if (assocTypes != null && assocTypes.size() > 0) {            List exprListOr = new ArrayList();            Iterator it = assocTypes.iterator();            while (it.hasNext()) {                String assocType = (String)it.next();                expr = new EntityExpr("caContentAssocTypeId", EntityOperator.EQUALS, assocType);                exprListOr.add(expr);            }            EntityConditionList assocExprList = new EntityConditionList(exprListOr, EntityOperator.OR);            exprList.add(assocExprList);        }        if (contentTypes != null && contentTypes.size() > 0) {            List exprListOr = new ArrayList();            Iterator it = contentTypes.iterator();            while (it.hasNext()) {                String contentType = (String)it.next();                expr = new EntityExpr("contentTypeId",                                   EntityOperator.EQUALS, contentType);                exprListOr.add(expr);            }            EntityConditionList contentExprList = new EntityConditionList(exprListOr, EntityOperator.OR);            exprList.add(contentExprList);        }        if (fromDate == null && fromDateStr != null ) {            fromDate = UtilDateTime.toTimestamp( fromDateStr );	}        if (thruDate == null && thruDateStr != null ) {            thruDate = UtilDateTime.toTimestamp( thruDateStr );	}        if (fromDate != null) {            EntityExpr fromExpr = new EntityExpr("caFromDate", EntityOperator.LESS_THAN, fromDate);            exprList.add(fromExpr);        }        if (thruDate != null) {            List thruList = new ArrayList();            //thruDate = UtilDateTime.getDayStart(thruDate, daysLater);            EntityExpr thruExpr = new EntityExpr("caThruDate", EntityOperator.LESS_THAN, thruDate);            thruList.add(thruExpr);            EntityExpr thruExpr2 = new EntityExpr("caThruDate", EntityOperator.EQUALS, null);            thruList.add(thruExpr2);            EntityConditionList thruExprList = new EntityConditionList(thruList, EntityOperator.OR);            exprList.add(thruExprList);        } else if (fromDate != null) {            List thruList = new ArrayList();            EntityExpr thruExpr = new EntityExpr("caThruDate", EntityOperator.GREATER_THAN, fromDate);            thruList.add(thruExpr);            EntityExpr thruExpr2 = new EntityExpr("caThruDate", EntityOperator.EQUALS, null);            thruList.add(thruExpr2);            EntityConditionList thruExprList = new EntityConditionList(thruList, EntityOperator.OR);            exprList.add(thruExprList);        }        EntityConditionList assocExprList = new EntityConditionList(exprList, EntityOperator.AND);        List relatedAssocs = null;        try {            //relatedAssocs = delegator.findByCondition(viewName, joinExpr,             relatedAssocs = delegator.findByCondition(viewName, assocExprList,                                   new ArrayList(),UtilMisc.toList("caFromDate"));        } catch(GenericEntityException e) {            return ServiceUtil.returnError(e.getMessage());        }        for (int i=0; i < relatedAssocs.size(); i++) {            GenericValue a = (GenericValue)relatedAssocs.get(i);                Debug.logVerbose(" contentId:" + a.get("contentId")                         + " To:" + a.get("caContentIdTo")                         + " fromDate:" + a.get("caFromDate")                         + " thruDate:" + a.get("caThruDate")                         + " AssocTypeId:" + a.get("caContentAssocTypeId")                         ,null);        }        HashMap results = new HashMap();        results.put("entityList", relatedAssocs);        return results;    }   /*    * A service that returns a list of ContentAssocDataResourceViewFrom/To views that are    * associated with the passed in contentId. Other conditions are also applied, including:    * a list of contentAssocTypeIds or contentTypeIds that the result set views must match.    * A direction (From or To - case insensitive).    * From and thru dates or date strings.    * A mapKey value.    */    public static Map getAssocAndContentAndDataResourceCache(DispatchContext dctx, Map context) {        GenericDelegator delegator = dctx.getDelegator();        List assocTypes = (List) context.get("assocTypes");         String assocTypesString = (String)context.get("assocTypesString");        if (UtilValidate.isNotEmpty(assocTypesString)) {            List lst = StringUtil.split(assocTypesString, "|");

⌨️ 快捷键说明

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