repzo-sap-absjo 1.0.56 → 1.0.57
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.
|
@@ -486,7 +486,7 @@ export const sync_price_list = async (commandEvent) => {
|
|
|
486
486
|
: repzo_product_uom.factor) == 1
|
|
487
487
|
? Math.ceil(item.PLITEMPRICEVALUE * 1000)
|
|
488
488
|
: Math.ceil(
|
|
489
|
-
|
|
489
|
+
item.PLITEMPRICEVALUE * 1000 // / repzo_product_uom.factor // @changed to unipal
|
|
490
490
|
);
|
|
491
491
|
const variant =
|
|
492
492
|
(_u =
|
package/package.json
CHANGED
|
@@ -346,7 +346,7 @@ export const sync_price_list = async (commandEvent: CommandEvent) => {
|
|
|
346
346
|
repzo_product_uom && repzo_product_uom?.factor == 1
|
|
347
347
|
? Math.ceil(item.PLITEMPRICEVALUE * 1000)
|
|
348
348
|
: Math.ceil(
|
|
349
|
-
|
|
349
|
+
item.PLITEMPRICEVALUE * 1000 // / repzo_product_uom.factor // @changed to unipal
|
|
350
350
|
);
|
|
351
351
|
|
|
352
352
|
const variant = repzo_product?.variants?.find(
|