You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/articles/new-expensify/reports-and-expenses/Expense-and-Report-Actions.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,7 @@ Use this guide to understand:
146
146
|**Reject**| On Outstanding reports | Assigned approver | Returns the entire report to the submitter or a previous approver with a required reason. The report moves to Draft (if rejected to submitter) or stays Outstanding (if rejected to a previous approver) |
147
147
|**Approve**| For outstanding reports | Admin | Skips current approver |
148
148
|**View details**| Any report | All roles | Opens details view with options to share, pin, view members |
149
+
|**Received payment**| On approved, closed, or reimbursed expense reports where no bank payment has been initiated | Submitter | Confirms that payment was received outside of Expensify and marks the report as paid |
149
150
|**Cancel payment**| After payment is initiated, but before the payment has been processed, or always for a manual payment | Payer | Cancels pending payment |
// Whether to show receipt audit result (e.g.`Verified`, `Issue Found`) and messages (e.g. `Receipt not verified. Please confirm accuracy.`)
301
-
// `!!(receiptViolations.length || didReceiptScanSucceed)` is for not showing `Verified` when `receiptViolations` is empty and `didReceiptScanSucceed` is false.
// Whether to show receipt audit result (e.g.`Verified`, `Issue Found`) and messages (e.g. `Receipt not verified. Please confirm accuracy.`)
314
+
// `!!(receiptViolations.length || didReceiptScanSucceed)` is for not showing `Verified` when `receiptViolations` is empty and `didReceiptScanSucceed` is false.
@@ -462,6 +489,7 @@ function MoneyRequestReceiptView({
462
489
<ReceiptAudit
463
490
notes={receiptViolations}
464
491
shouldShowAuditResult={!!shouldShowAuditMessage}
492
+
hasReceiptUploadError={hasReceiptUploadError}
465
493
/>
466
494
</OfflineWithFeedback>
467
495
)}
@@ -620,11 +648,11 @@ function MoneyRequestReceiptView({
620
648
)}
621
649
{/* For WideRHP (fillSpace is true), we need to wait for the image to load to get the correct size, then display the violation message to avoid the jumping issue.
622
650
Otherwise (when fillSpace is false), we use a fixed size, so there's no need to wait for the image to load. */}
0 commit comments