ntk-cms-api 1.2.178 → 1.2.180
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/_export.mjs +4 -1
- package/esm2020/lib/models/dto/estate/estateCustomerOrderActionSendSmsDtoModel.mjs +3 -0
- package/esm2020/lib/models/dto/estate/estateCustomerOrderSearchDtoModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estatePropertyActionSendSmsDtoModel.mjs +3 -0
- package/esm2020/lib/models/entity/estate/estateCustomerOrderModel.mjs +1 -1
- package/esm2020/lib/models/entity/estate/estatePropertyModel.mjs +1 -1
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +27 -1
- package/esm2020/lib/service/estate/estateProperty.service.mjs +12 -1
- package/fesm2015/ntk-cms-api.mjs +46 -1
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +46 -1
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +3 -0
- package/lib/models/dto/estate/estateCustomerOrderActionSendSmsDtoModel.d.ts +16 -0
- package/lib/models/dto/estate/estateCustomerOrderSearchDtoModel.d.ts +22 -0
- package/lib/models/dto/estate/estatePropertyActionSendSmsDtoModel.d.ts +10 -0
- package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +0 -3
- package/lib/models/entity/estate/estatePropertyModel.d.ts +0 -7
- package/lib/service/estate/estateCustomerOrder.service.d.ts +5 -0
- package/lib/service/estate/estateProperty.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -5,3 +5,6 @@ export * from './estateModuleSalePropertyAdsPaymentDtoModel';
|
|
|
5
5
|
export * from './estatePriceInquiryDtoModel';
|
|
6
6
|
export * from './estatePropertySearchDtoModel';
|
|
7
7
|
export * from './estatePropertyHistorySearchDtoModel';
|
|
8
|
+
export * from './estateCustomerOrderSearchDtoModel';
|
|
9
|
+
export * from './estatePropertyActionSendSmsDtoModel';
|
|
10
|
+
export * from './estateCustomerOrderActionSendSmsDtoModel';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class EstateCustomerOrderActionSendSmsDtoModel {
|
|
2
|
+
id: string;
|
|
3
|
+
/**Action */
|
|
4
|
+
actionSendSmsToMe: boolean;
|
|
5
|
+
actionSendSmsToEstateCustomer: boolean;
|
|
6
|
+
actionSendSmsToEstateAgency: boolean;
|
|
7
|
+
actionSendSmsToEstateUser: boolean;
|
|
8
|
+
actionSendSmsToCustomerOrder: boolean;
|
|
9
|
+
actionSendSmsToContactNumber: string;
|
|
10
|
+
/**Action */
|
|
11
|
+
actionSendSmsToAreaEstateAgency: boolean;
|
|
12
|
+
actionSendSmsToAreaEstateUser: boolean;
|
|
13
|
+
/**Action */
|
|
14
|
+
actionSendSmsToAllAreaEstateAgency: boolean;
|
|
15
|
+
actionSendSmsToAllAreaEstateUser: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
+
import { EstatePropertyDetailValueModel } from "../../entity/estate/estatePropertyDetailValueModel";
|
|
3
|
+
export declare class EstateCustomerOrderSearchDtoModel extends FilterModel {
|
|
4
|
+
caseCode: string;
|
|
5
|
+
linkPropertyTypeLanduseId: string;
|
|
6
|
+
linkPropertyTypeUsageId: string;
|
|
7
|
+
linkContractTypeId: string;
|
|
8
|
+
createdYaer?: number;
|
|
9
|
+
partition?: number;
|
|
10
|
+
area?: number;
|
|
11
|
+
salePriceMin?: number;
|
|
12
|
+
salePriceMax?: number;
|
|
13
|
+
rentPriceMin?: number;
|
|
14
|
+
rentPriceMax?: number;
|
|
15
|
+
depositPriceMin?: number;
|
|
16
|
+
depositPriceMax?: number;
|
|
17
|
+
periodPriceMin?: number;
|
|
18
|
+
periodPriceMax?: number;
|
|
19
|
+
linkLocationIds: number[];
|
|
20
|
+
linkCoreCurrencyId: number;
|
|
21
|
+
propertyDetailValues: EstatePropertyDetailValueModel[];
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class EstatePropertyActionSendSmsDtoModel {
|
|
2
|
+
id: string;
|
|
3
|
+
/**Action */
|
|
4
|
+
actionSendSmsToMe: boolean;
|
|
5
|
+
actionSendSmsToEstateCustomer: boolean;
|
|
6
|
+
actionSendSmsToEstateAgency: boolean;
|
|
7
|
+
actionSendSmsToEstateUser: boolean;
|
|
8
|
+
actionSendSmsToCustomerOrder: boolean;
|
|
9
|
+
actionSendSmsToContactNumber: string;
|
|
10
|
+
}
|
|
@@ -74,11 +74,4 @@ export declare class EstatePropertyModel extends BaseModuleEntity<string> {
|
|
|
74
74
|
linkLocationIdTitle: string;
|
|
75
75
|
linkLocationIdParentTitle: string;
|
|
76
76
|
favorited: boolean;
|
|
77
|
-
/**Action */
|
|
78
|
-
actionSendSmsToMe: boolean;
|
|
79
|
-
actionSendSmsToEstateCustomer: boolean;
|
|
80
|
-
actionSendSmsToEstateAgency: boolean;
|
|
81
|
-
actionSendSmsToEstateUser: boolean;
|
|
82
|
-
actionSendSmsToCustomerOrder: boolean;
|
|
83
|
-
actionSendSmsToContactNumber: string;
|
|
84
77
|
}
|
|
@@ -4,9 +4,14 @@ import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionRes
|
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
6
6
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
7
|
+
import { EstateCustomerOrderSearchDtoModel } from '../../models/dto/estate/estateCustomerOrderSearchDtoModel';
|
|
8
|
+
import { EstateCustomerOrderActionSendSmsDtoModel } from '../../models/dto/estate/estateCustomerOrderActionSendSmsDtoModel';
|
|
9
|
+
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string> {
|
|
9
12
|
getModuleControllerUrl(): string;
|
|
13
|
+
ServiceActionSendSms(model: EstateCustomerOrderActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
14
|
+
ServiceGetAllWithFilter(model: EstateCustomerOrderSearchDtoModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
10
15
|
ServiceGetAllWithResponsibleUserId(userId: number, model: FilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
11
16
|
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model: FilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
12
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateCustomerOrderService, never>;
|
|
@@ -7,10 +7,12 @@ import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptio
|
|
|
7
7
|
import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
|
|
8
8
|
import { EstatePropertySearchDtoModel } from '../../models/dto/estate/estatePropertySearchDtoModel';
|
|
9
9
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
10
|
+
import { EstatePropertyActionSendSmsDtoModel } from '../../models/dto/estate/estatePropertyActionSendSmsDtoModel';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string> {
|
|
12
13
|
getModuleControllerUrl(): string;
|
|
13
14
|
ServiceActionSendSmsToCustomerOrder(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
|
+
ServiceActionSendSms(model: EstatePropertyActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
14
16
|
ServiceFavoriteAdd(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
17
|
ServiceFavoriteRemove(Id: string): Observable<ErrorExceptionResultBase>;
|
|
16
18
|
ServiceFavoriteList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|