mobicloud-core 1.0.169 → 1.0.170

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.
@@ -5093,8 +5093,11 @@
5093
5093
  };
5094
5094
  PickinglistAddNewShipment.prototype.validateShipment = function () {
5095
5095
  var _a, _b, _c;
5096
- this.productCodeValid = (_a = validationEngine__default['default'].validateGroup("ProductCode")) === null || _a === void 0 ? void 0 : _a.isValid;
5097
- if (this.servicePointRequired) {
5096
+ if (!this.disableCarrierProducts)
5097
+ this.productCodeValid = (_a = validationEngine__default['default'].validateGroup("ProductCode")) === null || _a === void 0 ? void 0 : _a.isValid;
5098
+ else
5099
+ this.productCodeValid = true;
5100
+ if (!this.disableCarrierProducts && this.servicePointRequired) {
5098
5101
  this.servicePointValid = (_b = validationEngine__default['default'].validateGroup("ServicePoint")) === null || _b === void 0 ? void 0 : _b.isValid;
5099
5102
  }
5100
5103
  else {