Fälligkeitsdatum mit DurationCalculator berechnen

  • Freigeben Version: Washingtondc
  • Aktualisiert 1. Februar 2024
  • 7 Minuten Lesedauer
  • Mit der DurationCalculator-Skripteinbindung können Sie ein Fälligkeitsdatum berechnen, indem Sie entweder eine einfache Dauer oder eine relative Dauer basierend auf Zeitplänen verwenden.

    Das folgende Skript veranschaulicht die Verwendung der globalen API DurationCalculator zur Berechnung eines Fälligkeitsdatums. Der erste Teil des Skripts veranschaulicht, wie Sie ein Startdatum/eine Startzeit mit der Methode setStartDateTime ( ) festlegen und dann die Methode calcDuration() verwenden, um ein Fälligkeitsdatum zu bestimmen, das „x“ der fortlaufenden Zeit (Sekunden) ab dem angegebenen Startdatum/-zeit ist. Die zweite Hälfte des Skripts veranschaulicht die Verwendung von DurationCalculator zur Berechnung eines Fälligkeitsdatums basierend auf einem Zeitplan. Mit Zeitplänen können Sie einen „Filter“ auf zukünftige Zeit anwenden, z. B. nur die Tage einer Arbeitswoche in die Berechnung einbeziehen. Wenn Sie beispielsweise einen Zeitplan „Wochentage“ (der nur Montag bis Freitag einschließt) auf Ihre Dauerberechnung anwenden und der Startzeitpunkt auf Freitag, 17:00 Uhr festgelegt ist, wäre beim Hinzufügen einer Dauer von zwei Tagen das Fälligkeitsdatum Dienstag, 17:00 Uhr. Wenn Sie keinen Zeitplan verwendet haben, wäre das Fälligkeitsdatum Sonntag, 17:00 Uhr. Weitere Informationen zu Zeitplänen finden Sie unter Zeitpläne erstellen und verwenden.

    Dieses Skript kann ausgeschnitten, in die Seite „Skripts – Hintergrund“ eingefügt und unverändert ausgeführt werden. Es kann auch als Beispiel für das Erstellen von Business Rules und UI Actions dienen oder an jeder anderen Stelle verwendet werden, an der serverseitige Skripts erstellt werden können.
    /**
     * Demonstrate the use of DurationCalculator to compute a due date.
     * 
     * You must have a start date and a duration. Then you can compute a
     * due date using the constraints of a schedule.
     */
     
    gs.include('DurationCalculator');
    executeSample();
     
    /**
     * Function to house the sample script.
     */
    function executeSample(){
     
        // First we need a DurationCalculator object.
        var dc = new DurationCalculator();
     
        // --------------- No schedule examples ------------------
     
        // Simple computation of a due date without using a schedule. Seconds
        // are added to the start date continuously to get to a due date.
        var gdt = new GlideDateTime("2012-05-01 00:00:00");
        dc.setStartDateTime(gdt);
        if(!dc.calcDuration(2*24*3600)){ // 2 days
          gs.log("*** Error calculating duration");
          return;
        }
        gs.log("calcDuration no schedule: " + dc.getEndDateTime()); // "2012-05-03 00:00:00" two days later
     
        // Start in the middle of the night (2:00 am) and compute a due date 1 hour in the future
        // Without a schedule this yields 3:00 am.
        var gdt = new GlideDateTime("2012-05-03 02:00:00");
        dc.setStartDateTime(gdt);
        if(!dc.calcDuration(3600)){
          gs.log("*** Error calculating duration");
          return;
         }
        gs.log("Middle of night + 1 hour (no schedule): "+ dc.getEndDateTime()); // No scheduled start date, just add 1 hour
     
     
        // -------------- Add a schedule to the date calculator ---------------------
        addSchedule(dc);
     
        // Start in the middle of the night and compute a due date 1 hour in the future.
        // Since we start at 2:00 am the computation adds the 1 hour from the start
        // of the day, 8:00am to get to 9:00am
        var gdt = new GlideDateTime("2012-05-03 02:00:00");
        dc.setStartDateTime(gdt);
        if(!dc.calcDuration(3600)){
          gs.log("*** Error calculating duration");
          return;
        }
        gs.log("Middle of night + 1 hour (with 8-5 schedule): " + dc.getEndDateTime()); // 9:00 am
     
        // Start in the afternoon and add hours beyond quiting time. Our schedule says the work day
        // ends at 5:00pm, if the duration extends beyond that, we roll over to the next work day.
        // In this example we are adding 4 hours to 3:00pm which gives us 10:00 am the next day.
        var gdt = new GlideDateTime("2012-05-03 15:00:00");
        dc.setStartDateTime(gdt);
    
        if(!dc.calcDuration(4*3600)){ 
          gs.log("*** Error calculating duration");
          return;}
        gs.log("Afternoon + 4 hour (with 8-5 schedule): " + dc.getEndDateTime()); // 10:00 am.
     
        // This is a demo of adding 2 hours repeatedly and examine the result. This
        // is a good way to visualize the result of a due date calculation.
        var gdt = new GlideDateTime("2012-05-03 15:00:00");
        dc.setStartDateTime(gdt); 
        for(var i=2; i<24; i+=1){
          if(!dc.calcDuration(i*3600)){
            gs.log("*** Error calculating duration");
            return;
          }
          gs.log("add "+ i +" hours gives due date: " + dc.getEndDateTime());
        }
     
        // Setting the timezone causes the schedule to be interpreted in the specified timezone.
        // Run the same code as above with different timezone. Note that the 8 to 5 workday is
        // offset by the two hours as specified in our timezone.
        dc.setTimeZone("GMT-2");
        var gdt = new GlideDateTime("2012-05-03 15:00:00");
        dc.setStartDateTime(gdt);
        for(var i=2; i<24; i+=1){
          if(!dc.calcDuration(i*3600)){ 
            gs.log("*** Error calculating duration");
            return;
          }
            gs.log("add "+ i +" hours gives due date (GMT-2): " + dc.getEndDateTime());
        }
    }
     
    /** 
     * Add a specific schedule to the DurationCalculator object.
     *  
     * @param durationCalculator An instance of DurationCalculator
     */
    function addSchedule(durationCalculator){
        // Load the "8-5 weekdays excluding holidays" schedule into our duration calculator.
        var scheduleName = "8-5 weekdays excluding holidays";
        var grSched = new GlideRecord('cmn_schedule');
        grSched.addQuery('name', scheduleName);
        grSched.query();
        if(!grSched.next()){
          gs.log('*** Could not find schedule "'+ scheduleName +'"');
          return;
        }
        durationCalculator.setSchedule(grSched.getUniqueValue(),"GMT");
    }

    Einfache Dauer mithilfe von DurationCalculator berechnen

    Eine einfache Dauer ist die Anzahl von Sekunden zwischen zwei Zeitpunkten.

    Wenn kein Zeitplan verwendet wird, ist dies eine einfache Subtraktion von Uhrzeit und Datum. Wenn ein Zeitplan verwendet wird, wird der Zeitplan herangezogen, um Nichtarbeitsstunden aus der Berechnung zu entfernen. Angenommen, ein Zeitplan „8-5 Wochentage ohne Feiertage“ wird verwendet. In diesem Fall beträgt die Anzahl der Arbeitsstunden von Montagmittag bis Dienstagmittag neun Stunden. Um eine einfache Dauer zu berechnen, initialisieren Sie die globale API DurationCalculator und rufen die calcScheduleDuration()- Methode auf.

    Dieses Skript veranschaulicht die Verwendung von DurationCalculator zur Berechnung einer einfachen Dauer.
    /**
     * Sample script demonstrating use of DurationCalculator to compute simple durations
     * 
     */
     
    gs.include('DurationCalculator');
    executeSample();
     
    /**
     * Function to house the sample script.
     */
    function executeSample(){
     
        // First we need a DurationCalculator object.
        var dc = new DurationCalculator();
     
        // Compute a simple duration without any schedule. The arguments
        // can also be of type GlideDateTime, such as fields from a GlideRecord.
        var dur = dc.calcScheduleDuration("2012-05-01", "2012-05-02");
        gs.log("calcScheduleDuration no schedule: " + dur); // 86400 seconds (24 hours)
     
        // The above sample is useful in limited cases. We almost always want to 
        // use some schedule in a duration computation, let's load a schedule.
        addSchedule(dc);
     
        // Compute a duration using the schedule. The schedule
        // specifies a nine hour work day. The output of this is 32400 seconds, or
        // a nine hour span.
        dur = dc.calcScheduleDuration("2012-05-23 12:00:00","2012-05-24 12:00:00");
        gs.log("calcScheduleDuration with schedule: " + dur); // 32400 seconds (9 hours)
     
        // Compute a duration that spans a weekend and holiday. Even though this
        // spans three days, it only spans 9 work hours based on the schedule.
        dur = dc.calcScheduleDuration("2012-05-25 12:00:00", "2012-05-29 12:00:00");
        gs.log("calcScheduleDuration with schedule spaning holiday: " + dur); // 32400 seconds (9 hours)
     
        // Use the current date time in a calculation. The output of this is
        // dependent on when you run it.
        var now = new Date();
        dur = dc.calcScheduleDuration("2012-05-15", new GlideDateTime());
        gs.log("calcScheduleDuration with schedule to now: " + dur); // Different on every run.
    }
     
    /** 
     * Add a specific schedule to the DurationCalculator object.
     *  
     * @param durationCalculator An instance of DurationCalculator
     */
    function addSchedule(durationCalculator){
        // Load the "8-5 weekdays excluding holidays" schedule into our duration calculator.
        var scheduleName = "8-5 weekdays excluding holidays";
        var grSched = new GlideRecord('cmn_schedule');
        grSched.addQuery('name', scheduleName);
        grSched.query();
        if(!grSched.next()){
            gs.log('*** Could not find schedule "'+ scheduleName +'"');
            return;
        }
        durationCalculator.setSchedule(grSched.getUniqueValue());
    }

    Relative Dauer verwenden

    Die relative Dauer ist der einfachen Dauer sehr ähnlich, außer dass mithilfe eines Skripts bestimmt wird, welche Teile eines Tages aus der Differenzberechnung entfernt werden sollen.

    Dieses Skript wird in der Tabelle „cmn_relative_duration“ gespeichert und kann durch Navigieren zu untersucht werden Systemzeitplaner > Zeitpläne > Relative Dauer. Die vorkonfigurierte Instanz enthält einige Beispiele für Skripts für relative Dauer.

    Eine sys_id der relativen Dauer wird nach der Initialisierung an die Methode calcRelativeDuration() der globalen API DurationCalculator -Klasse übergeben. Wenn diese Methode aufgerufen wird, wird das DurationCalculator-Objekt als Variable calculator an das Skript für relative Dauer (in der Tabelle „cmn_relative_duration“ gespeichert) übergeben. Das Skript für relative Dauer, das Sie in „cmn_relative_duration“ schreiben und speichern, hat somit über die Variable calculator Zugriff auf den ausführenden DurationCalculator.

    Das folgende Skript veranschaulicht die Verwendung von DurationCalculator zur Berechnung einer relative Dauer.
    /**
     * Sample use of relative duration calculation.
     * 
     */
     
    gs.include('DurationCalculator');
    executeSample();
     
    /**
     * Function to house the sample script.
     */
    function executeSample(){
     
        // First we need a DurationCalculator object. We will also use
        // the out-of-box relative duration "2 bus days by 4pm"
        var dc = new DurationCalculator();
        var relDur = "3bf802c20a0a0b52008e2859cd8abcf2"; // 2 bus days by 4pm if before 10am
        addSchedule(dc);
     
        // Since our start date is before 10:00am our result is two days from// now at 4:00pm.
        var gdt = new GlideDateTime("2012-05-01 09:00:00");
        dc.setStartDateTime(gdt);
        if(!dc.calcRelativeDuration(relDur)){
          gs.log("*** calcRelativeDuration failed");
          return;
        }
        gs.log("Two days later 4:00pm: "+ dc.getEndDateTime());
     
        // Since our start date is after 10:00am our result is three days from
        // now at 4:00pm.
        var gdt = new GlideDateTime("2012-05-01 11:00:00");
        dc.setStartDateTime(gdt);
        if(!dc.calcRelativeDuration(relDur)){
          gs.log("*** calcRelativeDuration failed");
          return;
        }
        gs.log("Three days later 4:00pm: "+ dc.getEndDateTime());}
     
    /** 
     * Add a specific schedule to the DurationCalculator object.
     *  
     * @param durationCalculator An instance of DurationCalculator
     */
    function addSchedule(durationCalculator){
        // Load the "8-5 weekdays excluding holidays" schedule into our duration calculator.
        var scheduleName ="8-5 weekdays excluding holidays";
        var grSched =new GlideRecord('cmn_schedule');
        grSched.addQuery('name', scheduleName);
        grSched.query();
        if(!grSched.next()){
          gs.log('*** Could not find schedule "'+ scheduleName +'"');
          return;}
        durationCalculator.setSchedule(grSched.getUniqueValue(),"GMT");}