ntk-cms-api 1.2.117 → 1.2.119
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/bundles/ntk-cms-api.umd.js +40 -0
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/models/dto/estate/_export.js +2 -1
- package/esm2015/lib/models/dto/estate/estatePropertySerachDtoModel.js +4 -0
- package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/service/estate/estateProperty.service.js +31 -1
- package/fesm2015/ntk-cms-api.js +33 -1
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +1 -0
- package/lib/models/dto/estate/estatePropertySerachDtoModel.d.ts +19 -0
- package/lib/models/entity/estate/estatePropertyModel.d.ts +1 -0
- package/lib/service/estate/estateProperty.service.d.ts +4 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -12384,6 +12384,14 @@
|
|
|
12384
12384
|
{ type: i0.Injectable }
|
|
12385
12385
|
];
|
|
12386
12386
|
|
|
12387
|
+
var EstatePropertySerachDtoModel = /** @class */ (function (_super) {
|
|
12388
|
+
__extends(EstatePropertySerachDtoModel, _super);
|
|
12389
|
+
function EstatePropertySerachDtoModel() {
|
|
12390
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
12391
|
+
}
|
|
12392
|
+
return EstatePropertySerachDtoModel;
|
|
12393
|
+
}(FilterModel));
|
|
12394
|
+
|
|
12387
12395
|
var EstatePropertyService = /** @class */ (function (_super) {
|
|
12388
12396
|
__extends(EstatePropertyService, _super);
|
|
12389
12397
|
function EstatePropertyService() {
|
|
@@ -12473,6 +12481,21 @@
|
|
|
12473
12481
|
return _this.errorExceptionResultCheck(ret);
|
|
12474
12482
|
}));
|
|
12475
12483
|
};
|
|
12484
|
+
EstatePropertyService.prototype.ServiceGetAllWithFilter = function (model) {
|
|
12485
|
+
var _this = this;
|
|
12486
|
+
if (model == null) {
|
|
12487
|
+
model = new EstatePropertySerachDtoModel();
|
|
12488
|
+
}
|
|
12489
|
+
return this.http
|
|
12490
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithFilter/', model, {
|
|
12491
|
+
headers: this.getHeaders(),
|
|
12492
|
+
})
|
|
12493
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12494
|
+
// catchError(this.handleError)
|
|
12495
|
+
operators.map(function (ret) {
|
|
12496
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12497
|
+
}));
|
|
12498
|
+
};
|
|
12476
12499
|
EstatePropertyService.prototype.ServiceGetAllWithBillboardId = function (BillboardId, model) {
|
|
12477
12500
|
var _this = this;
|
|
12478
12501
|
if (model == null) {
|
|
@@ -12509,6 +12532,22 @@
|
|
|
12509
12532
|
return _this.errorExceptionResultCheck(ret);
|
|
12510
12533
|
}));
|
|
12511
12534
|
};
|
|
12535
|
+
EstatePropertyService.prototype.ServiceGetAllWithCustomerOrderIdExportFile = function (CustomerOrderId, model) {
|
|
12536
|
+
var _this = this;
|
|
12537
|
+
// this.loadingStatus=true;
|
|
12538
|
+
if (model == null) {
|
|
12539
|
+
model = new FilterModel();
|
|
12540
|
+
}
|
|
12541
|
+
return this.http
|
|
12542
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithCustomerOrderIdExportFile/' + CustomerOrderId, model, {
|
|
12543
|
+
headers: this.getHeaders(),
|
|
12544
|
+
})
|
|
12545
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12546
|
+
// catchError(this.handleError)
|
|
12547
|
+
operators.map(function (ret) {
|
|
12548
|
+
return _this.errorExceptionResultCheckExportFile(ret);
|
|
12549
|
+
}));
|
|
12550
|
+
};
|
|
12512
12551
|
return EstatePropertyService;
|
|
12513
12552
|
}(ApiCmsServerBase));
|
|
12514
12553
|
EstatePropertyService.decorators = [
|
|
@@ -15618,6 +15657,7 @@
|
|
|
15618
15657
|
exports.EstatePropertyModel = EstatePropertyModel;
|
|
15619
15658
|
exports.EstatePropertyProjectModel = EstatePropertyProjectModel;
|
|
15620
15659
|
exports.EstatePropertyProjectService = EstatePropertyProjectService;
|
|
15660
|
+
exports.EstatePropertySerachDtoModel = EstatePropertySerachDtoModel;
|
|
15621
15661
|
exports.EstatePropertyService = EstatePropertyService;
|
|
15622
15662
|
exports.EstatePropertyShareAgencyModel = EstatePropertyShareAgencyModel;
|
|
15623
15663
|
exports.EstatePropertyShareAgencyService = EstatePropertyShareAgencyService;
|