cost and price

This commit is contained in:
2026-03-14 23:23:43 -05:00
parent 9d233a0c3d
commit c21f7c2cee
10 changed files with 33 additions and 0 deletions

View File

@@ -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[];
}