sigesp 0.8.59-220113 → 0.8.60-220113

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.
@@ -6970,6 +6970,7 @@
6970
6970
  var MLog = /** @class */ (function (_super) {
6971
6971
  __extends(MLog, _super);
6972
6972
  function MLog(record) {
6973
+ if (record === void 0) { record = null; }
6973
6974
  var _this = _super.call(this) || this;
6974
6975
  _this.id_usuario = 0;
6975
6976
  _this.id_component = 0;
@@ -6981,16 +6982,18 @@
6981
6982
  _this.feclog = '';
6982
6983
  _this.id_empresa = 0;
6983
6984
  _this.id_log = 0;
6984
- _this.id_usuario = record.id_usuario;
6985
- _this.id_component = record.id_component;
6986
- _this.codsis = record.codsis;
6987
- _this.evento = record.evento;
6988
- _this.deslog = record.deslog;
6989
- _this.equlog = record.equlog;
6990
- _this.fecsys = record.fecsys;
6991
- _this.feclog = record.feclog;
6992
- _this.id_empresa = record.id_empresa;
6993
- _this.id_log = parseInt(record.id_log);
6985
+ if (record) {
6986
+ _this.id_usuario = record.id_usuario;
6987
+ _this.id_component = record.id_component;
6988
+ _this.codsis = record.codsis;
6989
+ _this.evento = record.evento;
6990
+ _this.deslog = record.deslog;
6991
+ _this.equlog = record.equlog;
6992
+ _this.fecsys = record.fecsys;
6993
+ _this.feclog = record.feclog;
6994
+ _this.id_empresa = record.id_empresa;
6995
+ _this.id_log = parseInt(record.id_log);
6996
+ }
6994
6997
  return _this;
6995
6998
  }
6996
6999
  return MLog;