@@ -355,21 +355,26 @@ function updateWaypoints(transactionID: string, waypoints: WaypointCollection, i
355
355
function dismissDuplicateTransactionViolation ( transactionIDs : string [ ] , dissmissedPersonalDetails : PersonalDetails ) {
356
356
const currentTransactionViolations = transactionIDs . map ( ( id ) => ( { transactionID : id , violations : allTransactionViolation ?. [ id ] ?? [ ] } ) ) ;
357
357
const currentTransactions = transactionIDs . map ( ( id ) => allTransactions ?. [ id ] ) ;
358
- const transactionsReportActions = currentTransactions . map ( ( transaction ) => ReportActionsUtils . getIOUActionForReportID ( transaction . reportID ?? '' , transaction . transactionID ?? '' ) ) ;
358
+ const transactionsReportActions = currentTransactions . map ( ( transaction ) => ReportActionsUtils . getIOUActionForReportID ( transaction . reportID , transaction . transactionID ) ) ;
359
359
const optimisticDissmidedViolationReportActions = transactionsReportActions . map ( ( ) => {
360
360
return buildOptimisticDismissedViolationReportAction ( { reason : 'manual' , violationName : CONST . VIOLATIONS . DUPLICATED_TRANSACTION } ) ;
361
361
} ) ;
362
362
363
363
const optimisticData : OnyxUpdate [ ] = [ ] ;
364
364
const failureData : OnyxUpdate [ ] = [ ] ;
365
365
366
- const optimisticReportActions : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => ( {
367
- onyxMethod : Onyx . METHOD . MERGE ,
368
- key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID ?? '-1' } ` ,
369
- value : {
370
- [ optimisticDissmidedViolationReportActions . at ( index ) ?. reportActionID ?? '' ] : optimisticDissmidedViolationReportActions . at ( index ) as ReportAction ,
371
- } ,
372
- } ) ) ;
366
+ const optimisticReportActions : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => {
367
+ const optimisticDissmidedViolationReportAction = optimisticDissmidedViolationReportActions . at ( index ) ;
368
+ return {
369
+ onyxMethod : Onyx . METHOD . MERGE ,
370
+ key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID } ` ,
371
+ value : optimisticDissmidedViolationReportAction
372
+ ? {
373
+ [ optimisticDissmidedViolationReportAction . reportActionID ] : optimisticDissmidedViolationReportAction as ReportAction ,
374
+ }
375
+ : undefined ,
376
+ } ;
377
+ } ) ;
373
378
const optimisticDataTransactionViolations : OnyxUpdate [ ] = currentTransactionViolations . map ( ( transactionViolations ) => ( {
374
379
onyxMethod : Onyx . METHOD . MERGE ,
375
380
key : `${ ONYXKEYS . COLLECTION . TRANSACTION_VIOLATIONS } ${ transactionViolations . transactionID } ` ,
@@ -411,25 +416,35 @@ function dismissDuplicateTransactionViolation(transactionIDs: string[], dissmiss
411
416
} ,
412
417
} ) ) ;
413
418
414
- const failureReportActions : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => ( {
415
- onyxMethod : Onyx . METHOD . MERGE ,
416
- key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID ?? '-1' } ` ,
417
- value : {
418
- [ optimisticDissmidedViolationReportActions . at ( index ) ?. reportActionID ?? '' ] : null ,
419
- } ,
420
- } ) ) ;
419
+ const failureReportActions : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => {
420
+ const optimisticDissmidedViolationReportAction = optimisticDissmidedViolationReportActions . at ( index ) ;
421
+ return {
422
+ onyxMethod : Onyx . METHOD . MERGE ,
423
+ key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID } ` ,
424
+ value : optimisticDissmidedViolationReportAction
425
+ ? {
426
+ [ optimisticDissmidedViolationReportAction . reportActionID ] : null ,
427
+ }
428
+ : undefined ,
429
+ } ;
430
+ } ) ;
421
431
422
432
failureData . push ( ...failureDataTransactionViolations ) ;
423
433
failureData . push ( ...failureDataTransaction ) ;
424
434
failureData . push ( ...failureReportActions ) ;
425
435
426
- const successData : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => ( {
427
- onyxMethod : Onyx . METHOD . MERGE ,
428
- key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID ?? '-1' } ` ,
429
- value : {
430
- [ optimisticDissmidedViolationReportActions . at ( index ) ?. reportActionID ?? '' ] : null ,
431
- } ,
432
- } ) ) ;
436
+ const successData : OnyxUpdate [ ] = transactionsReportActions . map ( ( action , index ) => {
437
+ const optimisticDissmidedViolationReportAction = optimisticDissmidedViolationReportActions . at ( index ) ;
438
+ return {
439
+ onyxMethod : Onyx . METHOD . MERGE ,
440
+ key : `${ ONYXKEYS . COLLECTION . REPORT_ACTIONS } ${ action ?. childReportID } ` ,
441
+ value : optimisticDissmidedViolationReportAction
442
+ ? {
443
+ [ optimisticDissmidedViolationReportAction . reportActionID ] : null ,
444
+ }
445
+ : undefined ,
446
+ } ;
447
+ } ) ;
433
448
// We are creating duplicate resolved report actions for each duplicate transactions and all the report actions
434
449
// should be correctly linked with their parent report but the BE is sometimes linking report actions to different
435
450
// parent reports than the one we set optimistically, resulting in duplicate report actions. Therefore, we send the BE
0 commit comments