.
This commit is contained in:
parent
789fd4ec3e
commit
b52ca83496
@ -4,7 +4,7 @@ import type { TaxRegimeListRow } from "../shared";
|
|||||||
|
|
||||||
export const getTaxRegimeOptions = (taxRegimes: TaxRegimeListRow[]): SelectFieldItem[] => {
|
export const getTaxRegimeOptions = (taxRegimes: TaxRegimeListRow[]): SelectFieldItem[] => {
|
||||||
return taxRegimes.map((taxRegime) => ({
|
return taxRegimes.map((taxRegime) => ({
|
||||||
value: taxRegime.id,
|
value: taxRegime.code,
|
||||||
label: taxRegime.description,
|
label: taxRegime.description,
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
|||||||
@ -11,6 +11,7 @@ import { useMemo } from "react";
|
|||||||
export const useUpdateProformaPaymentController = () => {
|
export const useUpdateProformaPaymentController = () => {
|
||||||
const paymentMethodsQuery = usePaymentMethodsListQuery({
|
const paymentMethodsQuery = usePaymentMethodsListQuery({
|
||||||
criteria: {
|
criteria: {
|
||||||
|
pageSize: 999,
|
||||||
filters: [
|
filters: [
|
||||||
{
|
{
|
||||||
field: "isActive",
|
field: "isActive",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user