sigesp 0.9.20-20221228 → 0.9.21-20221229

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.
@@ -331,6 +331,7 @@
331
331
  function MUsuarioPrefijo(e) {
332
332
  var _this = _super.call(this) || this;
333
333
  _this.idEmpresa = 0;
334
+ _this.idEnteprise = 0;
334
335
  _this.id = 0;
335
336
  _this.idUsuario = 0;
336
337
  _this.idDtPrefijo = 0;
@@ -341,6 +342,7 @@
341
342
  _this.estatusActivo = true;
342
343
  if (e) {
343
344
  _this.idEmpresa = +e.id_empresa;
345
+ _this.idEnteprise = +e.id_enterprise;
344
346
  _this.id = +e.id;
345
347
  _this.idUsuario = +e.id_usuario;
346
348
  _this.idDtPrefijo = +e.id_dt_prefijo;
@@ -358,6 +360,7 @@
358
360
  MUsuarioPrefijo.prototype.dataInterface = function () {
359
361
  return {
360
362
  id_empresa: this.idEmpresa.toString(),
363
+ id_enterprise: this.idEnteprise.toString(),
361
364
  id: this.id.toString(),
362
365
  id_usuario: this.idUsuario.toString(),
363
366
  id_dt_prefijo: this.idDtPrefijo.toString(),
@@ -376,6 +379,7 @@
376
379
  function MPrefijo(e) {
377
380
  var _this = _super.call(this) || this;
378
381
  _this.idEmpresa = 0;
382
+ _this.idEnterprise = 0;
379
383
  _this.id = 0;
380
384
  _this.prefijo = '';
381
385
  _this.procede = '';
@@ -391,6 +395,7 @@
391
395
  _this.usuarios = [];
392
396
  if (e) {
393
397
  _this.idEmpresa = +e.id_empresa;
398
+ _this.idEnterprise = +e.id_enterprise;
394
399
  _this.id = +e.id;
395
400
  _this.prefijo = e.prefijo;
396
401
  _this.procede = e.procede;
@@ -415,6 +420,7 @@
415
420
  MPrefijo.prototype.dataInterface = function () {
416
421
  return {
417
422
  id_empresa: this.idEmpresa.toString(),
423
+ id_enterprise: this.idEnterprise.toString(),
418
424
  id: this.id.toString(),
419
425
  prefijo: this.prefijo,
420
426
  procede: this.procede,