TradeCondition.py 4.22 KB
Newer Older
1
# -*- coding: utf8 -*-
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2 3
##############################################################################
#
4
# Copyright (c) 2002-2009 Nexedi SA and Contributors. All Rights Reserved.
5
#                    Jean-Paul Smets-Solanes <jp@nexedi.com>
6
#                    Romain Courteaud <romain@nexedi.com>
7
#                    Łukasz Nowak <luke@nexedi.com>
Jean-Paul Smets's avatar
Jean-Paul Smets committed
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 35
#
# 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 Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
36
from Products.ERP5.Document.Transformation import Transformation
37
from Products.ERP5.Document.Path import Path
38
from Products.ERP5.AggregatedAmountList import AggregatedAmountList
Jean-Paul Smets's avatar
Jean-Paul Smets committed
39

40
class TradeCondition(Path, Transformation):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
41 42 43 44 45
    """
      Trade Conditions are used to store the conditions (payment, logistic,...)
      which should be applied (and used in the orders) when two companies make
      business together
    """
46 47
    edited_property_list = ['price', 'causality','resource','quantity',
        'base_application_list', 'base_contribution_list']
Jean-Paul Smets's avatar
Jean-Paul Smets committed
48 49 50

    meta_type = 'ERP5 Trade Condition'
    portal_type = 'Trade Condition'
51
    isPredicate = 1
Jean-Paul Smets's avatar
Jean-Paul Smets committed
52 53 54

    # Declarative security
    security = ClassSecurityInfo()
55
    security.declareObjectProtected(Permissions.AccessContentsInformation)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
56 57 58 59 60 61

    # Declarative properties
    property_sheets = ( PropertySheet.Base
                      , PropertySheet.XMLObject
                      , PropertySheet.CategoryCore
                      , PropertySheet.DublinCore
Yoshinori Okuji's avatar
Yoshinori Okuji committed
62
                      , PropertySheet.Folder
Sebastien Robin's avatar
Sebastien Robin committed
63
                      , PropertySheet.Comment
Jean-Paul Smets's avatar
Jean-Paul Smets committed
64 65
                      , PropertySheet.Arrow
                      , PropertySheet.TradeCondition
66
                      , PropertySheet.Order
Jean-Paul Smets's avatar
Jean-Paul Smets committed
67 68
                      )

69 70 71 72 73 74
    def updateAggregatedAmountList(self, context, **kw):
      existing_movement_list = context.contentValues()
      aggregated_amount_list = self.getAggregatedAmountList(context = context,
          **kw)
      modified_resource_list = []
      for amount in aggregated_amount_list:
75 76
        update_kw = {}
        for p in self.edited_property_list:
77 78 79 80 81 82 83
          update_kw[p] = amount.getProperty(p)
        for movement in existing_movement_list:
          if movement.getProperty('resource') == update_kw['resource']:
            movement.edit(**update_kw)
            modified_resource_list.append(update_kw['resource'])
      return [amount for amount in aggregated_amount_list if
          amount.getResource() not in modified_resource_list]
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

    def getAggregatedAmountList(self, context, **kw):
      result = AggregatedAmountList()

      need_to_run = 1
      movement_list = []
      while need_to_run:
        need_to_run = 0
        for model in self.objectValues(portal_type='Trade Model Line'):
          model_result = model.getAggregatedAmountList(context,
            movement_list=movement_list, current_aggregated_amount_list = result,
            **kw)
          result.extend(model_result)
        if len(result) != len(movement_list):
          # something was added
          need_to_run = 1
        movement_list = result

      return result