DeliveryCell.py 7.26 KB
Newer Older
1
# -*- coding: utf-8 -*-
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2 3
##############################################################################
#
4
# Copyright (c) 2002, 2004 Nexedi SARL and Contributors. All Rights Reserved.
5
#                    Jean-Paul Smets-Solanes <jp@nexedi.com>
6
#                    Romain Courteaud <romain@nexedi.com>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#
# 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.
#
##############################################################################

31 32
import zope.interface

33
from Products.ERP5Type.Globals import InitializeClass, PersistentMapping
Jean-Paul Smets's avatar
Jean-Paul Smets committed
34 35 36
from AccessControl import ClassSecurityInfo
from Acquisition import aq_base

37
from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
Sebastien Robin's avatar
Sebastien Robin committed
38
from Products.ERP5Type.Base import Base
Jean-Paul Smets's avatar
Jean-Paul Smets committed
39 40 41

from Products.ERP5.Document.OrderLine import OrderLine
from Products.ERP5.Document.Movement import Movement
42
from Products.ERP5.Document.MappedValue import MappedValue
43
from Products.ERP5.Document.ImmobilisationMovement import ImmobilisationMovement
Jean-Paul Smets's avatar
Jean-Paul Smets committed
44 45 46

from zLOG import LOG

47
class DeliveryCell(MappedValue, Movement, ImmobilisationMovement):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
48 49 50 51 52 53 54 55 56 57 58 59
    """
      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()
60
    security.declareObjectProtected(Permissions.AccessContentsInformation)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74

    # 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
    # Declarative interfaces
    zope.interface.implements(interfaces.IDivergenceController,)
77 78
    
    # MatrixBox methods      
79 80
    security.declareProtected( Permissions.AccessContentsInformation,
                               'hasCellContent' )
Jean-Paul Smets's avatar
Jean-Paul Smets committed
81
    def hasCellContent(self, base_id='movement'):
82
      """A cell cannot have cell content itself.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
83 84 85 86 87 88 89 90 91 92
      """
      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
      """
93
      return self.getParentValue().getParentValue().isAccountable()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
94

95
    security.declareProtected(Permissions.AccessContentsInformation, 'getPrice')
96
    def getPrice(self, *args, **kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
97
      """
98
      call Movement.getPrice
99
      """
100 101 102
      return Movement.getPrice(self, *args, **kw)

    security.declareProtected(Permissions.AccessContentsInformation, 'getTotalPrice')
103
    def getTotalPrice(self, default=0.0, *args, **kw):
104 105 106
      """
      call Movement.getTotalPrice
      """
107
      return Movement.getTotalPrice(self, default=default, *args, **kw)
108

109 110
    security.declareProtected(Permissions.AccessContentsInformation,
                              'getRootDeliveryValue')
Sebastien Robin's avatar
Sebastien Robin committed
111 112 113 114
    def getRootDeliveryValue(self):
      """
      Returns the root delivery responsible of this cell
      """
115
      return self.getParentValue().getRootDeliveryValue()
Sebastien Robin's avatar
Sebastien Robin committed
116

Jean-Paul Smets's avatar
Jean-Paul Smets committed
117
    # Simulation Consistency Check
118
    def getSimulationQuantity(self):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
119 120 121 122 123 124 125 126 127 128 129
      """
          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:
130
          return result[0].quantity
Jean-Paul Smets's avatar
Jean-Paul Smets committed
131
        return None
132

133 134 135 136
    security.declareProtected( Permissions.ModifyPortalContent,
                               'notifyAfterUpdateRelatedContent' )
    def notifyAfterUpdateRelatedContent(self, previous_category_url,
                                              new_category_url):
137
      """
138 139
        Membership Crirerions and Category List are same in DeliveryCell
        Must update it (or change implementation to remove data duplication)
140 141 142
      """
      update_method = self.portal_categories.updateRelatedCategory
      predicate_value = self.getPredicateValueList()
143 144 145 146
      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
147

Romain Courteaud's avatar
Romain Courteaud committed
148 149 150 151 152 153
    # 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
154
      """
Romain Courteaud's avatar
Romain Courteaud committed
155 156
        Store variation_category_list, in order to store new value of
        industrial_phase after.
Sebastien Robin's avatar
Sebastien Robin committed
157
      """
Romain Courteaud's avatar
Romain Courteaud committed
158 159 160 161 162
      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)
163 164
#       if self.isSimulated():
#         self.getRootDeliveryValue().activate().propagateResourceToSimulation()
Sebastien Robin's avatar
Sebastien Robin committed
165 166
      # This one must be the last
      if kw.has_key('item_id_list'):
Romain Courteaud's avatar
Romain Courteaud committed
167
        self._setItemIdList(kw['item_id_list'])
Sebastien Robin's avatar
Sebastien Robin committed
168

169 170
    security.declareProtected(Permissions.ModifyPortalContent,
                              'updateSimulationDeliveryProperties')
171 172
    def updateSimulationDeliveryProperties(self, movement_list = None):
      """
173 174 175
      Set properties delivery_ratio and delivery_error for each
      simulation movement in movement_list (all movements by default),
      according to this delivery calculated quantity
176
      """
177
      parent = self.getParentValue()
178
      if parent is not None:
179
        parent = parent.getParentValue()
180 181
        if parent is not None:
          parent.updateSimulationDeliveryProperties(movement_list, self)