Fix networkStatus

This commit is contained in:
2026-04-15 15:11:13 +02:00
parent 7001fccbf7
commit 15b70309da
5 changed files with 46 additions and 8 deletions

View File

@@ -80,7 +80,8 @@ export type FinishOrderDTO =
IdOrCorrelationID
&
{
reason?: string
reason?: string,
end_date?: Date
}
export type ErrorOrderDTO =

View File

@@ -302,8 +302,8 @@ export class OrderRepository {
UPDATE order_tracking
SET
status = 'finished',
update_date = (now() at time zone 'utc'),
finish_date = (now() at time zone 'utc')
update_date = now(),
finish_date = now()
WHERE id = $1
RETURNING id, status, update_date;
`