.
This commit is contained in:
parent
789fd4ec3e
commit
b52ca83496
@ -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,
|
||||
}));
|
||||
};
|
||||
|
||||
@ -11,6 +11,7 @@ import { useMemo } from "react";
|
||||
export const useUpdateProformaPaymentController = () => {
|
||||
const paymentMethodsQuery = usePaymentMethodsListQuery({
|
||||
criteria: {
|
||||
pageSize: 999,
|
||||
filters: [
|
||||
{
|
||||
field: "isActive",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user