Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e179095
Add the amount debited and amount reimbursed columns for withdrawal g…
ishpaul777 Jul 27, 2026
1174e9d
Render each conversion amount in its own currency and hide the column…
ishpaul777 Jul 27, 2026
b679269
Allow sorting the reconciliation dashboard by either conversion amount
ishpaul777 Jul 27, 2026
3d7bcac
Keep the conversion amount headers inside their own columns
ishpaul777 Jul 27, 2026
45c5e4a
Let the two conversion amount columns be sorted
ishpaul777 Jul 28, 2026
09a5082
Keep the backend order for the conversion amount sorts
ishpaul777 Jul 28, 2026
4754bb4
Translate the two new column headers
ishpaul777 Jul 28, 2026
ad783d4
Drop a stray token from the category headers
ishpaul777 Jul 28, 2026
c89bf34
Say the column visibility rule the way the report list says it
ishpaul777 Jul 28, 2026
ee86a10
Order the page by the conversion amounts the row shows
ishpaul777 Jul 28, 2026
1e8c428
Merge branch 'main' into ishpaul/655931-reconciliation-fx-columns
ishpaul777 Jul 31, 2026
529a9f7
Say that neither side of the conversion amount sort converts currencies
ishpaul777 Jul 31, 2026
7db27a0
Hide a conversion amount column when no rendered group carries it
ishpaul777 Jul 31, 2026
d6f2622
Drop a ts-expect-error the assignment does not need
ishpaul777 Jul 31, 2026
3e0d2ec
Keep the conversion amount column the withdrawal groups are sorted by
ishpaul777 Aug 3, 2026
f2891e2
Add the amountDebited and amountReimbursed filter keys and columns
ishpaul777 Aug 3, 2026
5389bd4
Carry the conversion amounts and their currencies on reports
ishpaul777 Aug 3, 2026
a26d343
Parse the conversion amount filters and columns
ishpaul777 Aug 3, 2026
18786b6
Offer the conversion amounts as filters and hide empty columns
ishpaul777 Aug 3, 2026
fddea16
Render the conversion amount columns on expense and report rows
ishpaul777 Aug 3, 2026
ab103c0
Cover the conversion amount filters and column visibility
ishpaul777 Aug 3, 2026
c1e5d33
Keep the conversion amounts out of the expense view
ishpaul777 Aug 3, 2026
a83b243
Sort reports by the conversion amounts now that the backend ranks them
ishpaul777 Aug 3, 2026
141124a
Cover the report-level conversion amount sorts
ishpaul777 Aug 3, 2026
8b0c2f5
Merge branch 'ishpaul/655931-reconciliation-fx-columns' into ishpaul/…
ishpaul777 Aug 3, 2026
556a716
Merge branch 'main' into ishpaul/655933-fx-filters-and-columns
ishpaul777 Aug 3, 2026
c5645ca
Keep the conversion amount column the reports are sorted by
ishpaul777 Aug 3, 2026
d86d7a3
Restore the currency formatter the cross-border payment messages use
ishpaul777 Aug 3, 2026
e9542e2
Merge branch 'ishpaul/fix-cross-border-reimbursed-formatter' into ish…
ishpaul777 Aug 3, 2026
8a0bd42
Merge branch 'main' into ishpaul/655931-reconciliation-fx-columns
ishpaul777 Aug 4, 2026
9a7841b
Add the Greek strings for the two conversion amount columns
ishpaul777 Aug 4, 2026
507a4e2
Merge branch 'ishpaul/655931-reconciliation-fx-columns' into ishpaul/…
ishpaul777 Aug 4, 2026
baf9b30
Regenerate the two conversion amount strings with the translation script
ishpaul777 Aug 4, 2026
7d4e215
Merge branch 'ishpaul/655931-reconciliation-fx-columns' into ishpaul/…
ishpaul777 Aug 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/CONST/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7032,6 +7032,8 @@ const CONST = {
SUBMITTER_USER_ID: this.TABLE_COLUMNS.SUBMITTER_USER_ID,
SUBMITTER_PAYROLL_ID: this.TABLE_COLUMNS.SUBMITTER_PAYROLL_ID,
ORDER_DEAL_NUMBERS: this.TABLE_COLUMNS.ORDER_DEAL_NUMBERS,
AMOUNT_DEBITED: this.TABLE_COLUMNS.AMOUNT_DEBITED,
AMOUNT_REIMBURSED: this.TABLE_COLUMNS.AMOUNT_REIMBURSED,
EXPORTED_ICON: this.TABLE_COLUMNS.EXPORTED_TO,
ACTION: this.TABLE_COLUMNS.ACTION,
},
Expand Down Expand Up @@ -7071,6 +7073,8 @@ const CONST = {
BANK_ACCOUNT: this.TABLE_COLUMNS.GROUP_BANK_ACCOUNT,
WITHDRAWAL_ID: this.TABLE_COLUMNS.GROUP_WITHDRAWAL_ID,
EXPENSES: this.TABLE_COLUMNS.GROUP_EXPENSES,
AMOUNT_DEBITED: this.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED,
AMOUNT_REIMBURSED: this.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED,
TOTAL: this.TABLE_COLUMNS.GROUP_TOTAL,
},
CATEGORY: {
Expand Down Expand Up @@ -7149,6 +7153,8 @@ const CONST = {
this.TABLE_COLUMNS.GROUP_BANK_ACCOUNT,
this.TABLE_COLUMNS.GROUP_WITHDRAWAL_ID,
this.TABLE_COLUMNS.GROUP_EXPENSES,
this.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED,
this.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED,
this.TABLE_COLUMNS.GROUP_TOTAL,
],
CATEGORY: [this.TABLE_COLUMNS.GROUP_CATEGORY, this.TABLE_COLUMNS.GROUP_EXPENSES, this.TABLE_COLUMNS.GROUP_TOTAL],
Expand Down Expand Up @@ -7240,6 +7246,8 @@ const CONST = {
SUBMITTER_USER_ID: 'submitterUserID',
SUBMITTER_PAYROLL_ID: 'submitterPayrollID',
ORDER_DEAL_NUMBERS: 'orderDealNumbers',
AMOUNT_DEBITED: 'amountDebited',
AMOUNT_REIMBURSED: 'amountReimbursed',
AVATAR: 'avatar',
STATUS: 'status',
PAID_STATUS: 'paidstatus',
Expand Down Expand Up @@ -7269,6 +7277,8 @@ const CONST = {
GROUP_YEAR: 'groupyear',
GROUP_QUARTER: 'groupquarter',
GROUP_WITHDRAWAL_STATUS: 'groupWithdrawalStatus',
GROUP_AMOUNT_DEBITED: 'groupAmountDebited',
GROUP_AMOUNT_REIMBURSED: 'groupAmountReimbursed',
},
SYNTAX_OPERATORS: {
AND: 'and',
Expand Down Expand Up @@ -7331,6 +7341,8 @@ const CONST = {
PAID_STATUS: 'paidStatus',
WITHDRAWN: 'withdrawn',
TOTAL: 'total',
AMOUNT_DEBITED: 'amountDebited',
AMOUNT_REIMBURSED: 'amountReimbursed',
TITLE: 'title',
ASSIGNEE: 'assignee',
REIMBURSABLE: 'reimbursable',
Expand Down Expand Up @@ -7383,6 +7395,8 @@ const CONST = {
DATE: 'date',
AMOUNT: 'amount',
TOTAL: 'total',
AMOUNT_DEBITED: 'amount-debited',
AMOUNT_REIMBURSED: 'amount-reimbursed',
EXPENSE_TYPE: 'expense-type',
RECEIPT_TYPE: 'receipt-type',
CURRENCY: 'currency',
Expand Down Expand Up @@ -7494,6 +7508,10 @@ const CONST = {
[this.TABLE_COLUMNS.GROUP_YEAR]: 'group-year',
[this.TABLE_COLUMNS.GROUP_QUARTER]: 'group-quarter',
[this.TABLE_COLUMNS.GROUP_WITHDRAWAL_STATUS]: 'group-withdrawal-status',
[this.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED]: 'group-amount-debited',
[this.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED]: 'group-amount-reimbursed',
[this.TABLE_COLUMNS.AMOUNT_DEBITED]: 'amount-debited',
[this.TABLE_COLUMNS.AMOUNT_REIMBURSED]: 'amount-reimbursed',
};
},
NOT_PREFIX: '-',
Expand Down
2 changes: 1 addition & 1 deletion src/components/Search/FilterDropdowns/SortByPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function SortByPopup({searchResults, queryJSON, groupBy, onSort, onSortOrderPres
const searchDataType = shouldUseLiveData ? CONST.SEARCH.DATA_TYPES.EXPENSE_REPORT : searchResults?.search?.type;
const currentColumns = !searchResults?.data
? []
: getColumnsToShow({currentAccountID: accountID, data: searchResults.data, visibleColumns, type: searchDataType, groupBy: groupBy?.value});
: getColumnsToShow({currentAccountID: accountID, data: searchResults.data, visibleColumns, type: searchDataType, groupBy: groupBy?.value, sortBy: queryJSON.sortBy});
const sortableColumns = getSortByOptions(currentColumns, translate);
const sortOrder = queryJSON.sortOrder;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function ExpenseReportListItemRowWide({
const submitterUserID = item.submitterUserID;
const submitterPayrollID = item.submitterPayrollID;
const orderDealNumbers = item.orderDealNumbers;
const {debitedAmount, debitedCurrency, creditedAmount, creditedCurrency} = item;

const columnComponents = {
[CONST.SEARCH.TABLE_COLUMNS.AVATAR]: (
Expand Down Expand Up @@ -234,6 +235,26 @@ function ExpenseReportListItemRowWide({
<TextCell text={orderDealNumbers} />
</View>
),
[CONST.SEARCH.TABLE_COLUMNS.AMOUNT_DEBITED]: (
<View style={[StyleUtils.getReportTableColumnStyles(CONST.SEARCH.TABLE_COLUMNS.AMOUNT_DEBITED)]}>
{!!debitedAmount && !!debitedCurrency && (
<TotalCell
total={debitedAmount}
currency={debitedCurrency}
/>
)}
</View>
),
[CONST.SEARCH.TABLE_COLUMNS.AMOUNT_REIMBURSED]: (
<View style={[StyleUtils.getReportTableColumnStyles(CONST.SEARCH.TABLE_COLUMNS.AMOUNT_REIMBURSED)]}>
{!!creditedAmount && !!creditedCurrency && (
<TotalCell
total={creditedAmount}
currency={creditedCurrency}
/>
)}
</View>
),
[CONST.SEARCH.TABLE_COLUMNS.REPORT_ID]: (
<View style={[StyleUtils.getReportTableColumnStyles(CONST.SEARCH.TABLE_COLUMNS.REPORT_ID)]}>
<TextCell text={item.reportID === CONST.REPORT.UNREPORTED_REPORT_ID ? '' : item.reportID} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ function WithdrawalIDListItemHeaderImpl({
withdrawalIDItem.debitPosted,
DateUtils.doesDateBelongToAPastYear(withdrawalIDItem.debitPosted) ? CONST.DATE.MONTH_DAY_YEAR_ABBR_FORMAT : CONST.DATE.MONTH_DAY_ABBR_FORMAT,
);
const {debitedAmount, debitedCurrency, creditedAmount, creditedCurrency} = withdrawalIDItem;

const badgeProps = getSettlementStatusBadgeProps(withdrawalIDItem.state, translate, theme);
const settlementStatus = getSettlementStatus(withdrawalIDItem.state);
const statusBadge = !!badgeProps && (
Expand Down Expand Up @@ -177,6 +179,33 @@ function WithdrawalIDListItemHeaderImpl({
<TextCell text={String(withdrawalIDItem.count)} />
</View>
),
// A settlement that did not convert currencies reports neither amount, and an amount says nothing without the currency it moved in.
[CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED]: (
<View
key={CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED}
style={StyleUtils.getReportTableColumnStyles(CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED)}
>
{!!debitedAmount && !!debitedCurrency && (
<TotalCell
total={debitedAmount}
currency={debitedCurrency}
/>
)}
</View>
),
[CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED]: (
<View
key={CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED}
style={StyleUtils.getReportTableColumnStyles(CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED)}
>
{!!creditedAmount && !!creditedCurrency && (
<TotalCell
total={creditedAmount}
currency={creditedCurrency}
/>
)}
</View>
),
[CONST.SEARCH.TABLE_COLUMNS.GROUP_TOTAL]: (
<View
key={CONST.SEARCH.TABLE_COLUMNS.TOTAL}
Expand Down
44 changes: 31 additions & 13 deletions src/components/Search/SearchTableHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,14 @@ const getExpenseReportHeaders = (profileIcon?: IconAsset): SearchColumnConfig[]
columnName: CONST.SEARCH.TABLE_COLUMNS.ORDER_DEAL_NUMBERS,
translationKey: 'common.internationalReimbursementIDs',
},
{
columnName: CONST.SEARCH.TABLE_COLUMNS.AMOUNT_DEBITED,
translationKey: 'common.amountDebited',
},
{
columnName: CONST.SEARCH.TABLE_COLUMNS.AMOUNT_REIMBURSED,
translationKey: 'common.amountReimbursed',
},
{
columnName: CONST.SEARCH.TABLE_COLUMNS.BASE_62_REPORT_ID,
translationKey: 'common.reportID',
Expand All @@ -336,18 +344,17 @@ const getExpenseReportHeaders = (profileIcon?: IconAsset): SearchColumnConfig[]
];

const getTransactionGroupHeaders = (groupBy: SearchGroupBy, icons: SearchHeaderIcons): SearchColumnConfig[] => {
const commonGroupHeaders: SearchColumnConfig[] = [
{
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_EXPENSES,
translationKey: 'common.expenses' as TranslationPaths,
isColumnSortable: true,
},
{
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_TOTAL,
translationKey: 'common.total' as TranslationPaths,
isColumnSortable: true,
},
];
const groupExpensesHeader: SearchColumnConfig = {
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_EXPENSES,
translationKey: 'common.expenses' as TranslationPaths,
isColumnSortable: true,
};
const groupTotalHeader: SearchColumnConfig = {
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_TOTAL,
translationKey: 'common.total' as TranslationPaths,
isColumnSortable: true,
};
const commonGroupHeaders: SearchColumnConfig[] = [groupExpensesHeader, groupTotalHeader];
switch (groupBy) {
case CONST.SEARCH.GROUP_BY.FROM:
return [
Expand Down Expand Up @@ -405,7 +412,18 @@ const getTransactionGroupHeaders = (groupBy: SearchGroupBy, icons: SearchHeaderI
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_WITHDRAWAL_ID,
translationKey: 'common.withdrawalID',
},
...commonGroupHeaders,
groupExpensesHeader,
{
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED,
translationKey: 'common.amountDebited',
isColumnSortable: true,
},
{
columnName: CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED,
translationKey: 'common.amountReimbursed',
isColumnSortable: true,
},
groupTotalHeader,
];
case CONST.SEARCH.GROUP_BY.CATEGORY:
return [
Expand Down
7 changes: 6 additions & 1 deletion src/components/Search/SortableTableHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,14 @@ function SortableTableHeader({
const sortByColumnName = sortColumnName ?? columnName;
const isActive = sortBy === sortByColumnName;
const isReimbursableOrBillableColumn = columnName === CONST.SEARCH.TABLE_COLUMNS.REIMBURSABLE || columnName === CONST.SEARCH.TABLE_COLUMNS.BILLABLE;
const isConversionAmountColumn =
columnName === CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_DEBITED ||
columnName === CONST.SEARCH.TABLE_COLUMNS.GROUP_AMOUNT_REIMBURSED ||
columnName === CONST.SEARCH.TABLE_COLUMNS.AMOUNT_DEBITED ||
columnName === CONST.SEARCH.TABLE_COLUMNS.AMOUNT_REIMBURSED;
const textStyle = [
columnName === CONST.SEARCH.TABLE_COLUMNS.RECEIPT ? StyleUtils.getTextOverflowStyle('clip') : null,
isReimbursableOrBillableColumn ? styles.flexShrink1 : null,
isReimbursableOrBillableColumn || isConversionAmountColumn ? styles.flexShrink1 : null,
];

return (
Expand Down
1 change: 1 addition & 0 deletions src/components/Search/hooks/useSearchSnapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ function useSearchSnapshot({queryJSON, searchResults, newSearchResultKeys, trans
groupBy: validGroupBy,
shouldUseStrictDefaultExpenseColumns: currentSearchKey === CONST.SEARCH.SEARCH_KEYS.EXPENSES && isDefaultExpensesQuery(queryJSON),
fallbackPolicyID: policyForMovingExpensesID,
sortBy: queryJSON.sortBy,
});
})();

Expand Down
7 changes: 6 additions & 1 deletion src/components/Search/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,12 @@ type SearchDateFilterKeys =

type SearchDateKey = `${SearchDateFilterKeys}${ValueOf<typeof CONST.SEARCH.DATE_MODIFIERS>}` | ReportFieldDateKey;

type SearchAmountFilterKeys = typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT | typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.TOTAL | typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.PURCHASE_AMOUNT;
type SearchAmountFilterKeys =
| typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT
| typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.TOTAL
| typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.PURCHASE_AMOUNT
| typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT_DEBITED
| typeof CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT_REIMBURSED;
type SearchAmountValues = Record<ValueOf<typeof CONST.SEARCH.AMOUNT_MODIFIERS>, string | undefined>;

type SearchFilterKey =
Expand Down
2 changes: 2 additions & 0 deletions src/hooks/useAdvancedSearchFilters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ const typeFiltersKeys = {
[
CONST.SEARCH.SYNTAX_FILTER_KEYS.DATE,
CONST.SEARCH.SYNTAX_FILTER_KEYS.TOTAL,
CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT_DEBITED,
CONST.SEARCH.SYNTAX_FILTER_KEYS.AMOUNT_REIMBURSED,
CONST.SEARCH.SYNTAX_FILTER_KEYS.CURRENCY,
CONST.SEARCH.SYNTAX_FILTER_KEYS.EXPORTED_TO,
CONST.SEARCH.SYNTAX_FILTER_KEYS.PAID_STATUS,
Expand Down
1 change: 1 addition & 0 deletions src/hooks/useSearchOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ function useSearchOverlay({
groupBy: validGroupBy,
shouldUseStrictDefaultExpenseColumns,
fallbackPolicyID: policyForMovingExpensesID,
sortBy: queryJSON.sortBy,
});
})();

Expand Down
2 changes: 2 additions & 0 deletions src/languages/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'Langer Bericht-ID',
withdrawalID: 'Auszahlungs-ID',
internationalReimbursementIDs: 'Internationale Erstattungs-IDs',
amountDebited: 'Belasteter Betrag',
amountReimbursed: 'Erstatteter Betrag',
withdrawalStatus: 'Auszahlungsstatus',
paidStatus: 'Status: Bezahlt',
bankAccounts: 'Bankkonten',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/el.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'Μακρύ αναγνωριστικό αναφοράς',
withdrawalID: 'Αναγνωριστικό ανάληψης',
internationalReimbursementIDs: 'Διεθνή αναγνωριστικά αποζημιώσεων',
amountDebited: 'Ποσό χρέωσης',
amountReimbursed: 'Ποσό που αποζημιώθηκε',
withdrawalStatus: 'Κατάσταση ανάληψης',
paidStatus: 'Κατάσταση πληρωμής',
bankAccounts: 'Τραπεζικοί λογαριασμοί',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,8 @@ const translations = {
longReportID: 'Long Report ID',
withdrawalID: 'Withdrawal ID',
internationalReimbursementIDs: 'International reimbursement IDs',
amountDebited: 'Amount debited',
amountReimbursed: 'Amount reimbursed',
withdrawalStatus: 'Withdrawal status',
paidStatus: 'Paid status',
bankAccounts: 'Bank accounts',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ const translations: TranslationDeepObject<typeof en> = {
reimbursableTotal: 'Total reembolsable',
nonReimbursableTotal: 'Total no reembolsable',
internationalReimbursementIDs: 'IDs de reembolso internacional',
amountDebited: 'Importe debitado',
amountReimbursed: 'Importe reembolsado',
opensInNewTab: 'Se abre en una nueva pestaña',
locked: 'Bloqueado',
month: 'Monat',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/fr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'ID de note de frais longue',
withdrawalID: 'ID de retrait',
internationalReimbursementIDs: 'ID de remboursement international',
amountDebited: 'Montant débité',
amountReimbursed: 'Montant remboursé',
withdrawalStatus: 'Statut de retrait',
paidStatus: 'Statut payé',
bankAccounts: 'Comptes bancaires',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'ID report dettagliato',
withdrawalID: 'ID prelievo',
internationalReimbursementIDs: 'ID di rimborso internazionale',
amountDebited: 'Importo addebitato',
amountReimbursed: 'Importo rimborsato',
withdrawalStatus: 'Stato del prelievo',
paidStatus: 'Stato di pagamento',
bankAccounts: 'Conti bancari',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: '長いレポートID',
withdrawalID: '出金ID',
internationalReimbursementIDs: '国際払い戻しID',
amountDebited: '引き落とし額',
amountReimbursed: '精算済み金額',
withdrawalStatus: '出金ステータス',
paidStatus: '支払済みステータス',
bankAccounts: '銀行口座',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/nl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'Lang rapport-ID',
withdrawalID: 'Opname-ID',
internationalReimbursementIDs: 'Internationale terugbetalings-ID’s',
amountDebited: 'Afgeschreven bedrag',
amountReimbursed: 'Terugbetaald bedrag',
withdrawalStatus: 'Opnamestatus',
paidStatus: 'Betaald-status',
bankAccounts: 'Bankrekeningen',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/pl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'Długi identyfikator raportu',
withdrawalID: 'Identyfikator wypłaty',
internationalReimbursementIDs: 'Identyfikatory zwrotów międzynarodowych',
amountDebited: 'Kwota obciążenia',
amountReimbursed: 'Kwota zwrócona',
withdrawalStatus: 'Status wypłaty',
paidStatus: 'Status: opłacono',
bankAccounts: 'Konta bankowe',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/pt-BR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: 'ID de relatório longo',
withdrawalID: 'ID do saque',
internationalReimbursementIDs: 'IDs de reembolso internacional',
amountDebited: 'Valor debitado',
amountReimbursed: 'Valor reembolsado',
withdrawalStatus: 'Status do saque',
paidStatus: 'Status pago',
bankAccounts: 'Contas bancárias',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/zh-hans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,8 @@ const translations: TranslationDeepObject<typeof en> = {
longReportID: '长报表 ID',
withdrawalID: '提现编号',
internationalReimbursementIDs: '国际报销 ID',
amountDebited: '扣款金额',
amountReimbursed: '已报销金额',
withdrawalStatus: '提现状态',
paidStatus: '已付款状态',
bankAccounts: '银行账户',
Expand Down
Loading
Loading