diff --git a/src/dispatch_checker.jl b/src/dispatch_checker.jl index 3d4c848..30609c9 100644 --- a/src/dispatch_checker.jl +++ b/src/dispatch_checker.jl @@ -165,9 +165,13 @@ function interactive_dispatch_checker(conn::DbConnection) end printstyled("Finished\n") - join(dispatch_list, "\n") |> print + + map(dispatch_list) do psbid + @sprintf "PS%06d" psbid + end |> (v -> join(v, "\n")) |> print println() - printstyled("Paste the result\n", underline = true) + + printstyled("Paste the result to google sheets\n", underline = true) @info "Tips: You can use `join(ans, \"\\n\") |> clipboard` in REPL to copy the result to the clipboard" return dispatch_list