mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: writing inventory cost lot of opening item quantity transaction.
This commit is contained in:
@@ -10,7 +10,9 @@ export interface IInventoryTransaction {
|
||||
transactionType: string,
|
||||
transactionId: number,
|
||||
lotNumber: string,
|
||||
entryId: number
|
||||
entryId: number,
|
||||
createdAt?: Date,
|
||||
updatedAt?: Date,
|
||||
};
|
||||
|
||||
export interface IInventoryLotCost {
|
||||
@@ -18,11 +20,12 @@ export interface IInventoryLotCost {
|
||||
date: Date,
|
||||
direction: string,
|
||||
itemId: number,
|
||||
quantity: number,
|
||||
rate: number,
|
||||
remaining: number,
|
||||
cost: number,
|
||||
lotNumber: string|number,
|
||||
transactionType: string,
|
||||
transactionId: string,
|
||||
transactionId: number,
|
||||
entryId: number
|
||||
}
|
||||
Reference in New Issue
Block a user