ntk-cms-api 1.2.147 → 1.2.149

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.
@@ -9681,15 +9681,15 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
9681
9681
  getModuleControllerUrl() {
9682
9682
  return 'EstateCustomerOrder';
9683
9683
  }
9684
- ServiceGetAllWithResponsibleUserId(CustomerOrderId, model) {
9684
+ ServiceGetAllWithResponsibleUserId(userId, model) {
9685
9685
  if (model == null) {
9686
9686
  model = new FilterModel();
9687
9687
  }
9688
- if (!CustomerOrderId || CustomerOrderId.length === 0) {
9689
- CustomerOrderId = '00';
9688
+ if (!userId || userId < 0) {
9689
+ userId = 0;
9690
9690
  }
9691
9691
  return this.http
9692
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + CustomerOrderId, model, {
9692
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + userId, model, {
9693
9693
  headers: this.getHeaders(),
9694
9694
  })
9695
9695
  .pipe(retry(this.configApiRetry),
@@ -9698,13 +9698,13 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
9698
9698
  return this.errorExceptionResultCheck(ret);
9699
9699
  }));
9700
9700
  }
9701
- ServiceGetAllWithResponsibleUserIdExportFile(CustomerOrderId, model) {
9701
+ ServiceGetAllWithResponsibleUserIdExportFile(userId, model) {
9702
9702
  // this.loadingStatus=true;
9703
9703
  if (model == null) {
9704
9704
  model = new FilterModel();
9705
9705
  }
9706
9706
  return this.http
9707
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + CustomerOrderId, model, {
9707
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + userId, model, {
9708
9708
  headers: this.getHeaders(),
9709
9709
  })
9710
9710
  .pipe(retry(this.configApiRetry),
@@ -9865,15 +9865,15 @@ class EstatePropertyService extends ApiCmsServerBase {
9865
9865
  return this.errorExceptionResultCheckExportFile(ret);
9866
9866
  }));
9867
9867
  }
9868
- ServiceGetAllWithResponsibleUserId(CustomerOrderId, model) {
9868
+ ServiceGetAllWithResponsibleUserId(userId, model) {
9869
9869
  if (model == null) {
9870
9870
  model = new FilterModel();
9871
9871
  }
9872
- if (!CustomerOrderId || CustomerOrderId.length === 0) {
9873
- CustomerOrderId = '00';
9872
+ if (!userId || userId < 0) {
9873
+ userId = 0;
9874
9874
  }
9875
9875
  return this.http
9876
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + CustomerOrderId, model, {
9876
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + userId, model, {
9877
9877
  headers: this.getHeaders(),
9878
9878
  })
9879
9879
  .pipe(retry(this.configApiRetry),
@@ -9882,13 +9882,13 @@ class EstatePropertyService extends ApiCmsServerBase {
9882
9882
  return this.errorExceptionResultCheck(ret);
9883
9883
  }));
9884
9884
  }
9885
- ServiceGetAllWithResponsibleUserIdExportFile(CustomerOrderId, model) {
9885
+ ServiceGetAllWithResponsibleUserIdExportFile(userId, model) {
9886
9886
  // this.loadingStatus=true;
9887
9887
  if (model == null) {
9888
9888
  model = new FilterModel();
9889
9889
  }
9890
9890
  return this.http
9891
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + CustomerOrderId, model, {
9891
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + userId, model, {
9892
9892
  headers: this.getHeaders(),
9893
9893
  })
9894
9894
  .pipe(retry(this.configApiRetry),