yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
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
Quintiq file version 2.0
#parent: #root
Method UpdateDomainGUID (LibDEF_IntegrationEvent event_i)
{
  Description: 'Update Domain-GUID from the model settings.'
  TextBody:
  [*
    // Jacky CHAN Apr-19-2016 (created)
    newDomainGuid := LibDEF_Util::GetSettingValueDomainGUID();
    
    // the changes of DomainGUID must be either to or from empty String "", a System cannot change Domain without leaving old one first.
    if( this.DomainGUID().Length() > 0 and newDomainGuid = "" )
    {
      if( this.InDomain() )
      {
        this.SendConfigurationRequestLeave( event_i );
      }
      else
      {
        this.DomainGUID( newDomainGuid );
        
        LibDEF_Util::EventLog( event_i, "Domain-GUID configuration has been deleted." );
      }
    }
    else if( this.DomainGUID().Length() > 0 and this.DomainGUID() <> newDomainGuid and this.InDomain() )
    {
      LibDEF_Util::EventLogError( event_i,
                                  "Failed to update Domain-GUID",
                                  "Domain-GUID cannot be updated. Changing Domain requires to leave first then join." );
    }
    else
    {
      this.DomainGUID( newDomainGuid );
    
      LibDEF_Util::EventLog( event_i, "Domain-GUID configuration has been registered." );
    }
  *]
}