mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 09:35:44 +00:00
exchangeSettings.service/hook/card follow the backend's new shape: a single ExchangeSettings object becomes a list, get() becomes list(), and setFallbackRate(rate) becomes setFallbackRate(currency, rate). ExchangeRateSettingsCard now renders one row per currency instead of one hardcoded USD->ETB form. manualPaymentSettings.service/hook/card add djfEnabled alongside etb/usdEnabled, matching the backend's new column. InvoicesPage's collected-summary KPI strip adds a DJF tile and folds its ETB-equivalent into the existing 'Total collected' conversion, reading each currency's rate from the now-list-shaped settings query. Claude-Session: https://claude.ai/code/session_01CZy77vCWhka3pnmVF9NDkL
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { api as client } from "../auth/http";
|
|
import { unwrap } from "@/utils/endpoint";
|
|
import { URL_CONSTANTS } from "@/constants/URLS";
|
|
import type { ApiResponse } from "@/types/apiResponse";
|
|
|
|
const BASE = URL_CONSTANTS.MANUAL_PAYMENT_SETTINGS.BASE;
|
|
|
|
/**
|
|
* Whether Finance may settle invoices by hand (bank transfer / counter) rather
|
|
* than the customer paying online — switched per currency, because the two
|
|
* channels are operationally different.
|
|
*/
|
|
export interface ManualPaymentSettings {
|
|
etbEnabled: boolean;
|
|
usdEnabled: boolean;
|
|
djfEnabled: boolean;
|
|
updatedById: string | null;
|
|
updatedAt?: string;
|
|
}
|
|
|
|
export const manualPaymentSettingsService = {
|
|
get: async (): Promise<ManualPaymentSettings> => {
|
|
const response = await client.get<ApiResponse<ManualPaymentSettings>>(BASE);
|
|
return unwrap(response.data);
|
|
},
|
|
|
|
/** Partial: an omitted currency keeps its current setting. */
|
|
update: async (
|
|
patch: Partial<
|
|
Pick<ManualPaymentSettings, "etbEnabled" | "usdEnabled" | "djfEnabled">
|
|
>,
|
|
): Promise<ManualPaymentSettings> => {
|
|
const response = await client.patch<ApiResponse<ManualPaymentSettings>>(
|
|
BASE,
|
|
patch,
|
|
);
|
|
return unwrap(response.data);
|
|
},
|
|
};
|