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.
- package/bundles/sigesp.umd.js +13 -10
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/models/SSS/log.model.js +14 -12
- package/fesm2015/sigesp.js +13 -11
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/models/SSS/log.model.d.ts +1 -1
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -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
|
-
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
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;
|