| 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
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetHasValidUniqueName ( |  |   MacroPlan owner, |  |   Ingredient ingredient, |  |   String name, |  |   String instacetext, |  |   output String feedback_o, |  |   output String sanitycheckmessage |  | ) declarative remote as Boolean |  | { |  |   Description: 'Check if the name for recipe is unique' |  |   TextBody: |  |   [* |  |     // desmondt Dec-5-2014 (created) |  |      |  |     isvalid := not exists( owner, Ingredient, i, |  |                            i <> ingredient, |  |                            i.Name() = name ); |  |     feedback_o := ''; |  |      |  |     if( not isvalid ) |  |     { |  |       feedback_o := SanityCheckMessage::GetFormattedMessage( instacetext, |  |                                                              Translations::MP_Ingredient_ViolateHasValidUniqueName() ); |  |       sanitycheckmessage := SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning();                                                          |  |     } |  |      |  |     return isvalid; |  |   *] |  | } | 
 |