cost and price
This commit is contained in:
@@ -31,6 +31,7 @@ export interface InventoryItemOptionDto {
|
||||
id: string;
|
||||
sku: string;
|
||||
name: string;
|
||||
defaultPrice: number | null;
|
||||
}
|
||||
|
||||
export interface WarehouseLocationOptionDto {
|
||||
@@ -128,6 +129,7 @@ export interface InventoryTransactionInput {
|
||||
export interface InventoryItemDetailDto extends InventoryItemSummaryDto {
|
||||
description: string;
|
||||
defaultCost: number | null;
|
||||
defaultPrice: number | null;
|
||||
notes: string;
|
||||
createdAt: string;
|
||||
bomLines: InventoryBomLineDto[];
|
||||
@@ -146,6 +148,7 @@ export interface InventoryItemInput {
|
||||
isSellable: boolean;
|
||||
isPurchasable: boolean;
|
||||
defaultCost: number | null;
|
||||
defaultPrice: number | null;
|
||||
notes: string;
|
||||
bomLines: InventoryBomLineInput[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user