ntk-cms-api 1.2.186 → 1.2.188
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/models/dto/estate/estatePropertyActionSendSmsDtoModel.mjs +1 -1
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +15 -1
- package/fesm2015/ntk-cms-api.mjs +14 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +14 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/estate/estatePropertyActionSendSmsDtoModel.d.ts +6 -0
- package/lib/service/estate/estateCustomerOrder.service.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -10106,6 +10106,20 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
|
|
|
10106
10106
|
return this.errorExceptionResultCheck(ret);
|
|
10107
10107
|
}));
|
|
10108
10108
|
}
|
|
10109
|
+
ServiceGetAllWithResponsiblePropertyId(propertyId, model) {
|
|
10110
|
+
if (model == null) {
|
|
10111
|
+
model = new FilterModel();
|
|
10112
|
+
}
|
|
10113
|
+
return this.http
|
|
10114
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsiblePropertyId/' + propertyId, model, {
|
|
10115
|
+
headers: this.getHeaders(),
|
|
10116
|
+
})
|
|
10117
|
+
.pipe(retry(this.configApiRetry),
|
|
10118
|
+
// catchError(this.handleError)
|
|
10119
|
+
map((ret) => {
|
|
10120
|
+
return this.errorExceptionResultCheck(ret);
|
|
10121
|
+
}));
|
|
10122
|
+
}
|
|
10109
10123
|
ServiceGetAllWithResponsibleUserIdExportFile(userId, model) {
|
|
10110
10124
|
// this.loadingStatus=true;
|
|
10111
10125
|
if (model == null) {
|