This commit is contained in:
David Arranz 2026-03-26 10:04:45 +01:00
parent 964565a6fe
commit 3a61d726f8

View File

@ -1,7 +1,7 @@
import type { Tax, TaxPercentage } from "@erp/core/api";
import { Maybe } from "@repo/rdx-utils";
import { type InvoiceAmount, ItemAmount } from "../../common";
import { ItemAmount } from "../../common";
import type { IProformaItems } from "../entities";
type TaxGroupState = {
@ -13,11 +13,11 @@ type TaxGroupState = {
recCode: Maybe<string>;
recPercentage: Maybe<TaxPercentage>;
recAmount: InvoiceAmount;
recAmount: ItemAmount;
retentionCode: Maybe<string>;
retentionPercentage: Maybe<TaxPercentage>;
retentionAmount: InvoiceAmount;
retentionAmount: ItemAmount;
};
/**