ntk-cms-api 1.2.147 → 1.2.148
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.
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +7 -7
- package/esm2020/lib/service/estate/estateProperty.service.mjs +7 -7
- package/fesm2015/ntk-cms-api.mjs +12 -12
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +12 -12
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/estate/estateCustomerOrder.service.d.ts +2 -2
- package/lib/service/estate/estateProperty.service.d.ts +2 -2
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -9681,15 +9681,15 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
|
|
|
9681
9681
|
getModuleControllerUrl() {
|
|
9682
9682
|
return 'EstateCustomerOrder';
|
|
9683
9683
|
}
|
|
9684
|
-
ServiceGetAllWithResponsibleUserId(
|
|
9684
|
+
ServiceGetAllWithResponsibleUserId(userId, model) {
|
|
9685
9685
|
if (model == null) {
|
|
9686
9686
|
model = new FilterModel();
|
|
9687
9687
|
}
|
|
9688
|
-
if (!
|
|
9689
|
-
|
|
9688
|
+
if (!userId || userId < 0) {
|
|
9689
|
+
userId = 0;
|
|
9690
9690
|
}
|
|
9691
9691
|
return this.http
|
|
9692
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' +
|
|
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(
|
|
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/' +
|
|
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(
|
|
9868
|
+
ServiceGetAllWithResponsibleUserId(userId, model) {
|
|
9869
9869
|
if (model == null) {
|
|
9870
9870
|
model = new FilterModel();
|
|
9871
9871
|
}
|
|
9872
|
-
if (!
|
|
9873
|
-
|
|
9872
|
+
if (!userId || userId < 0) {
|
|
9873
|
+
userId = 0;
|
|
9874
9874
|
}
|
|
9875
9875
|
return this.http
|
|
9876
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' +
|
|
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(
|
|
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/' +
|
|
9891
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + userId, model, {
|
|
9892
9892
|
headers: this.getHeaders(),
|
|
9893
9893
|
})
|
|
9894
9894
|
.pipe(retry(this.configApiRetry),
|