spartaxx.businessmodels 1.0.318 → 1.0.320
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.ts
CHANGED
package/CCC/ClientInputForm.ts
CHANGED
@@ -11,9 +11,10 @@ export interface ClientInputForm {
|
|
11
11
|
//#region CLIENT & ACCOUNT INFO
|
12
12
|
AccountId?: number;
|
13
13
|
PropertyType?: string;
|
14
|
-
TaxYear?:
|
14
|
+
TaxYear?: string;
|
15
15
|
AccountNumber?: string;
|
16
16
|
PropertyAddress?: string;
|
17
|
+
IsHomeStead?: number;
|
17
18
|
//#endregion
|
18
19
|
|
19
20
|
//#region TX-RES, COM AND BA AOFA
|
@@ -129,6 +129,12 @@ export interface SelectedPropertyList {
|
|
129
129
|
owneraddress2?: string;
|
130
130
|
owneraddress3?: string;
|
131
131
|
ProjectName?: string;
|
132
|
+
|
133
|
+
|
134
|
+
PropCityName:string;
|
135
|
+
PropAddress:string;
|
136
|
+
PropZipcode:string;
|
137
|
+
PropStateName:string;
|
132
138
|
}
|
133
139
|
|
134
140
|
export interface SelectedAllProperty {
|
package/Common/AppConfigHub.js
CHANGED
@@ -287,7 +287,8 @@ function createDefaultAppConfigHub() {
|
|
287
287
|
CCCPckLetterGenTempUrl: "",
|
288
288
|
CCCPckLetterGenUrl: "",
|
289
289
|
CCCPckEmailLetterUrl: "",
|
290
|
-
CompanyAddressTwoHundred: ""
|
290
|
+
CompanyAddressTwoHundred: "",
|
291
|
+
CPckDMpropertySurveyDocumentPath: ""
|
291
292
|
};
|
292
293
|
});
|
293
294
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -274,6 +274,7 @@ export interface AppConfigHub {
|
|
274
274
|
CCCPckLetterGenUrl: string;
|
275
275
|
CCCPckEmailLetterUrl: string;
|
276
276
|
CompanyAddressTwoHundred: string;
|
277
|
+
CPckDMpropertySurveyDocumentPath: string;
|
277
278
|
}
|
278
279
|
|
279
280
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -552,7 +553,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
552
553
|
CCCPckLetterGenTempUrl: "",
|
553
554
|
CCCPckLetterGenUrl: "",
|
554
555
|
CCCPckEmailLetterUrl: "",
|
555
|
-
CompanyAddressTwoHundred: ""
|
556
|
+
CompanyAddressTwoHundred: "",
|
557
|
+
CPckDMpropertySurveyDocumentPath: ""
|
556
558
|
}
|
557
559
|
}
|
558
560
|
|