feat(SPG-851): fix midtrans #66

Merged
firmanr merged 1 commits from fix/bug-firman into development 2024-08-12 18:02:50 +07:00
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ export class ChangeStatusBookingHandler
async handle(event: TransactionChangeStatusEvent) {
const data = event.data.data;
const dataID = data?.id;
const dataID = data?.id ?? data?.order_id;
const couchData = await this.couchService.getDoc(dataID, 'booking');