printing in schedules

This commit is contained in:
pb 2025-04-30 12:59:57 +02:00
parent 2a737ad559
commit f026e30c6a

View File

@ -1,6 +1,7 @@
package workflow_execution
import (
"encoding/json"
"errors"
"fmt"
"strings"
@ -78,6 +79,11 @@ func (ws *WorkflowSchedule) CheckBooking(wfID string, request *tools.APIRequest)
for _, exec := range execs {
bookings = append(bookings, exec.Book(ws.UUID, wfID, priceds)...)
for _, b := range bookings {
// ------------ DELETE
fmt.Println("Booking :")
book, _ := json.Marshal(b)
fmt.Println(string(book))
// ----------------
meth := request.Caller.URLS[tools.BOOKING][tools.GET]
meth = strings.ReplaceAll(meth, ":id", b.ResourceID)
meth = strings.ReplaceAll(meth, ":start_date", b.ExpectedStartDate.Format("2006-01-02T15:04:05"))