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

Jean-Paul Smets's avatar
Jean-Paul Smets committed
33 34
from AccessControl import ClassSecurityInfo

35
from Products.ERP5Type import Permissions, PropertySheet, interfaces
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
class DeliveryCell(MappedValue, Movement, ImmobilisationMovement):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
43 44 45 46 47 48 49 50 51 52 53
    """
      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

    # Declarative security
    security = ClassSecurityInfo()
54
    security.declareObjectProtected(Permissions.AccessContentsInformation)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68

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

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

89
    security.declareProtected(Permissions.AccessContentsInformation, 'getPrice')
90
    def getPrice(self, *args, **kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
91
      """
92
      call Movement.getPrice
93
      """
94 95 96
      return Movement.getPrice(self, *args, **kw)

    security.declareProtected(Permissions.AccessContentsInformation, 'getTotalPrice')
97
    def getTotalPrice(self, default=0.0, *args, **kw):
98 99 100
      """
      call Movement.getTotalPrice
      """
101
      return Movement.getTotalPrice(self, default=default, *args, **kw)
102

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

111 112 113 114
    security.declareProtected( Permissions.ModifyPortalContent,
                               'notifyAfterUpdateRelatedContent' )
    def notifyAfterUpdateRelatedContent(self, previous_category_url,
                                              new_category_url):
115
      """
116 117
        Membership Crirerions and Category List are same in DeliveryCell
        Must update it (or change implementation to remove data duplication)
118 119 120
      """
      update_method = self.portal_categories.updateRelatedCategory
      predicate_value = self.getPredicateValueList()
121 122 123 124
      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
125

Romain Courteaud's avatar
Romain Courteaud committed
126 127 128 129
    # 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
130
    def _edit(self, **kw):
Sebastien Robin's avatar
Sebastien Robin committed
131
      """
Romain Courteaud's avatar
Romain Courteaud committed
132 133
        Store variation_category_list, in order to store new value of
        industrial_phase after.
Sebastien Robin's avatar
Sebastien Robin committed
134
      """
135 136 137 138 139 140 141
      edit_order = ['variation_category_list', # edit this one first
                    'item_id_list']            # this one must be the last
      edit_order[1:1] = [x for x in kw.pop('edit_order', ())
                           if x not in edit_order]
      # Base._edit updates unordered properties first
      edit_order[1:1] = [x for x in kw if x not in edit_order]
      MappedValue._edit(self, edit_order=edit_order, **kw)
142 143
#       if self.isSimulated():
#         self.getRootDeliveryValue().activate().propagateResourceToSimulation()
Sebastien Robin's avatar
Sebastien Robin committed
144

145 146
    security.declareProtected(Permissions.ModifyPortalContent,
                              'updateSimulationDeliveryProperties')
147 148
    def updateSimulationDeliveryProperties(self, movement_list = None):
      """
149 150 151
      Set properties delivery_ratio and delivery_error for each
      simulation movement in movement_list (all movements by default),
      according to this delivery calculated quantity
152
      """
153
      parent = self.getParentValue()
154
      if parent is not None:
155
        parent = parent.getParentValue()
156 157
        if parent is not None:
          parent.updateSimulationDeliveryProperties(movement_list, self)
158 159 160 161 162

    security.declareProtected(Permissions.AccessContentsInformation, 'isMovement')
    def isMovement(self):
      return 1

163 164 165 166 167 168 169 170 171 172
    # Override getQuantityUnitXXX to negate same methods defined in
    # Amount class. Because cell must acquire quantity unit from line
    # not from resource.
    security.declareProtected( Permissions.AccessContentsInformation,
                               'getQuantityUnitValue')
    def getQuantityUnitValue(self):
      return self.getParentValue().getQuantityUnitValue()

    security.declareProtected( Permissions.AccessContentsInformation,
                               'getQuantityUnit')
173 174
    def getQuantityUnit(self, checked_permission=None):
      return self.getParentValue().getQuantityUnit(checked_permission=checked_permission)