Commit 60296f4f authored by Xiaowu Zhang's avatar Xiaowu Zhang

erp5_production_planning: use custom getcell method

for optimisation
parent cf2985df
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2016 Nexedi SA and Contributors. All Rights Reserved.
# Cédric Le Ninivin <cedric.leninivin@nexedi.com>
#
# 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 AccessControl import ClassSecurityInfo
from Products.ERP5.Document.Delivery import Delivery
from Products.ERP5Type import Permissions
from Products.ERP5Type.Cache import transactional_cached
class ProductionPlanning(Delivery):
portal_type = 'Production Planning'
security = ClassSecurityInfo()
security.declareProtected(Permissions.AccessContentsInformation,
'getProductionPlanningCell')
def getProductionPlanningCell(self, *cell_index, **kw):
_production_planning_dict = self.getProductionPlanningDict()
return _production_planning_dict.get(cell_index)
security.declareProtected(Permissions.AccessContentsInformation,
'getProductionPlanningDict')
def getProductionPlanningDict(self, **kw):
return self._getProductionPlanningDict(**kw)
@transactional_cached(key_method=lambda self, **kw:
(self.getRelativeUrl(), tuple(kw.items())))
def _getProductionPlanningDict(self, **kw):
production_planning_dict = {}
cell_getter = self.getCell
for cell_key in self.getCellKeys():
production_planning_dict[(cell_key[0], cell_key[1])] = cell_getter(*cell_key)
return production_planning_dict
\ No newline at end of file
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="Document Component" module="erp5.portal_type"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_recorded_property_dict</string> </key>
<value>
<persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent>
</value>
</item>
<item>
<key> <string>default_reference</string> </key>
<value> <string>ProductionPlanning</string> </value>
</item>
<item>
<key> <string>description</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>document.erp5.ProductionPlanning</string> </value>
</item>
<item>
<key> <string>portal_type</string> </key>
<value> <string>Document Component</string> </value>
</item>
<item>
<key> <string>sid</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>text_content_error_message</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>text_content_warning_message</string> </key>
<value>
<tuple/>
</value>
</item>
<item>
<key> <string>version</string> </key>
<value> <string>erp5</string> </value>
</item>
<item>
<key> <string>workflow_history</string> </key>
<value>
<persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent>
</value>
</item>
</dictionary>
</pickle>
</record>
<record id="2" aka="AAAAAAAAAAI=">
<pickle>
<global name="PersistentMapping" module="Persistence.mapping"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>data</string> </key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
<record id="3" aka="AAAAAAAAAAM=">
<pickle>
<global name="PersistentMapping" module="Persistence.mapping"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>data</string> </key>
<value>
<dictionary>
<item>
<key> <string>component_validation_workflow</string> </key>
<value>
<persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent>
</value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</pickle>
</record>
<record id="4" aka="AAAAAAAAAAQ=">
<pickle>
<global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/>
</pickle>
<pickle>
<tuple>
<none/>
<list>
<dictionary>
<item>
<key> <string>action</string> </key>
<value> <string>validate</string> </value>
</item>
<item>
<key> <string>validation_state</string> </key>
<value> <string>validated</string> </value>
</item>
</dictionary>
</list>
</tuple>
</pickle>
</record>
</ZopeData>
......@@ -34,8 +34,14 @@ class ProductionPlanningCell(MappedValue):
portal_type = 'Production Planning Cell'
security = ClassSecurityInfo()
security.declareObjectProtected(Permissions.AccessContentsInformation)
def getRelatedProductionOrderUrl(self, brain, cell_index, cell_position):
production_order_line = self.getSpecialiseValue()
if production_order_line:
return production_order_line.getParentValue().getAbsoluteUrl()
def getProductionPlanningCellClass(self):
specialise_value = self.getSpecialiseValue()
quantity = self.getQuantity()
if (not specialise_value and quantity) or (specialise_value.getQuantity() != quantity):
return 'warning'
return ''
......@@ -48,7 +48,7 @@
</item>
<item>
<key> <string>type_class</string> </key>
<value> <string>Delivery</string> </value>
<value> <string>ProductionPlanning</string> </value>
</item>
<item>
<key> <string>type_interface</string> </key>
......
......@@ -221,7 +221,7 @@
</item>
<item>
<key> <string>cell_getter_method</string> </key>
<value> <string></string> </value>
<value> <string>getProductionPlanningCell</string> </value>
</item>
<item>
<key> <string>cell_portal_type</string> </key>
......
......@@ -275,7 +275,7 @@
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>python: "warning" if (cell and ((not cell.getSpecialise() and cell.getQuantity()) or (cell.getSpecialiseValue().getQuantity() != cell.getQuantity()))) else ""</string> </value>
<value> <string>python: cell.getProductionPlanningCellClass() if field.get_value("editable") else ""</string> </value>
</item>
</dictionary>
</pickle>
......@@ -288,7 +288,7 @@
<dictionary>
<item>
<key> <string>_text</string> </key>
<value> <string>python: cell.getQuantity() or 0 if cell else 0</string> </value>
<value> <string>python: cell.getQuantity() if cell else 0</string> </value>
</item>
</dictionary>
</pickle>
......
document.erp5.ProductionPlanningCell
\ No newline at end of file
document.erp5.ProductionPlanningCell
document.erp5.ProductionPlanning
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment