79814873

Date: 2025-11-09 15:27:52
Score: 0.5
Natty:
Report link

AI DeepSeek offered following solution as an option

Procedure PresentationGetProcessing(Data, Presentation, StandardProcessing)
    
    StandardProcessing = False;
    
    Try
        If Data.Ref = Undefined Then
            StandardProcessing = True;
            Return;
        EndIf;
        
        If Data.Ref.IsEmpty() Then
            StandardProcessing = True;
            Return;
        EndIf;
        
        fullDescr = Data.Ref.FullDescr();
        Presentation = StrReplace(fullDescr, "/", ", ");
        
    Except
        // If any error occurs, fall back to standard processing
        StandardProcessing = True;
    EndTry;
    
EndProcedure

But I am not sure that this is the correct way...

Looking forward for other answers...

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: IT Student