ntk-cms-api 18.3.437 → 18.3.440

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.
@@ -2198,6 +2198,17 @@ class CoreEnumService extends ApiServerBase {
2198
2198
  return this.errorExceptionResultCheck(ret);
2199
2199
  }));
2200
2200
  }
2201
+ ServiceSendEmailStatusTypeEnum() {
2202
+ return this.http
2203
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendEmailStatusTypeEnum', {
2204
+ headers: this.getHeaders(),
2205
+ })
2206
+ .pipe(
2207
+ // catchError(this.handleError)
2208
+ map((ret) => {
2209
+ return this.errorExceptionResultCheck(ret);
2210
+ }));
2211
+ }
2201
2212
  ServiceSendNotificationStatusTypeEnum() {
2202
2213
  return this.http
2203
2214
  .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotificationStatusTypeEnum', {
@@ -10321,6 +10332,23 @@ class EstatePropertyHistoryService extends ApiCmsServerBase {
10321
10332
  getModuleControllerUrl() {
10322
10333
  return 'EstatePropertyHistory';
10323
10334
  }
10335
+ ServiceGetAllResponsibleUserId(id, model) {
10336
+ if (model == null) {
10337
+ model = new FilterModel();
10338
+ }
10339
+ if (!id || id.length <= 0) {
10340
+ id = '';
10341
+ }
10342
+ return this.http
10343
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllResponsibleUserId/' + id, model, {
10344
+ headers: this.getHeaders(),
10345
+ })
10346
+ .pipe(retry(this.configApiRetry),
10347
+ // catchError(this.handleError)
10348
+ map((ret) => {
10349
+ return this.errorExceptionResultCheck(ret);
10350
+ }));
10351
+ }
10324
10352
  }
10325
10353
  EstatePropertyHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EstatePropertyHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
10326
10354
  EstatePropertyHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EstatePropertyHistoryService });
@@ -10449,6 +10477,23 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
10449
10477
  return this.errorExceptionResultBaseCheck(ret);
10450
10478
  }));
10451
10479
  }
10480
+ ServiceGetAllResponsibleUserId(id, model) {
10481
+ if (model == null) {
10482
+ model = new FilterModel();
10483
+ }
10484
+ if (!id || id.length <= 0) {
10485
+ id = '';
10486
+ }
10487
+ return this.http
10488
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllResponsibleUserId/' + id, model, {
10489
+ headers: this.getHeaders(),
10490
+ })
10491
+ .pipe(retry(this.configApiRetry),
10492
+ // catchError(this.handleError)
10493
+ map((ret) => {
10494
+ return this.errorExceptionResultCheck(ret);
10495
+ }));
10496
+ }
10452
10497
  ServiceGetAllWithResponsibleUserId(userId, model) {
10453
10498
  if (model == null) {
10454
10499
  model = new EstateCustomerOrderFilterModel();
@@ -10743,6 +10788,23 @@ class EstatePropertyService extends ApiCmsServerBase {
10743
10788
  return this.errorExceptionResultCheckExportFile(ret);
10744
10789
  }));
10745
10790
  }
10791
+ ServiceGetAllResponsibleUserId(id, model) {
10792
+ if (model == null) {
10793
+ model = new FilterModel();
10794
+ }
10795
+ if (!id || id.length <= 0) {
10796
+ id = '';
10797
+ }
10798
+ return this.http
10799
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllResponsibleUserId/' + id, model, {
10800
+ headers: this.getHeaders(),
10801
+ })
10802
+ .pipe(retry(this.configApiRetry),
10803
+ // catchError(this.handleError)
10804
+ map((ret) => {
10805
+ return this.errorExceptionResultCheck(ret);
10806
+ }));
10807
+ }
10746
10808
  ServiceGetAllWithResponsibleUserId(userId, model) {
10747
10809
  if (model == null) {
10748
10810
  model = new EstatePropertyFilterModel();