ntk-cms-api 18.3.439 → 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.
@@ -10332,6 +10332,23 @@ class EstatePropertyHistoryService extends ApiCmsServerBase {
10332
10332
  getModuleControllerUrl() {
10333
10333
  return 'EstatePropertyHistory';
10334
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
+ }
10335
10352
  }
10336
10353
  EstatePropertyHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EstatePropertyHistoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
10337
10354
  EstatePropertyHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EstatePropertyHistoryService });
@@ -10460,6 +10477,23 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
10460
10477
  return this.errorExceptionResultBaseCheck(ret);
10461
10478
  }));
10462
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
+ }
10463
10497
  ServiceGetAllWithResponsibleUserId(userId, model) {
10464
10498
  if (model == null) {
10465
10499
  model = new EstateCustomerOrderFilterModel();
@@ -10754,6 +10788,23 @@ class EstatePropertyService extends ApiCmsServerBase {
10754
10788
  return this.errorExceptionResultCheckExportFile(ret);
10755
10789
  }));
10756
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
+ }
10757
10808
  ServiceGetAllWithResponsibleUserId(userId, model) {
10758
10809
  if (model == null) {
10759
10810
  model = new EstatePropertyFilterModel();