Fix networkStatus
This commit is contained in:
@@ -80,7 +80,8 @@ export type FinishOrderDTO =
|
||||
IdOrCorrelationID
|
||||
&
|
||||
{
|
||||
reason?: string
|
||||
reason?: string,
|
||||
end_date?: Date
|
||||
}
|
||||
|
||||
export type ErrorOrderDTO =
|
||||
|
||||
@@ -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;
|
||||
`
|
||||
|
||||
Reference in New Issue
Block a user