1
2
3
4
5
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
# Jean-Paul Smets-Solanes <jp@nexedi.com>
# Yusuke Muraoka <yusuke@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.ERP5Type import Permissions, PropertySheet, interfaces
from Products.ERP5Type.XMLObject import XMLObject
from Products.ERP5.Document.Path import Path
from Products.ERP5.ExplanationCache import _getExplanationCache, _getBusinessLinkClosure
from Products.ERP5.MovementCollectionDiff import _getPropertyAndCategoryList
import zope.interface
from zLOG import LOG
class BusinessProcess(Path, XMLObject):
"""The BusinessProcess class is a container class which is used
to describe business processes in the area of trade, payroll
and production. Processes consists of a collection of Business Link
which define an arrow between a 'predecessor' trade_state and a
'successor' trade_state, for a given trade_phase_list.
Core concepts in BusinessProcess are the notions of "explanation".
Explanation represents the subtree of a simulation tree of all
simulation movements related to an applied rule, a delivery line,
a delivery, etc.
Example:
portal_simulation/2/sm1/a1/sm2/a2/sm3
portal_simulation/2/sm1/a1/sm2/a2/sm4
explanation(portal_simulation/2/sm1/a1/sm2/a2) is
portal_simulation/2/sm1/a1/sm2/a2/sm3
portal_simulation/2/sm1/a1/sm2/a2/sm4
portal_simulation/2/sm1/a1/sm2
portal_simulation/2/sm1
Business Process completion, dates, etc. are calculated
always in the context of an explanation. Sometimes,
it is necessary to ignore certain business link to evaluate
completion or completion dates. This is very true for Union
Business Processes. This is the concept of Business Link closure,
ie. filtering out all Business Link which are not used in an explanation.
TODO:
- add support to prevent infinite loop. (but beware, this notion has changed
with Union of Business Process, since the loop should be detected only
as part of a given business process closure)
- handle all properties of PaymentCondition in date calculation
- review getRemainingTradePhaseList
- optimize performance so that the completion dates are calculated
only once in a transaction thanks to caching (which could be
handled in coordination with ExplanationCache infinite loop
detection)
- fine a better way to narrow down paremeters to copy without
using a rule parameter
- should _getPropertyAndCategoryList remain a private method or
become part of IMovement ?
- add security declarations
- why are we using objectValues in some places ?
- add a property to rules in order to determine whether dates
are provided by the rule or by business link / trade model path. This is an extension
of the idea that root applied rules provide date information.
- use explanation cache more to optimize speed
- DateTime must be extended in ERP5 to support +infinite and -infinite
like floating points do
- support conversions in trade model path
RENAMED:
getPathValueList -> getBusinessLinkValueList
"""
meta_type = 'ERP5 Business Process'
portal_type = 'Business Process'
# Declarative security
security = ClassSecurityInfo()
security.declareObjectProtected(Permissions.AccessContentsInformation)
# Declarative properties
property_sheets = ( PropertySheet.Base
, PropertySheet.XMLObject
, PropertySheet.CategoryCore
, PropertySheet.DublinCore
, PropertySheet.Folder
, PropertySheet.Comment
, PropertySheet.Arrow
, PropertySheet.BusinessProcess
)
# Declarative interfaces
zope.interface.implements(interfaces.IBusinessProcess,
interfaces.IArrowBase)
# ITradeModelPathProcess implementation
security.declareProtected(Permissions.AccessContentsInformation, 'getTradeModelPathValueList')
def getTradeModelPathValueList(self, trade_phase=None, context=None, **kw):
"""Returns all Trade Model Path of the current Business Process which
are matching the given trade_phase and the optional context.
trade_phase -- filter by trade phase
context -- a context to test each Business Link on
and filter out Business Link which do not match
**kw -- same arguments as those passed to searchValues / contentValues
"""
if trade_phase is not None:
if isinstance(trade_phase, basestring):
trade_phase = (trade_phase,)
trade_phase = set(x.split('trade_phase/', 1)[-1]
for x in trade_phase)
if kw.get('portal_type', None) is None:
kw['portal_type'] = self.getPortalTradeModelPathTypeList()
if kw.get('sort_on', None) is None:
kw['sort_on'] = 'int_index'
original_path_list = self.objectValues(**kw) # Why Object Values ??? XXX-JPS
LOG('self', 0, repr(self))
LOG('objectValues', 0, repr(self.objectValues()))
LOG('portal_type', 0, repr(kw['portal_type']))
LOG('objectValues kw', 0, repr(self.objectValues(**kw)))
LOG('trade_phase', 0, trade_phase)
LOG('original_path_list', 0, original_path_list)
# Separate the selection of trade model paths into two steps
# for easier debugging.
# First, collect trade model paths which can be applicable to a given context.
path_list = []
for path in original_path_list:
# Filter our business path which trade phase does not match
if trade_phase is None or trade_phase.intersection(path.getTradePhaseList()):
path_list.append(path)
LOG('path_list', 0, path_list)
# Then, filter trade model paths by Predicate API.
# FIXME: Ideally, we should use the Domain Tool to search business paths,
# and avoid using the low level Predicate API. But the Domain Tool does
# support the condition above without scripting?
result = []
for path in path_list:
if path.test(context):
result.append(path)
LOG('result', 0, result)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getExpectedTradeModelPathStartAndStopDate')
def getExpectedTradeModelPathStartAndStopDate(self, explanation, trade_model_path,
delay_mode=None):
"""Returns the expected start and stop dates of given Trade Model Path
document in the context of provided explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_model_path -- a Trade Model Path document
delay_mode -- optional value to specify calculation mode ('min', 'max')
if no value specified use average delay
"""
if explanation.getPortalType() != 'Applied Rule':
raise TypeError('explanation must be an Applied Rule')
if explanation.getParentValue().getPortalType() == 'Simulation Tool':
raise ValueError('explanation must not be a Root Applied Rule')
trade_date = trade_model_path.getTradeDate()
if not trade_date:
raise ValueError('a trade_date must be defined on every Trade Model Path')
reference_date_method_id = trade_model_path.getReferenceDateMethodId()
if not reference_date_method_id:
raise ValueError('a reference date method must be defined on every Trade Model Path')
explanation_cache = _getExplanationCache(explanation)
LOG('calling explanation_cache.getReferenceDate', 0, '%s %s %s %s' % (explanation, self, trade_date, reference_date_method_id))
reference_date = explanation_cache.getReferenceDate(self, trade_date, reference_date_method_id)
# Computer start_date and stop_date (XXX-JPS this could be cached and accelerated)
start_date = reference_date + trade_model_path.getPaymentTerm(0.0) # XXX-JPS Until better naming
if delay_mode == 'min':
delay = trade_model_path.getMinDelay(0.0)
elif delay_mode == 'max':
delay = trade_model_path.getMaxDelay(0.0)
else:
delay = (trade_model_path.getMaxDelay(0.0) + trade_model_path.getMinDelay(0.0)) / 2.0
stop_date = start_date + delay
return start_date, stop_date
# IBusinessLinkProcess implementation
security.declareProtected(Permissions.AccessContentsInformation, 'getBusinessLinkValueList')
def getBusinessLinkValueList(self, trade_phase=None, context=None,
predecessor=None, successor=None, **kw):
"""Returns all Business Links of the current BusinessProcess which
are matching the given trade_phase and the optional context.
trade_phase -- filter by trade phase
context -- a context to test each Business Link on
and filter out Business Link which do not match
predecessor -- filter by trade state predecessor
successor -- filter by trade state successor
**kw -- same arguments as those passed to searchValues / contentValues
"""
if trade_phase is not None:
if isinstance(trade_phase, basestring):
trade_phase = set((trade_phase,))
else:
trade_phase = set(trade_phase)
if kw.get('portal_type', None) is None:
kw['portal_type'] = self.getPortalBusinessLinkTypeList()
if kw.get('sort_on', None) is None:
kw['sort_on'] = 'int_index'
original_business_link_list = self.objectValues(**kw) # Why Object Values ??? XXX-JPS
# Separate the selection of business links into two steps
# for easier debugging.
# First, collect business links which can be applicable to a given context.
business_link_list = []
for business_link in original_business_link_list:
if predecessor is not None and business_link.getPredecessor() != predecessor:
continue # Filter our business link which predecessor does not match
if successor is not None and business_link.getSuccessor() != successor:
continue # Filter our business link which successor does not match
if trade_phase is not None and not trade_phase.intersection(business_link.getTradePhaseList()):
continue # Filter our business link which trade phase does not match
business_link_list.append(business_link)
# Then, filter business links by Predicate API.
# FIXME: Ideally, we should use the Domain Tool to search business links,
# and avoid using the low level Predicate API. But the Domain Tool does
# support the condition above without scripting?
LOG('business_link_list', 0, repr(business_link_list))
if context is None:
LOG('context is None', 0, repr(business_link_list))
return business_link_list
result = []
for business_link in business_link_list:
if business_link.test(context):
result.append(business_link)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'isBusinessLinkCompleted')
def isBusinessLinkCompleted(self, explanation, business_link):
"""Returns True if given Business Link document
is completed in the context of provided explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
business_link -- a Business Link document
"""
LOG('In isBusinessLinkCompleted', 0, repr(business_link))
# Return False if Business Link is not completed
if not business_link.isCompleted(explanation):
return False
predecessor_state = business_link.getPredecessor()
if not predecessor_state:
# This is a root business links, no predecessor
# so no need to do any recursion
return True
if self.isTradeStateCompleted(explanation, predecessor_state):
# If predecessor state is globally completed for the
# given explanation, return True
# Please note that this is a specific case for a Business Process
# built using asUnionBusinessProcess. In such business process
# a business link may be completed even if its predecessor state
# is not
return True
# Build the closure business process which only includes those business
# links wich are directly related to the current business link but DO NOT
# narrow down the explanation else we might narrow down so much that
# it becomes an empty set
closure_process = _getBusinessLinkClosure(self, explanation, business_link)
return closure_process.isTradeStateCompleted(explanation, predecessor_state)
security.declareProtected(Permissions.AccessContentsInformation, 'isBusinessLinkPartiallyCompleted')
def isBusinessLinkPartiallyCompleted(self, explanation, business_link):
"""Returns True if given Business Link document
is partially completed in the context of provided explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
business_link -- a Business Link document
"""
# Return False if Business Link is not partially completed
if not business_link.isPartiallyCompleted(explanation):
return False
predecessor_state = business_link.getPredecessor()
if not predecessor_state:
# This is a root business link, no predecessor
# so no need to do any recursion
return True
if self.isTradeStatePartiallyCompleted(explanation, predecessor_state):
# If predecessor state is globally partially completed for the
# given explanation, return True
# Please note that this is a specific case for a Business Process
# built using asUnionBusinessProcess. In such business process
# a business link may be partially completed even if its predecessor
# state is not
return True
# Build the closure business process which only includes those business
# links wich are directly related to the current business link but DO NOT
# narrow down the explanation else we might narrow down so much that
# it becomes an empty set
closure_process = _getBusinessLinkClosure(explanation, business_link)
return closure_process.isTradeStatePartiallyCompleted(explanation,
predecessor_state)
# IBuildableBusinessLinkProcess implementation
security.declareProtected(Permissions.AccessContentsInformation, 'getBuildableBusinessLinkValueList')
def getBuildableBusinessLinkValueList(self, explanation):
"""Returns the list of Business Link which are buildable
by taking into account trade state dependencies between
Business Link.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
result = []
for business_link in self.getBusinessLinkValueList():
if self.isBusinessLinkBuildable(explanation, business_link):
result.append(business_link)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getPartiallyBuildableBusinessLinkValueList')
def getPartiallyBuildableBusinessLinkValueList(self, explanation):
"""Returns the list of Business Link which are partially buildable
by taking into account trade state dependencies between
Business Link.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
result = []
for business_link in self.getBusinessLinkValueList():
if self.isBusinessLinkPartiallyBuildable(explanation, business_link):
result.append(business_link)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'isBusinessLinkBuildable')
def isBusinessLinkBuildable(self, explanation, business_link):
"""Returns True if any of the related Simulation Movement
is buildable and if the predecessor trade state is completed.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
business_link -- a Business Link document
"""
# If everything is delivered, no need to build
LOG('In isBusinessLinkBuildable', 0, repr(business_link))
if business_link.isDelivered(explanation):
LOG('In isBusinessLinkBuildable', 0, 'business link is delivered and thus False')
return False
# We must take the closure cause only way to combine business process
closure_process = _getBusinessLinkClosure(self, explanation, business_link)
predecessor = business_link.getPredecessor()
return closure_process.isTradeStateCompleted(explanation, predecessor)
security.declareProtected(Permissions.AccessContentsInformation, 'isBusinessLinkPartiallyBuildable')
def isBusinessLinkPartiallyBuildable(self, explanation, business_link):
"""Returns True if any of the related Simulation Movement
is buildable and if the predecessor trade state is partially completed.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
business_link -- a Business Link document
"""
# If everything is delivered, no need to build
if business_link.isDelivered(explanation):
return False
# We must take the closure cause only way to combine business process
closure_process = _getBusinessLinkClosure(self, explanation, business_link)
predecessor = business_link.getPredecessor()
return closure_process.isTradeStatePartiallyCompleted(predecessor)
# ITradeStateProcess implementation
security.declareProtected(Permissions.AccessContentsInformation, 'getTradeStateList')
def getTradeStateList(self):
"""Returns list of all trade_state of this Business Process
by looking at successor and predecessor values of contained
Business Link.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
result = set()
for business_link in self.getBusinessLinkValueList():
result.add(business_link.getPredecessor())
result.add(business_link.getSuccessor())
return result
security.declareProtected(Permissions.AccessContentsInformation, 'isInitialTradeState')
def isInitialTradeState(self, trade_state):
"""Returns True if given 'trade_state' has no successor related
Business Link.
trade_state -- a Trade State category
"""
return len(self.getBusinessLinkValueList(successor=trade_state)) == 0
security.declareProtected(Permissions.AccessContentsInformation, 'isFinalTradeState')
def isFinalTradeState(self, trade_state):
"""Returns True if given 'trade_state' has no predecessor related
Business Link.
trade_state -- a Trade State category
"""
return len(self.getBusinessLinkValueList(predecessor=trade_state)) == 0
security.declareProtected(Permissions.AccessContentsInformation, 'getSuccessorTradeStateList')
def getSuccessorTradeStateList(self, explanation, trade_state):
"""Returns the list of successor states in the
context of given explanation. This list is built by looking
at all successor of business link involved in given explanation
and which predecessor is the given trade_phase.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_state -- a Trade State category
"""
result = set()
for business_link in self.getBusinessLinkValueList():
if business_link.getPredecessor() == trade_state:
result.add(business_link.getSuccessor())
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getPredecessorTradeStateList')
def getPredecessorTradeStateList(self, explanation, trade_state):
"""Returns the list of predecessor states in the
context of given explanation. This list is built by looking
at all predecessor of business link involved in given explanation
and which sucessor is the given trade_phase.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_state -- a Trade State category
"""
result = set()
for business_link in self.getBusinessLinkValueList():
if business_link.getSuccessor() == trade_state:
result.add(business_link.getPredecessor())
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getCompletedTradeStateList')
def getCompletedTradeStateList(self, explanation):
"""Returns the list of Trade States which are completed
in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return filter(lambda x:self.isTradeStateCompleted(explanation, x), self.getTradeStateList())
security.declareProtected(Permissions.AccessContentsInformation, 'getPartiallyCompletedTradeStateList')
def getPartiallyCompletedTradeStateList(self, explanation):
"""Returns the list of Trade States which are partially
completed in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return filter(lambda x:self.isTradeStatePartiallyCompleted(explanation, x), self.getTradeStateList())
security.declareProtected(Permissions.AccessContentsInformation, 'getLatestCompletedTradeStateList')
def getLatestCompletedTradeStateList(self, explanation):
"""Returns the list of completed trade states which predecessor
states are completed and for which no successor state
is completed in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
result = set()
for state in self.getCompletedTradeStateValue(explanation):
for business_link in state.getPredecessorRelatedValueList():
if not self.isBusinessLinkCompleted(explanation, business_link):
result.add(state)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getLatestPartiallyCompletedTradeStateList')
def getLatestPartiallyCompletedTradeStateList(self, explanation):
"""Returns the list of completed trade states which predecessor
states are completed and for which no successor state
is partially completed in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
result = set()
for state in self.getCompletedTradeStateValue(explanation):
for business_link in state.getPredecessorRelatedValueList():
if not self.isBusinessLinkPartiallyCompleted(explanation, business_link):
result.add(state)
return result
security.declareProtected(Permissions.AccessContentsInformation, 'isTradeStateCompleted')
def isTradeStateCompleted(self, explanation, trade_state):
"""Returns True if all predecessor trade states are
completed and if no successor trade state is completed
in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_state -- a Trade State category
"""
LOG('In isTradeStateCompleted', 0, repr(trade_state))
for business_link in self.getBusinessLinkValueList(successor=trade_state):
if not self.isBusinessLinkCompleted(explanation, business_link):
LOG('A business link is not completed', 0, repr(business_link))
return False
return True
security.declareProtected(Permissions.AccessContentsInformation, 'isTradeStatePartiallyCompleted')
def isTradeStatePartiallyCompleted(self, explanation, trade_state):
"""Returns True if all predecessor trade states are
completed and if no successor trade state is partially completed
in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_state -- a Trade State category
"""
for business_link in self.getBusinessLinkValueList(successor=trade_state):
if not self.isBusinessLinkPartiallyCompleted(explanation, business_link):
return False
return True
# ITradePhaseProcess implementation
security.declareProtected(Permissions.AccessContentsInformation, 'getTradePhaseList')
def getTradePhaseList(self):
"""Returns list of all trade_phase of this Business Process
by looking at trade_phase values of contained Business Link.
"""
result = set()
for business_link in self.getBusinessLinkValueList():
result = result.union(business_link.getTradePhaseList())
return result
security.declareProtected(Permissions.AccessContentsInformation, 'getCompletedTradePhaseList')
def getCompletedTradePhaseList(self, explanation):
"""Returns the list of Trade Phases which are completed
in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return filter(lambda x:self.isTradePhaseCompleted(explanation, x), self.getTradePhaseList())
security.declareProtected(Permissions.AccessContentsInformation, 'getPartiallyCompletedTradePhaseList')
def getPartiallyCompletedTradePhaseList(self, explanation):
"""Returns the list of Trade Phases which are partially completed
in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return filter(lambda x:self.isTradePhasePartiallyCompleted(explanation, x), self.getTradePhaseList())
security.declareProtected(Permissions.AccessContentsInformation, 'isTradePhaseCompleted')
def isTradePhaseCompleted(self, explanation, trade_phase):
"""Returns True all business link with given trade_phase
applicable to given explanation are completed.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_phase -- a Trade Phase category
"""
for business_link in self.getBusinessLinkValueList(trade_phase=trade_phase):
if not self.isBusinessLinkCompleted(explanation, business_link):
return False
return True
security.declareProtected(Permissions.AccessContentsInformation, 'isTradePhasePartiallyCompleted')
def isTradePhasePartiallyCompleted(self, explanation, trade_phase):
"""Returns True at least one business link with given trade_phase
applicable to given explanation is partially completed
or completed.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
trade_phase -- a Trade Phase category
"""
for business_link in self.getBusinessLinkValueList(trade_phase=trade_phase):
if not self.isBusinessLinkPartiallyCompleted(explanation, business_link):
return False
return True
security.declareProtected(Permissions.AccessContentsInformation, 'getRemainingTradePhaseList')
def getRemainingTradePhaseList(self, explanation, business_link, trade_phase_list=None):
"""Returns the list of remaining trade phases which to be achieved
as part of a business process. This list is calculated by analysing
the graph of business link and trade states, starting from a given
business link. The result if filtered by a list of trade phases. This
method is useful mostly for production and MRP to manage a distributed
supply and production chain.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
business_link -- a Business Link document
trade_phase_list -- if provided, the result is filtered by it after
being collected - XXX-JPS - is this really useful ?
NOTE: this code has not been reviewed and needs review
NOTE: explanation is not involved here because we consider here that
self is the result of asUnionBusinessProcess and thus only contains
applicable Business Link to a given simulation subtree. Since the list
of remaining trade phases does not depend on exact values in the
simulation, we did not include the explanation. However, this makes the
API less uniform.
"""
remaining_trade_phase_list = []
trade_state = business_link.getSuccessor()
for link in [x for x in self.objectValues(portal_type="Business Link") \
if x.getPredecessor() == trade_state]:
# XXX When no simulations related to link, what should link.isCompleted return?
# if True we don't have way to add remaining trade phases to new movement
if not (link.getRelatedSimulationMovementValueList(explanation) and
link.isCompleted(explanation)):
remaining_trade_phase_list += link.getTradePhaseValueList()
# collect to successor direction recursively
state = link.getSuccessorValue()
if state is not None:
remaining_trade_phase_list.extend(
self.getRemainingTradePhaseList(explanation, state, None))
# filter just at once if given
if trade_phase_list is not None:
remaining_trade_phase_list = filter(
lambda x : x.getLogicalPath() in trade_phase_list,
remaining_trade_phase_list)
return remaining_trade_phase_list
security.declareProtected(Permissions.AccessContentsInformation, 'getTradePhaseMovementList')
def getTradePhaseMovementList(self, explanation, amount, trade_phase=None, delay_mode=None,
update_property_dict=None):
"""Returns a list of movement with appropriate arrow and dates,
based on the Business Link definitions, provided 'amount' and optional
trade phases. If no trade_phase is provided, the trade_phase defined
on the Amount is used instead.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
amount -- IAmount (quantity, resource) or IMovement
trade_phase -- optional Trade Phase category
delay_mode -- optional value to specify calculation mode ('min', 'max')
if no value specified use average delay
update_property_method --
"""
if not trade_phase:
trade_phase = amount.getTradePhase()
if not trade_phase:
raise ValueError("A trade_phase must be defined on the Amount or provided to getTradePhaseMovementList")
# Build a list of temp movements
from Products.ERP5Type.Document import newTempMovement
result = []
id_index = 0
base_id = amount.getId()
if update_property_dict is None: update_property_dict = {}
for trade_model_path in self.getTradeModelPathValueList(context=amount, trade_phase=trade_phase):
id_index += 1
movement = newTempMovement(trade_model_path, '%s_%s' % (base_id, id_index))
kw = self._getPropertyAndCategoryDict(explanation, amount, trade_model_path, delay_mode=delay_mode)
try:
kw['trade_phase'], = \
set(trade_phase).intersection(trade_model_path.getTradePhaseList())
except ValueError:
pass
kw.update(update_property_dict)
movement._edit(**kw)
business_link = self.getBusinessLinkValueList(trade_phase=trade_phase,
context=movement)
movement._setCausalityList([trade_model_path.getRelativeUrl()]
+ [x.getRelativeUrl() for x in business_link]
+ movement.getCausalityList())
result.append(movement)
# result can not be empty
if not result: raise ValueError("A Business Process can not erase amounts")
if not explanation.getSpecialiseValue().getSameTotalQuantity():
return result
# Sort movement list and make sure the total is equal to total_quantity
total_quantity = amount.getQuantity()
current_quantity = 0
result.sort(key=lambda x:x.getStartDate())
stripped_result = []
for movement in result:
stripped_result.append(movement)
quantity = movement.getQuantity()
current_quantity += quantity
if current_quantity > total_quantity:
# As soon as the current_quantity is greater than total_quantity
# strip the result
break
# Make sure total_quantity is reached by changing last movement valye
if current_quantity != total_quantity:
movement._setQuantity(quantity + total_quantity - current_quantity)
return stripped_result
def _getPropertyAndCategoryDict(self, explanation, amount, trade_model_path, delay_mode=None):
"""A private method to merge an amount and a business_link and return
a dict of properties and categories which can be used to create a
new movement.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
amount -- an IAmount instance or an IMovement instance
trade_model_path -- an ITradeModelPath instance
delay_mode -- optional value to specify calculation mode ('min', 'max')
if no value specified use average delay
"""
if explanation.getPortalType() == "Applied Rule":
rule = explanation.getSpecialiseValue()
else:
rule = None
if rule is None:
property_dict = _getPropertyAndCategoryList(amount)
else:
property_dict = {}
for tester in rule._getUpdatingTesterList(exclude_quantity=False):
property_dict.update(tester.getUpdatablePropertyDict(
amount, None))
# Arrow categories
for base_category, category_url_list in \
trade_model_path.getArrowCategoryDict(context=amount).iteritems():
property_dict[base_category] = category_url_list
# Amount quantities - XXX-JPS maybe we should consider handling unit conversions here
# and specifying units
if trade_model_path.getQuantity():
property_dict['quantity'] = trade_model_path.getQuantity()
elif trade_model_path.getEfficiency():
property_dict['quantity'] = amount.getQuantity() *\
trade_model_path.getEfficiency()
else:
property_dict['quantity'] = amount.getQuantity()
# Dates - the main concept of BPM is to search for reference dates
# in parent simulation movements at expand time. This means that
# a trade date which is based on a trade phase which is handled
# by a child applied rule is not supported in ERP5 BPM.
# In the same spirit, date calculation at expand time is local, not
# global.
if explanation.getPortalType() == 'Applied Rule':
if explanation.getParentValue().getPortalType() != "Simulation Tool":
# It only makes sens to search for start and start date for
# applied rules which are not root applied rules.
# XXX-JPS could be extended with a rule property instead
# of supports only in root applied rule case
start_date, stop_date = self.getExpectedTradeModelPathStartAndStopDate(
explanation, trade_model_path, delay_mode=delay_mode)
property_dict['start_date'] = start_date
property_dict['stop_date'] = stop_date
else:
raise TypeError("Explanation must be an Applied Rule in expand process") # Nothing to do
return property_dict
# IBusinessProcess global API
security.declareProtected(Permissions.AccessContentsInformation, 'isCompleted')
def isCompleted(self, explanation):
"""Returns True is all applicable Trade States and Trade Phases
are completed in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
for state in self.getTradeStateList():
if not state.isTradeStateCompleted(explanation):
return False
return True
security.declareProtected(Permissions.AccessContentsInformation, 'isBuildable')
def isBuildable(self, explanation):
"""Returns True is one Business Link of this Business Process
is buildable in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return len(self.getBuildableBusinessLinkValueList(explanation)) != 0
security.declareProtected(Permissions.AccessContentsInformation, 'isPartiallyBuildable')
def isPartiallyBuildable(self, explanation):
"""Returns True is one Business Link of this Business Process
is partially buildable in the context of given explanation.
explanation -- an Order, Order Line, Delivery or Delivery Line or
Applied Rule which implicitely defines a simulation subtree
"""
return len(self.getPartiallyBuildableBusinessLinkValueList(explanation)) != 0
security.declareProtected(Permissions.AccessContentsInformation, 'build')
def build(self, explanation):
"""
Build whatever is buildable
"""
LOG('In business process build', 0, repr(explanation))
for business_link in self.getBuildableBusinessLinkValueList(explanation):
business_link.build(explanation=explanation)