hvp-shared 6.0.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -104,6 +104,8 @@ export interface UpdateCatalogItemHvpDataRequest {
|
|
|
104
104
|
pricingRuleCode?: PricingRuleCode;
|
|
105
105
|
/** Recommended price (calculated from pricing rule) */
|
|
106
106
|
recommendedPrice?: number;
|
|
107
|
+
/** Flag: item requires manual stock review (algorithm doesn't apply) */
|
|
108
|
+
requiresManualReview?: boolean;
|
|
107
109
|
}
|
|
108
110
|
/**
|
|
109
111
|
* Update stock levels for a warehouse (sets pending)
|
|
@@ -136,6 +136,8 @@ export interface CatalogItemDetailResponse {
|
|
|
136
136
|
* Calculated from: cost * (1 + targetMargin/100) * (1 + VAT/100)
|
|
137
137
|
*/
|
|
138
138
|
recommendedPrice?: number;
|
|
139
|
+
/** Flag: item requires manual stock review (algorithm doesn't apply) */
|
|
140
|
+
requiresManualReview?: boolean;
|
|
139
141
|
};
|
|
140
142
|
hasPendingChanges: boolean;
|
|
141
143
|
lastSyncAt: string;
|
|
@@ -62,6 +62,8 @@ export interface CatalogItemHvpData {
|
|
|
62
62
|
notes?: string;
|
|
63
63
|
/** Internal category for HVP organization */
|
|
64
64
|
internalCategory?: string;
|
|
65
|
+
/** Flag: This item requires manual stock review (algorithm doesn't apply) */
|
|
66
|
+
requiresManualReview?: boolean;
|
|
65
67
|
}
|
|
66
68
|
/**
|
|
67
69
|
* Complete CatalogItem
|