repzo-sap-absjo 1.0.55 → 1.0.56
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.
|
@@ -194,7 +194,7 @@ export const adjust_inventory = async (commandEvent) => {
|
|
|
194
194
|
// );
|
|
195
195
|
throw `MeasureUnit with UNITNAME: ${sap_item.UNITNAME} & ALTUOMID: ${sap_item.UNITID} was not found`;
|
|
196
196
|
}
|
|
197
|
-
const qty = measureUnit.factor
|
|
197
|
+
const qty = sap_item.QTY; //* measureUnit.factor *;
|
|
198
198
|
const match_item_in_repzo_inventory =
|
|
199
199
|
(_c =
|
|
200
200
|
repzo_inventory === null || repzo_inventory === void 0
|
|
@@ -394,7 +394,7 @@ export const adjust_inventory = async (commandEvent) => {
|
|
|
394
394
|
// );
|
|
395
395
|
throw `MeasureUnit with UNITNAME: ${sap_item.UNITNAME} & ALTUOMID: ${sap_item.UNITID} was not found`;
|
|
396
396
|
}
|
|
397
|
-
const qty =
|
|
397
|
+
const qty = sap_item.QTY; //* measureUnit.factor
|
|
398
398
|
const match_item_in_repzo_inventory =
|
|
399
399
|
(_c =
|
|
400
400
|
repzo_inventory === null || repzo_inventory === void 0
|
package/package.json
CHANGED
|
@@ -160,7 +160,7 @@ export const adjust_inventory = async (commandEvent: CommandEvent) => {
|
|
|
160
160
|
throw `MeasureUnit with UNITNAME: ${sap_item.UNITNAME} & ALTUOMID: ${sap_item.UNITID} was not found`;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
-
const qty = measureUnit.factor
|
|
163
|
+
const qty = sap_item.QTY; //* measureUnit.factor *;
|
|
164
164
|
|
|
165
165
|
const match_item_in_repzo_inventory =
|
|
166
166
|
repzo_inventory?.data?.find(
|
|
@@ -294,7 +294,7 @@ export const adjust_inventory = async (commandEvent: CommandEvent) => {
|
|
|
294
294
|
throw `MeasureUnit with UNITNAME: ${sap_item.UNITNAME} & ALTUOMID: ${sap_item.UNITID} was not found`;
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
-
const qty =
|
|
297
|
+
const qty = sap_item.QTY; //* measureUnit.factor
|
|
298
298
|
|
|
299
299
|
const match_item_in_repzo_inventory = repzo_inventory?.data?.find(
|
|
300
300
|
(repzo_item) =>
|