ntk-cms-api 1.0.360 → 1.0.364
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 +46 -4
- 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/entity/estate/_export.js +2 -1
- package/esm2015/lib/models/entity/estate/estateBillboardModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estateCustomerOrderModel.js +4 -0
- package/esm2015/lib/service/estate/_export.js +2 -1
- package/esm2015/lib/service/estate/estateCustomerOrder.service.js +11 -0
- package/esm2015/lib/service/estate/estateProperty.service.js +22 -5
- package/fesm2015/ntk-cms-api.js +34 -5
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/_export.d.ts +1 -0
- package/lib/models/entity/estate/estateBillboardModel.d.ts +4 -4
- package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +25 -0
- package/lib/service/estate/_export.d.ts +1 -0
- package/lib/service/estate/estateCustomerOrder.service.d.ts +5 -0
- package/lib/service/estate/estateProperty.service.d.ts +2 -1
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -9599,6 +9599,20 @@
|
|
|
9599
9599
|
{ type: i0.Injectable }
|
|
9600
9600
|
];
|
|
9601
9601
|
|
|
9602
|
+
var EstateCustomerOrderService = /** @class */ (function (_super) {
|
|
9603
|
+
__extends(EstateCustomerOrderService, _super);
|
|
9604
|
+
function EstateCustomerOrderService() {
|
|
9605
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9606
|
+
}
|
|
9607
|
+
EstateCustomerOrderService.prototype.getModuleCotrolerUrl = function () {
|
|
9608
|
+
return 'EstateCustomerOrder';
|
|
9609
|
+
};
|
|
9610
|
+
return EstateCustomerOrderService;
|
|
9611
|
+
}(ApiCmsServerBase));
|
|
9612
|
+
EstateCustomerOrderService.decorators = [
|
|
9613
|
+
{ type: i0.Injectable }
|
|
9614
|
+
];
|
|
9615
|
+
|
|
9602
9616
|
var EstatePropertyService = /** @class */ (function (_super) {
|
|
9603
9617
|
__extends(EstatePropertyService, _super);
|
|
9604
9618
|
function EstatePropertyService() {
|
|
@@ -9646,16 +9660,34 @@
|
|
|
9646
9660
|
return _this.errorExceptionResultCheck(ret);
|
|
9647
9661
|
}));
|
|
9648
9662
|
};
|
|
9649
|
-
EstatePropertyService.prototype.
|
|
9663
|
+
EstatePropertyService.prototype.ServiceGetAllWithBillboardId = function (BillboardId, model) {
|
|
9650
9664
|
var _this = this;
|
|
9651
9665
|
if (model == null) {
|
|
9652
9666
|
model = new FilterModel();
|
|
9653
9667
|
}
|
|
9654
|
-
if (!
|
|
9655
|
-
|
|
9668
|
+
if (!BillboardId || BillboardId.length === 0) {
|
|
9669
|
+
BillboardId = '00';
|
|
9656
9670
|
}
|
|
9657
9671
|
return this.http
|
|
9658
|
-
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/
|
|
9672
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetAllWithBillboardId/' + BillboardId, model, {
|
|
9673
|
+
headers: this.getHeaders(),
|
|
9674
|
+
})
|
|
9675
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
9676
|
+
// catchError(this.handleError)
|
|
9677
|
+
operators.map(function (ret) {
|
|
9678
|
+
return _this.errorExceptionResultCheck(ret);
|
|
9679
|
+
}));
|
|
9680
|
+
};
|
|
9681
|
+
EstatePropertyService.prototype.ServiceGetAllWithCustomerOrderId = function (CustomerOrderId, model) {
|
|
9682
|
+
var _this = this;
|
|
9683
|
+
if (model == null) {
|
|
9684
|
+
model = new FilterModel();
|
|
9685
|
+
}
|
|
9686
|
+
if (!CustomerOrderId || CustomerOrderId.length === 0) {
|
|
9687
|
+
CustomerOrderId = '00';
|
|
9688
|
+
}
|
|
9689
|
+
return this.http
|
|
9690
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetAllWithCustomerOrderId/' + CustomerOrderId, model, {
|
|
9659
9691
|
headers: this.getHeaders(),
|
|
9660
9692
|
})
|
|
9661
9693
|
.pipe(operators.retry(this.configApiRetry),
|
|
@@ -9907,6 +9939,14 @@
|
|
|
9907
9939
|
return EstateBillboardModel;
|
|
9908
9940
|
}(BaseModuleEntity));
|
|
9909
9941
|
|
|
9942
|
+
var EstateCustomerOrderModel = /** @class */ (function (_super) {
|
|
9943
|
+
__extends(EstateCustomerOrderModel, _super);
|
|
9944
|
+
function EstateCustomerOrderModel() {
|
|
9945
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9946
|
+
}
|
|
9947
|
+
return EstateCustomerOrderModel;
|
|
9948
|
+
}(BaseModuleEntity));
|
|
9949
|
+
|
|
9910
9950
|
var EstatePropertyTypeModel = /** @class */ (function (_super) {
|
|
9911
9951
|
__extends(EstatePropertyTypeModel, _super);
|
|
9912
9952
|
function EstatePropertyTypeModel() {
|
|
@@ -11517,6 +11557,8 @@
|
|
|
11517
11557
|
exports.EstateContractService = EstateContractService;
|
|
11518
11558
|
exports.EstateContractTypeModel = EstateContractTypeModel;
|
|
11519
11559
|
exports.EstateContractTypeService = EstateContractTypeService;
|
|
11560
|
+
exports.EstateCustomerOrderModel = EstateCustomerOrderModel;
|
|
11561
|
+
exports.EstateCustomerOrderService = EstateCustomerOrderService;
|
|
11520
11562
|
exports.EstateEnumService = EstateEnumService;
|
|
11521
11563
|
exports.EstateModuleConfigAdminMainValuesModel = EstateModuleConfigAdminMainValuesModel;
|
|
11522
11564
|
exports.EstateModuleConfigSiteAccessValuesModel = EstateModuleConfigSiteAccessValuesModel;
|