ntk-cms-api 1.2.146 → 1.2.147
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 +35 -1
- package/esm2020/lib/service/estate/estateProperty.service.mjs +33 -1
- package/fesm2015/ntk-cms-api.mjs +64 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +64 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/estate/estateCustomerOrder.service.d.ts +6 -0
- package/lib/service/estate/estateProperty.service.d.ts +2 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -9681,6 +9681,38 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
|
|
|
9681
9681
|
getModuleControllerUrl() {
|
|
9682
9682
|
return 'EstateCustomerOrder';
|
|
9683
9683
|
}
|
|
9684
|
+
ServiceGetAllWithResponsibleUserId(CustomerOrderId, model) {
|
|
9685
|
+
if (model == null) {
|
|
9686
|
+
model = new FilterModel();
|
|
9687
|
+
}
|
|
9688
|
+
if (!CustomerOrderId || CustomerOrderId.length === 0) {
|
|
9689
|
+
CustomerOrderId = '00';
|
|
9690
|
+
}
|
|
9691
|
+
return this.http
|
|
9692
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + CustomerOrderId, model, {
|
|
9693
|
+
headers: this.getHeaders(),
|
|
9694
|
+
})
|
|
9695
|
+
.pipe(retry(this.configApiRetry),
|
|
9696
|
+
// catchError(this.handleError)
|
|
9697
|
+
map((ret) => {
|
|
9698
|
+
return this.errorExceptionResultCheck(ret);
|
|
9699
|
+
}));
|
|
9700
|
+
}
|
|
9701
|
+
ServiceGetAllWithResponsibleUserIdExportFile(CustomerOrderId, model) {
|
|
9702
|
+
// this.loadingStatus=true;
|
|
9703
|
+
if (model == null) {
|
|
9704
|
+
model = new FilterModel();
|
|
9705
|
+
}
|
|
9706
|
+
return this.http
|
|
9707
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + CustomerOrderId, model, {
|
|
9708
|
+
headers: this.getHeaders(),
|
|
9709
|
+
})
|
|
9710
|
+
.pipe(retry(this.configApiRetry),
|
|
9711
|
+
// catchError(this.handleError)
|
|
9712
|
+
map((ret) => {
|
|
9713
|
+
return this.errorExceptionResultCheckExportFile(ret);
|
|
9714
|
+
}));
|
|
9715
|
+
}
|
|
9684
9716
|
}
|
|
9685
9717
|
EstateCustomerOrderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstateCustomerOrderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
9686
9718
|
EstateCustomerOrderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstateCustomerOrderService });
|
|
@@ -9833,6 +9865,38 @@ class EstatePropertyService extends ApiCmsServerBase {
|
|
|
9833
9865
|
return this.errorExceptionResultCheckExportFile(ret);
|
|
9834
9866
|
}));
|
|
9835
9867
|
}
|
|
9868
|
+
ServiceGetAllWithResponsibleUserId(CustomerOrderId, model) {
|
|
9869
|
+
if (model == null) {
|
|
9870
|
+
model = new FilterModel();
|
|
9871
|
+
}
|
|
9872
|
+
if (!CustomerOrderId || CustomerOrderId.length === 0) {
|
|
9873
|
+
CustomerOrderId = '00';
|
|
9874
|
+
}
|
|
9875
|
+
return this.http
|
|
9876
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserId/' + CustomerOrderId, model, {
|
|
9877
|
+
headers: this.getHeaders(),
|
|
9878
|
+
})
|
|
9879
|
+
.pipe(retry(this.configApiRetry),
|
|
9880
|
+
// catchError(this.handleError)
|
|
9881
|
+
map((ret) => {
|
|
9882
|
+
return this.errorExceptionResultCheck(ret);
|
|
9883
|
+
}));
|
|
9884
|
+
}
|
|
9885
|
+
ServiceGetAllWithResponsibleUserIdExportFile(CustomerOrderId, model) {
|
|
9886
|
+
// this.loadingStatus=true;
|
|
9887
|
+
if (model == null) {
|
|
9888
|
+
model = new FilterModel();
|
|
9889
|
+
}
|
|
9890
|
+
return this.http
|
|
9891
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsibleUserIdExportFile/' + CustomerOrderId, model, {
|
|
9892
|
+
headers: this.getHeaders(),
|
|
9893
|
+
})
|
|
9894
|
+
.pipe(retry(this.configApiRetry),
|
|
9895
|
+
// catchError(this.handleError)
|
|
9896
|
+
map((ret) => {
|
|
9897
|
+
return this.errorExceptionResultCheckExportFile(ret);
|
|
9898
|
+
}));
|
|
9899
|
+
}
|
|
9836
9900
|
}
|
|
9837
9901
|
EstatePropertyService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstatePropertyService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
9838
9902
|
EstatePropertyService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: EstatePropertyService });
|