| 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
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetIsProductAlreadyInTrip ( |  |   Trip trip, |  |   Product_MPs products, |  |   output String feedback_o |  | ) const declarative remote as Boolean |  | { |  |   Description: 'Check if any of the product is already in the trip' |  |   TextBody: |  |   [* |  |     // Check if any of the products is already existed in the trip |  |     productInTrips := selectset( trip, ProductInTrip.Product_MP, p, true ); |  |      |  |     intersect := productInTrips.Intersect( products ); |  |      |  |     result := intersect.Size() < 1; |  |      |  |     if( not result ) |  |     { |  |       feedback_o := Translations::MP_ProductInTrip_CanCreate_ProductAlreadyExist( intersect.Element( 0 ) ); |  |     } |  |      |  |     return result; |  |   *] |  | } | 
 |