DeliveryCell.py 6.96 KB
Newer Older
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1 2
##############################################################################
#
3
# Copyright (c) 2002, 2004 Nexedi SARL and Contributors. All Rights Reserved.
4
#                    Jean-Paul Smets-Solanes <jp@nexedi.com>
5
#                    Romain Courteaud <romain@nexedi.com>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
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 33 34
#
# 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.
#
##############################################################################

from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo
from Acquisition import aq_base

from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
Sebastien Robin's avatar
Sebastien Robin committed
35
from Products.ERP5Type.Base import Base
Jean-Paul Smets's avatar
Jean-Paul Smets committed
36 37 38

from Products.ERP5.Document.OrderLine import OrderLine
from Products.ERP5.Document.Movement import Movement
39
from Products.ERP5.Document.MappedValue import MappedValue
40
from Products.ERP5.Document.ImmobilisationMovement import ImmobilisationMovement
Jean-Paul Smets's avatar
Jean-Paul Smets committed
41 42 43

from zLOG import LOG

44
class DeliveryCell(MappedValue, Movement, ImmobilisationMovement):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
45 46 47 48 49 50 51 52 53 54 55 56
    """
      A DeliveryCell allows to define specific quantities
      for each variation of a resource in a delivery line.
    """

    meta_type = 'ERP5 Delivery Cell'
    portal_type = 'Delivery Cell'
    isCell = 1
    isMovement = 1

    # Declarative security
    security = ClassSecurityInfo()
57
    security.declareObjectProtected(Permissions.AccessContentsInformation)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

    # Declarative interfaces
    __implements__ = ( Interface.Variated, )

    # Declarative properties
    property_sheets = ( PropertySheet.Base
                      , PropertySheet.CategoryCore
                      , PropertySheet.Arrow
                      , PropertySheet.Amount
                      , PropertySheet.Task
                      , PropertySheet.Movement
                      , PropertySheet.Price
                      , PropertySheet.Predicate
                      , PropertySheet.MappedValue
                      , PropertySheet.ItemAggregation
                      )

75 76
    
    # MatrixBox methods      
77 78
    security.declareProtected( Permissions.AccessContentsInformation,
                               'hasCellContent' )
Jean-Paul Smets's avatar
Jean-Paul Smets committed
79
    def hasCellContent(self, base_id='movement'):
80
      """A cell cannot have cell content itself.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
81 82 83 84 85 86 87 88 89 90
      """
      return 0

    security.declareProtected(Permissions.AccessContentsInformation, 'isAccountable')
    def isAccountable(self):
      """
        Returns 1 if this needs to be accounted
        Only account movements which are not associated to a delivery
        Whenever delivery is there, delivery has priority
      """
91
      return self.getParentValue().getParentValue().isAccountable()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
92

93
    security.declareProtected(Permissions.AccessContentsInformation, 'getPrice')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
94 95
    def getPrice(self, context=None, REQUEST=None, **kw):
      """
96
      call Movement.getPrice
97
      """
98
      return Movement.getPrice(self, context=context, REQUEST=REQUEST, **kw)
99

100 101
    security.declareProtected(Permissions.AccessContentsInformation,
                              'getRootDeliveryValue')
Sebastien Robin's avatar
Sebastien Robin committed
102 103 104 105
    def getRootDeliveryValue(self):
      """
      Returns the root delivery responsible of this cell
      """
106
      return self.getParentValue().getRootDeliveryValue()
Sebastien Robin's avatar
Sebastien Robin committed
107

Jean-Paul Smets's avatar
Jean-Paul Smets committed
108
    # Simulation Consistency Check
109
    def getSimulationQuantity(self):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
110 111 112 113 114 115 116 117 118 119 120
      """
          Computes the quantities in the simulation
      """
      if isinstance(self, OrderLine):
        result = self.OrderLine_zGetRelatedQuantity(uid=self.getUid())
        if len(result) > 0:
          return result[0].quantity
        return None
      else:
        result = self.DeliveryLine_zGetRelatedQuantity(uid=self.getUid())
        if len(result) > 0:
121
          return result[0].quantity
Jean-Paul Smets's avatar
Jean-Paul Smets committed
122
        return None
123

124 125 126 127
    security.declareProtected( Permissions.ModifyPortalContent,
                               'notifyAfterUpdateRelatedContent' )
    def notifyAfterUpdateRelatedContent(self, previous_category_url,
                                              new_category_url):
128
      """
129 130
        Membership Crirerions and Category List are same in DeliveryCell
        Must update it (or change implementation to remove data duplication)
131 132 133
      """
      update_method = self.portal_categories.updateRelatedCategory
      predicate_value = self.getPredicateValueList()
134 135 136 137
      new_predicate_value = map(lambda c: update_method(c,
              previous_category_url, new_category_url), predicate_value)
      self._setPredicateValueList(new_predicate_value)
      # No reindex needed since uid stable
Sebastien Robin's avatar
Sebastien Robin committed
138

Romain Courteaud's avatar
Romain Courteaud committed
139 140 141 142 143 144
    # XXX FIXME: option variation are today not well implemented
    # This little hack is needed to make the matrixbox working
    # in DeliveryLine_viewIndustrialPhase
    # Generic form (DeliveryLine_viewOption) is required
    security.declarePrivate('_edit')
    def _edit(self, REQUEST=None, force_update=0, reindex_object=0, **kw):
Sebastien Robin's avatar
Sebastien Robin committed
145
      """
Romain Courteaud's avatar
Romain Courteaud committed
146 147
        Store variation_category_list, in order to store new value of
        industrial_phase after.
Sebastien Robin's avatar
Sebastien Robin committed
148
      """
Romain Courteaud's avatar
Romain Courteaud committed
149 150 151 152 153
      if kw.has_key('variation_category_list'):
        self._setVariationCategoryList(kw['variation_category_list'])
        kw.pop('variation_category_list')
      MappedValue._edit(self, REQUEST=REQUEST, force_update=force_update,
                        reindex_object=reindex_object, **kw)
154 155
#       if self.isSimulated():
#         self.getRootDeliveryValue().activate().propagateResourceToSimulation()
Sebastien Robin's avatar
Sebastien Robin committed
156 157
      # This one must be the last
      if kw.has_key('item_id_list'):
Romain Courteaud's avatar
Romain Courteaud committed
158
        self._setItemIdList(kw['item_id_list'])
Sebastien Robin's avatar
Sebastien Robin committed
159

160 161
    security.declareProtected(Permissions.ModifyPortalContent,
                              'updateSimulationDeliveryProperties')
162 163
    def updateSimulationDeliveryProperties(self, movement_list = None):
      """
164 165 166
      Set properties delivery_ratio and delivery_error for each
      simulation movement in movement_list (all movements by default),
      according to this delivery calculated quantity
167
      """
168
      parent = self.getParentValue()
169
      if parent is not None:
170
        parent = parent.getParentValue()
171 172
        if parent is not None:
          parent.updateSimulationDeliveryProperties(movement_list, self)