# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2009-2010 Nexedi SA and Contributors. All Rights Reserved. # Jean-Paul Smets-Solanes <jp@nexedi.com> # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## """ Products.ERP5.interfaces.business_process """ from zope.interface import Interface class IBusinessPathProcess(Interface): """Business Path Process interface specification IBusinessPathProcess defines Business Process APIs related to Business Path completion status and expected completion dates. IMPORTANT: - explanation implicitely defines a subtree of the simulation Order, Order Line, Delivery or Delivery Line are simple cases which consider all children of delivery related movements + all parent simulation movement Applied rule is another form of explanation, which defines implicitely all children + all parent simulation movements TODO: - find a way in getTradePhaseMovementList to narrow down parameters to be copied (this used to be done through rule parameter in provivate method) - Is there a reason why trade_phase should be a list in getBusinessPathValueList ? (for rules ?) """ def getBusinessPathValueList(trade_phase=None, context=None, predecessor=None, successor=None, **kw): """Returns the list of contained Business Path documents trade_phase -- filter by trade phase context -- a context to test each Business Path on and filter out Business Path which do not match predecessor -- filter by trade state predecessor successor -- filter by trade state successor **kw -- same arguments as those passed to searchValues / contentValues """ def isBusinessPathCompleted(explanation, business_path): """Returns True if given Business Path document is completed in the context of provided explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document """ def isBusinessPathPartiallyCompleted(explanation, business_path): """Returns True if given Business Path document is partially completed in the context of provided explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document """ def getExpectedBusinessPathCompletionDate(explanation, business_path, delay_mode=None): """Returns the expected completion date of given Business Path document in the context of provided explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document delay_mode -- optional value to specify calculation mode ('min', 'max') if no value specified use average delay """ def getExpectedBusinessPathStartAndStopDate(explanation, business_path, delay_mode=None): """Returns the expected start and stop dates of given Business Path document in the context of provided explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document delay_mode -- optional value to specify calculation mode ('min', 'max') if no value specified use average delay """ class IBuildableBusinessPathProcess(Interface): """Buildable Business Path Process interface specification IBuildableBusinessPathProcess defines an API to build simulation movements related to business pathj in the context of a given explanation. """ def getBuildableBusinessPathValueList(explanation): """Returns the list of Business Path which are buildable by taking into account trade state dependencies between Business Path. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getPartiallyBuildableBusinessPathValueList(explanation): """Returns the list of Business Path which are partially buildable by taking into account trade state dependencies between Business Path. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isBusinessPathBuildable(explanation, business_path): """Returns True if any of the related Simulation Movement is buildable and if the predecessor trade state is completed. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document """ def isBusinessPatPartiallyBuildable(explanation, business_path): """Returns True if any of the related Simulation Movement is buildable and if the predecessor trade state is partially completed. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree business_path -- a Business Path document """ def isBuildable(explanation): """Returns True is this business process has at least one Business Path which is buildable """ def isPartiallyBuildable(explanation): """Returns True is this business process has at least one Business Path which is partially buildable """ class ITradeStateProcess(Interface): """Trade State Process interface specification ITradeStateProcess defines Business Process APIs related to Trade State completion status and expected completion dates. ITradeStateProcess APIs recursively browse trade states and business path to provide completion status and expected completion dates. For example, a complete trade state is a trade state for which all predecessor trade states are completed and for which all business path applicable to the given explanation are also completed. """ def getTradeStateList(): """Returns list of all trade_state of this Business Process by looking at successor and predecessor values of contained Business Path. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isInitialTradeState(trade_state): """Returns True if given 'trade_state' has no successor related Business Path. trade_state -- a Trade State category """ def isFinalTradeState(trade_state): """Returns True if given 'trade_state' has no predecessor related Business Path. trade_state -- a Trade State category """ def getSuccessorTradeStateList(explanation, trade_state): """Returns the list of successor states in the context of given explanation. This list is built by looking at all successor of business path involved in given explanation and which predecessor is the given trade_phase. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_state -- a Trade State category """ def getPredecessorTradeStateList(explanation, trade_state): """Returns the list of predecessor states in the context of given explanation. This list is built by looking at all predecessor of business path involved in given explanation and which sucessor is the given trade_phase. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_state -- a Trade State category """ def getCompletedTradeStateList(explanation): """Returns the list of Trade States which are completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getPartiallyCompletedTradeStateList(explanation): """Returns the list of Trade States which are partially completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getLatestCompletedTradeStateList(explanation): """Returns the list of completed trade states which predecessor states are completed and for which no successor state is completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getLatestPartiallyCompletedTradeStateList(explanation): """Returns the list of completed trade states which predecessor states are completed and for which no successor state is partially completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isTradeStateCompleted(explanation, trade_state): """Returns True if all predecessor trade states are completed and if no successor trade state is completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_state -- a Trade State category """ def isTradeStatePartiallyCompleted(explanation, trade_state): """Returns True if all predecessor trade states are completed and if no successor trade state is partially completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_state -- a Trade State category """ def getExpectedTradeStateCompletionDate(explanation, trade_state, delay_mode=None): """Returns the date at which the give trade state is expected to be completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_state -- a Trade State category delay_mode -- optional value to specify calculation mode ('min', 'max') if no value specified use average delay """ class ITradePhaseProcess(Interface): """Trade Phase Process interface specification ITradePhaseProcess defines Business Process APIs related to Trade Phase completion status and expected completion dates. Unlike ITradeStateProcess, ITradePhaseProcess APIs related to completion do not take into account relations between trade states and business path. For example, a completed trade phase is a trade phase for which all business path applicable to the given explanation are completed. It does not matter whether the predecessor trade state of related business path is completed or not. """ def getTradePhaseList(): """Returns list of all trade_phase of this Business Process by looking at trade_phase values of contained Business Path. """ def getCompletedTradePhaseList(explanation): """Returns the list of Trade Phases which are completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getPartiallyCompletedTradePhaseList(explanation): """Returns the list of Trade Phases which are partially completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isTradePhaseCompleted(explanation, trade_phase): """Returns True all business path with given trade_phase applicable to given explanation are completed. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_phase -- a Trade Phase category """ def isTradePhasePartiallyCompleted(explanation, trade_phase): """Returns True at least one business path with given trade_phase applicable to given explanation is partially completed or completed. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_phase -- a Trade Phase category """ def getExpectedTradePhaseCompletionDate(explanation, trade_phase, delay_mode=None): """Returns the date at which the give trade phase is expected to be completed in the context of given explanation, taking into account the graph of date constraints defined by business path and business states. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree trade_phase -- a Trade Phase category delay_mode -- optional value to specify calculation mode ('min', 'max') if no value specified use average delay """ def getRemainingTradePhaseList(business_path, trade_phase_list=None): """Returns the list of remaining trade phases which to be achieved as part of a business process. This list is calculated by analysing the graph of business path and trade states, starting from a given business path. The result if filtered by a list of trade phases. This method is useful mostly for production and MRP to manage a distributed supply and production chain. business_path -- a Business Path document trade_phase_list -- if provided, the result is filtered by it after being collected - ???? useful ? XXX-JPS ? NOTE: explanation is not involved here because we consider here that self is the result of asUnionBusinessProcess and thus only contains applicable Business Path to a given simulation subtree. Since the list of remaining trade phases does not depend on exact values in the simulation, we did not include the explanation. However, this makes the API less uniform. """ def getTradePhaseMovementList(explanation, amount, trade_phase=None, delay_mode=None): """Returns a list of movement with appropriate arrow and dates, based on the Business Path definitions, provided 'amount' and optional trade phases. If no trade_phase is provided, the trade_phase defined on the Amount is used instead. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree amount -- Amount (quantity, resource) trade_phase -- optional Trade Phase category delay_mode -- optional value to specify calculation mode ('min', 'max') if no value specified use average delay """ class IBusinessProcess(IBusinessPathProcess, IBuildableBusinessPathProcess, ITradeStateProcess, ITradePhaseProcess, ): """Business Process interface specification. Business Process APIs are used to manage the completion status, the completion dates, the start date and stop date, and trigger build process of a complex simulation process in ERP5. """ def isCompleted(explanation): """Returns True is all applicable Trade States and Trade Phases are completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isBuildable(explanation): """Returns True is one Business Path of this Business Process is buildable in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def isPartiallyBuildable(explanation): """Returns True is one Business Path of this Business Process is partially buildable in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def getExpectedCompletionDate(explanation, delay_mode=None): """Returns the expected date at which all applicable Trade States and Trade Phases are completed in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree """ def build(explanation, include_partially_buildable=False): """Build whatever is buildable in the context of given explanation. explanation -- an Order, Order Line, Delivery or Delivery Line which implicitely defines a simulation subtree include_partially_buildable -- if set to True, also build partially buildable business path. Else only build strictly buildable path. """