equivalence_tester.py 8.58 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility 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
# guarantees 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################

import zope.interface
from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, interfaces
from Products.ERP5Type.DivergenceMessage import DivergenceMessage
33 34
from Products.ERP5Type.Message import Message
from Products.PythonScripts.standard import html_quote as h
35

36
class EquivalenceTesterMixin:
37 38
  """
  Provides generic methods and helper methods to implement
39
  IEquivalenceTester
40 41 42 43 44 45
  """
  # Declarative security
  security = ClassSecurityInfo()
  security.declareObjectProtected(Permissions.AccessContentsInformation)

  # Declarative interfaces
46
  zope.interface.implements(interfaces.IEquivalenceTester,)
47

48 49
  # Implementation of IEquivalenceTester
  def testEquivalence(self, simulation_movement):
50 51 52 53 54 55 56 57 58 59 60 61 62 63
    """
    Tests if simulation_movement is divergent. Returns False (0)
    or True (1).

    If decision_movement is a simulation movement, use
    the recorded properties instead of the native ones.

    simulation_movement -- a simulation movement
    """
    return self.explain(simulation_movement) is not None

  def explain(self, simulation_movement):
    """
    Returns a single message which explain the nature of
64
    the equivalence of simulation_movement with its related
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
    delivery movement.

    If decision_movement is a simulation movement, use
    the recorded properties instead of the native ones.

    simulation_movement -- a simulation movement

    NOTE: this approach is incompatible with previous
    API which was returning a list.

    NOTE: should we provide compatibility here ?
    """
    delivery_movement = simulation_movement.getDeliveryValue()
    compare_result = self._compare(simulation_movement, delivery_movement)
    if compare_result is None:
      return None
    else:
      prevision_value, decision_value, message, mapping = compare_result
      return DivergenceMessage(
        object_relative_url=delivery_movement.getRelativeUrl(),
        simulation_movement=simulation_movement,
        decision_value=decision_value,
        prevision_value=prevision_value,
        tested_property=self.getTestedProperty(),
89
        tester_relative_url=self.getRelativeUrl(),
90 91 92 93
        message=message,
        mapping=mapping
        )

94 95 96 97 98 99 100
  @staticmethod
  def _getTestedPropertyValue(movement, property):
    """
    Getter returning the value for the given tested property
    """
    return movement.getProperty(property)

101 102 103 104 105 106 107 108 109 110 111
  def generateHashKey(self, movement):
    """
    Returns a hash key which can be used to optimise the
    matching algorithm between movements. The purpose
    of this hash key is to reduce the size of lists of
    movements which need to be compared using the compare
    method (quadratic complexity).

    If decision_movement is a simulation movement, use
    the recorded properties instead of the native ones.
    """
112
    tested_property = self.getTestedProperty()
113 114 115
    if movement.isPropertyRecorded(tested_property):
      value = movement.getRecordedProperty(tested_property)
    else:
116
      value = self._getTestedPropertyValue(movement, tested_property)
117
    return '%s/%r' % (tested_property, value)
118 119 120

  def compare(self, prevision_movement, decision_movement):
    """
121
    Returns True if prevision_movement and delivery_movement
Jérome Perrin's avatar
Jérome Perrin committed
122 123
    match. Returns False otherwise. The method is asymmetric and
    the order of parameters matters. For example, a sourcing
124 125 126 127 128 129 130
    rule may use a tester which makes sure that movements are
    delivered no sooner than 2 weeks before production but
    no later than the production date.

    If decision_movement is a simulation movement, use
    the recorded properties instead of the native ones.

131 132 133 134
    This method is used in three cases:
    * an applied rule containted movement vs. a generated movement list
    * a delivery containted movement vs. a generated movement list
    * a delivery containted movement vs. an applied rule containted movement
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
    """
    return (self._compare(prevision_movement, decision_movement) is None)

  def update(self, prevision_movement, decision_movement):
    """
    Updates decision_movement with properties from
    prevision_movement so that next call to
    compare returns True. This method is normally
    invoked to copy properties from simulation movements
    to delivery movements. It is also invoked to copy
    properties from temp simulation movements of
    Aggregated Amount Lists to pre-existing simulation
    movements.

    If decision_movement is a simulation movement, then
    do not update recorded properties.

    prevision_movement -- a simulation movement (prevision)

    decision_movement -- a delivery movement (decision)

    NOTE: recorded (forced) properties are not updated by
    expand.

    NOTE2: it is still unknown how to update properties from
    a simulation movement to the relevant level of
    delivery / line / cell.
    """
    decision_movement.edit(
      **self.getUpdatablePropertyDict(prevision_movement, decision_movement))

166 167 168 169 170 171
  def getExplanationMessage(self, simulation_movement):
    """
    Returns the HTML message that describes the detail of the
    divergence.
    """
    divergence_message = self.explain(simulation_movement)
172 173
    if divergence_message is None:
      return None
174 175
    # XXX explanation message should be provided by each class, each
    # portal type or each document.
176
    message = '<a href="${decision_url}">${property_name} of ${decision_value} of ${decision_type} ${decision_title}</a> of <a href="${delivery_url}">${delivery_title}</a> is different from <a href="${prevision_url}">planned ${property_name} of ${prevision_value}</a>.'
177 178
    decision_movement = self.getPortalObject().unrestrictedTraverse(
      divergence_message.getProperty('object_relative_url'))
179
    decision_delivery = decision_movement.getRootDeliveryValue()
180 181
    mapping = {
      'decision_url':decision_movement.absolute_url(),
182 183
      # TODO we need a way to map the property name to the business word,
      # eg. 'start_date' to 'Delivery Date' for trade etc.
184 185
      'property_name':divergence_message.getProperty('tested_property'),
      'decision_value':h(divergence_message.getProperty('decision_value')),
186
      'decision_type':decision_movement.getPortalType(),
187 188 189 190 191 192 193 194
      'decision_title':h(decision_movement.getTitleOrId()),
      'delivery_url':decision_delivery.absolute_url(),
      'delivery_title':h(decision_delivery.getTitleOrId()),
      'prevision_url':'#', # XXX it should be a link to the detailed view.
      'prevision_value':h(divergence_message.getProperty('prevision_value')),
      }
    return str(Message(domain='erp5_ui', message=message, mapping=mapping))

195 196 197 198 199 200 201 202
  # Placeholder for methods to override
  def _compare(self, prevision_movement, decision_movement):
    """
    If prevision_movement and decision_movement don't match, it returns a
    list : (prevision_value, decision_value, message, mapping)
    """
    raise NotImplementedError

203
  def getUpdatablePropertyDict(self, prevision_movement, decision_movement):
204
    """
Jérome Perrin's avatar
Jérome Perrin committed
205 206
    Returns a mapping of properties to update on decision_movement so that next
    call to compare against prevision_movement returns True.
207 208 209 210 211

    prevision_movement -- a simulation movement (prevision)

    decision_movement -- a delivery movement (decision)
    """
212 213 214
    tested_property = self.getTestedProperty()
    return {tested_property: self._getTestedPropertyValue(prevision_movement,
                                                          tested_property)}