mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
24 lines
426 B
TypeScript
24 lines
426 B
TypeScript
|
|
|
|
export interface IInventoryTransaction {
|
|
id?: number,
|
|
date: Date,
|
|
direction: string,
|
|
itemId: number,
|
|
quantity: number,
|
|
rate: number,
|
|
transactionType: string,
|
|
transactionId: string,
|
|
};
|
|
|
|
export interface IInventoryLotCost {
|
|
id?: number,
|
|
date: Date,
|
|
direction: string,
|
|
itemId: number,
|
|
rate: number,
|
|
remaining: number,
|
|
lotNumber: string|number,
|
|
transactionType: string,
|
|
transactionId: string,
|
|
} |