From b52ca8349636b8c3514492c214dbc041ecca6929 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 14 Jun 2026 21:40:57 +0200 Subject: [PATCH] . --- .../src/web/tax-regimes/utils/tax-regime-options.utils.ts | 2 +- .../controllers/use-update-proforma-payment-controller.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/catalogs/src/web/tax-regimes/utils/tax-regime-options.utils.ts b/modules/catalogs/src/web/tax-regimes/utils/tax-regime-options.utils.ts index 613313aa..51cdd0bd 100644 --- a/modules/catalogs/src/web/tax-regimes/utils/tax-regime-options.utils.ts +++ b/modules/catalogs/src/web/tax-regimes/utils/tax-regime-options.utils.ts @@ -4,7 +4,7 @@ import type { TaxRegimeListRow } from "../shared"; export const getTaxRegimeOptions = (taxRegimes: TaxRegimeListRow[]): SelectFieldItem[] => { return taxRegimes.map((taxRegime) => ({ - value: taxRegime.id, + value: taxRegime.code, label: taxRegime.description, })); }; diff --git a/modules/customer-invoices/src/web/proformas/update/controllers/use-update-proforma-payment-controller.ts b/modules/customer-invoices/src/web/proformas/update/controllers/use-update-proforma-payment-controller.ts index b51e981c..e1465b8c 100644 --- a/modules/customer-invoices/src/web/proformas/update/controllers/use-update-proforma-payment-controller.ts +++ b/modules/customer-invoices/src/web/proformas/update/controllers/use-update-proforma-payment-controller.ts @@ -11,6 +11,7 @@ import { useMemo } from "react"; export const useUpdateProformaPaymentController = () => { const paymentMethodsQuery = usePaymentMethodsListQuery({ criteria: { + pageSize: 999, filters: [ { field: "isActive",