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",