ntk-cms-api 1.2.225 → 1.2.226

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.
@@ -10390,22 +10390,6 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
10390
10390
  return this.errorExceptionResultBaseCheck(ret);
10391
10391
  }));
10392
10392
  }
10393
- // ServiceGetAllWithFilter(model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>> {
10394
- // if (model == null) {
10395
- // model = new EstateCustomerOrderFilterModel();
10396
- // }
10397
- // return this.http
10398
- // .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithFilter/', model, {
10399
- // headers: this.getHeaders(),
10400
- // })
10401
- // .pipe(
10402
- // retry(this.configApiRetry),
10403
- // // catchError(this.handleError)
10404
- // map((ret: any) => {
10405
- // return this.errorExceptionResultCheck(ret);
10406
- // }),
10407
- // );
10408
- // }
10409
10393
  ServiceGetAllWithResponsibleUserId(userId, model) {
10410
10394
  if (model == null) {
10411
10395
  model = new EstateCustomerOrderFilterModel();
@@ -10466,6 +10450,40 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
10466
10450
  return this.errorExceptionResultCheckExportFile(ret);
10467
10451
  }));
10468
10452
  }
10453
+ ServiceGetAllWithCoverCategoryRackFolderId(RackFolderId, model) {
10454
+ if (model == null) {
10455
+ model = new EstateCustomerOrderFilterModel();
10456
+ }
10457
+ if (!RackFolderId || RackFolderId.length === 0) {
10458
+ RackFolderId = '00';
10459
+ }
10460
+ return this.http
10461
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithCoverCategoryRackFolderId/' + RackFolderId, model, {
10462
+ headers: this.getHeaders(),
10463
+ })
10464
+ .pipe(retry(this.configApiRetry),
10465
+ // catchError(this.handleError)
10466
+ map((ret) => {
10467
+ return this.errorExceptionResultCheck(ret);
10468
+ }));
10469
+ }
10470
+ ServiceGetAllWithCoverCategoryZoneId(ZoneId, model) {
10471
+ if (model == null) {
10472
+ model = new EstateCustomerOrderFilterModel();
10473
+ }
10474
+ if (!ZoneId || ZoneId.length === 0) {
10475
+ ZoneId = '00';
10476
+ }
10477
+ return this.http
10478
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithCoverCategoryZoneId/' + ZoneId, model, {
10479
+ headers: this.getHeaders(),
10480
+ })
10481
+ .pipe(retry(this.configApiRetry),
10482
+ // catchError(this.handleError)
10483
+ map((ret) => {
10484
+ return this.errorExceptionResultCheck(ret);
10485
+ }));
10486
+ }
10469
10487
  }
10470
10488
  EstateCustomerOrderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstateCustomerOrderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
10471
10489
  EstateCustomerOrderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstateCustomerOrderService });
@@ -11116,7 +11134,7 @@ class EstateCustomerCategoryModel extends BaseModuleEntity {
11116
11134
  class EstateCategoryRackModel extends BaseModuleEntity {
11117
11135
  }
11118
11136
 
11119
- class EstateCategoryRackFolderOrderModel extends EstateCustomerOrderModel {
11137
+ class EstateCategoryRackFolderOrderModel extends EstateCustomerOrderFilterModel {
11120
11138
  }
11121
11139
 
11122
11140
  class EstateCategoryRackFolderPropertyModel extends EstatePropertyFilterModel {