repzo-sap-absjo 1.0.27 → 1.0.28
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.
package/lib/commands/product.js
CHANGED
|
@@ -269,6 +269,7 @@ export const sync_product = async (commandEvent) => {
|
|
|
269
269
|
name: sap_product.DEFAULTITEMUOM,
|
|
270
270
|
company_namespace: nameSpace,
|
|
271
271
|
disabled: false,
|
|
272
|
+
"integration_meta.ITEMCODE": sap_product.ITEMCODE,
|
|
272
273
|
});
|
|
273
274
|
if (!measureUnit.data || measureUnit.data.length != 1) {
|
|
274
275
|
throw `MeasureUnit not found => UOMGROUPENTRY: ${sap_product.UOMGROUPENTRY}, ITEMCODE: ${sap_product.ITEMCODE}, DEFAULTITEMUOM: ${sap_product.DEFAULTITEMUOM}`;
|
package/package.json
CHANGED
package/src/commands/product.ts
CHANGED
|
@@ -195,6 +195,7 @@ export const sync_product = async (commandEvent: CommandEvent) => {
|
|
|
195
195
|
name: sap_product.DEFAULTITEMUOM,
|
|
196
196
|
company_namespace: nameSpace,
|
|
197
197
|
disabled: false,
|
|
198
|
+
"integration_meta.ITEMCODE": sap_product.ITEMCODE,
|
|
198
199
|
});
|
|
199
200
|
if (!measureUnit.data || measureUnit.data.length != 1) {
|
|
200
201
|
throw `MeasureUnit not found => UOMGROUPENTRY: ${sap_product.UOMGROUPENTRY}, ITEMCODE: ${sap_product.ITEMCODE}, DEFAULTITEMUOM: ${sap_product.DEFAULTITEMUOM}`;
|