mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: add opening quantity, cost and date to items.
This commit is contained in:
@@ -8,7 +8,7 @@ export interface IInventoryTransaction {
|
||||
quantity: number,
|
||||
rate: number,
|
||||
transactionType: string,
|
||||
transactionId: string,
|
||||
transactionId: number,
|
||||
lotNumber: string,
|
||||
entryId: number
|
||||
};
|
||||
|
||||
@@ -21,6 +21,11 @@ export interface IItem{
|
||||
purchaseDescription: string,
|
||||
|
||||
quantityOnHand: number,
|
||||
|
||||
openingQuantity: number,
|
||||
openingCost: number,
|
||||
openingDate: Date,
|
||||
|
||||
note: string,
|
||||
active: boolean,
|
||||
|
||||
@@ -52,6 +57,11 @@ export interface IItemDTO {
|
||||
purchaseDescription: string,
|
||||
|
||||
quantityOnHand: number,
|
||||
|
||||
openingQuantity?: number,
|
||||
openingCost?: number,
|
||||
openingDate?: Date,
|
||||
|
||||
note: string,
|
||||
active: boolean,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user