| 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
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetInfo ( |  |   Number recurrenceInterval_i, |  |   Boolean isEveryWeekday_i |  | ) const declarative remote as String |  | { |  |   Description: |  |   [* |  |     Get information about the RecurrencePattern in textual format. |  |     Is implemented as a static method so it can also be called from the UI when there is no instance available yet. |  |   *] |  |   TextBody: |  |   [* |  |     value := "every "; |  |      |  |     if( isEveryWeekday_i ) |  |     { |  |       value := value + "weekday"; |  |     } |  |     else |  |     { |  |       if( recurrenceInterval_i = 1 ) |  |       { |  |         value := value + "day"; |  |       } |  |       else |  |       { |  |         value := value + [String]recurrenceInterval_i + " days"; |  |       } |  |     } |  |      |  |     return value; |  |   *] |  | } | 
 |