WIP: Allocate landed cost.

This commit is contained in:
a.bouhuolia
2021-07-23 01:32:10 +02:00
parent 76c6cb3699
commit 70aea9bf2d
5 changed files with 91 additions and 54 deletions

View File

@@ -82,4 +82,12 @@ export interface IBillLandedCostTransaction {
allocationMethod: string;
costAccountId: number,
description: string;
};
allocatedEntries?: IBillLandedCostTransactionEntry[],
};
export interface IBillLandedCostTransactionEntry {
cost: number;
entryId: number;
billLocatedCostId: number,
}