Quintiq file version 2.0
|
#parent: #root
|
Method MPSyncOperationInputSet (
|
Boolean isoverwritemanualconfig,
|
IOOperationInputSets iooperationinputsets
|
)
|
{
|
Description: 'Synchronization of OperationInputSet for MPSync'
|
TextBody:
|
[*
|
|
existing := selectset( this, Unit.Operation.OperationInputSet, item, true );
|
updates := construct( OperationInputSets );
|
|
traverse( iooperationinputsets, Elements, io, io.IsValid() )
|
{
|
inputsetname := io.Name();
|
opid := io.OperationID();
|
objectinstance := OperationInputSet::FindOperationInputSetTypeIndex( inputsetname, opid );
|
operation := Operation::FindOperationTypeIndex( opid );
|
if( isnull( objectinstance ) )
|
{
|
if( not isnull( operation ) )
|
{
|
objectinstance := OperationInputSet::Create( operation,
|
inputsetname,
|
io.MinQuantity(),
|
io.MaxQuantity(),
|
true /*isfromdb*/ );
|
}
|
}
|
else if( not objectinstance.IsManuallyConfigured() or isoverwritemanualconfig )
|
{
|
//perform update here
|
objectinstance.Update( inputsetname, io.MinQuantity(), io.MaxQuantity(), true /*isfromdb*/ );
|
updates.Add( objectinstance );
|
}
|
|
if( not isnull( objectinstance ) )
|
{
|
// Extended method
|
objectinstance.CustomUpdate( io, isoverwritemanualconfig );
|
}
|
}
|
|
tobedeleteset := existing.Difference( updates );
|
|
traverse( tobedeleteset, Elements, ele, not ele.IsManuallyConfigured() or isoverwritemanualconfig)
|
{
|
ele.Delete();
|
}
|
*]
|
}
|