spartaxx.businessmodels 1.0.310 → 1.0.312
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/CCCModel.ts
CHANGED
@@ -29,6 +29,7 @@ import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWit
|
|
29
29
|
import { DynamicDMFormParams } from "./DynamicDMFormParams";
|
30
30
|
import { DynamicDMFormClientInputData } from "./DynamicDMFormClientInputData";
|
31
31
|
import { DMpropertySurveyClientInfo } from "./DMpropertySurveyClientInfo";
|
32
|
+
import { ClientInputFormSteper } from "./ClientInputForm";
|
32
33
|
|
33
34
|
export {
|
34
35
|
ScoreCardDetails,
|
@@ -67,5 +68,6 @@ export {
|
|
67
68
|
DynamicDMFormClientInputData,
|
68
69
|
DMpropertySurveyClientInfo,
|
69
70
|
AccountDocumentInfo,
|
70
|
-
ClientDocumentInfo
|
71
|
+
ClientDocumentInfo,
|
72
|
+
ClientInputFormSteper
|
71
73
|
}
|
package/CCC/ClientInputForm.ts
CHANGED
@@ -1,11 +1,43 @@
|
|
1
|
+
import { DMpropertySurveyClientInputs } from "./DMpropertySurveyClientInputs";
|
2
|
+
|
3
|
+
export interface ClientInputFormSteper {
|
4
|
+
Name: string;
|
5
|
+
IsCompleted: boolean;
|
6
|
+
ClientInputFormData?: ClientInputForm[];
|
7
|
+
}
|
8
|
+
|
1
9
|
export interface ClientInputForm {
|
10
|
+
|
11
|
+
//#region CLIENT & ACCOUNT INFO
|
12
|
+
AccountId?: number;
|
13
|
+
AccountNumber?: string;
|
14
|
+
PropertyAddress?: string;
|
15
|
+
//#endregion
|
16
|
+
|
17
|
+
//#region TX-RES, COM AND BA AOFA
|
18
|
+
ResAofAStepFiveAgentAuthorityEndDate?: string;
|
19
|
+
ResAofAStepNineDeliveryDate?: string;
|
20
|
+
ComAofAStepFiveAgentAuthorityEndDate?: string;
|
21
|
+
ComAofATittleId?: number;
|
22
|
+
ComAofATittle?: string;
|
23
|
+
ComAofASigneeName?: string;
|
24
|
+
ComAofASigneeRoleChk1?: boolean;
|
25
|
+
ComAofASigneeRoleChk2?: boolean;
|
26
|
+
ComAofASigneeRoleChk3?: boolean;
|
27
|
+
BAAofASigneeName?: string;
|
28
|
+
//#endregion
|
29
|
+
|
30
|
+
//#region TX-PROPERTY SURVEY
|
31
|
+
DMpropertySurveyClientInputs?: DMpropertySurveyClientInputs;
|
32
|
+
//#endregion
|
33
|
+
|
34
|
+
//#region GA-POA
|
2
35
|
TaxpayerName?: string;
|
3
36
|
TelephoneNumber?: string;
|
4
37
|
MaillingAddress?: string;
|
5
38
|
SpouseName?: string;
|
6
39
|
SpouseTelephoneNumber?: string;
|
7
40
|
SpouseMaillingAddress?: string;
|
8
|
-
PropertyAddress?: string;
|
9
41
|
TaxType?: string;
|
10
42
|
TaxPeriod?: string;
|
11
43
|
MakePaymentsOnBehalfOfTaxYear?: boolean;
|
@@ -18,16 +50,12 @@ export interface ClientInputForm {
|
|
18
50
|
PerformOtherTaxMatters?: boolean;
|
19
51
|
RevokePriorForSameMatters?: boolean;
|
20
52
|
ListRepresentatives?: string;
|
53
|
+
//#endregion
|
21
54
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
ComAofATittleId?:number;
|
26
|
-
ComAofATittle?:string;
|
27
|
-
ComAofASigneeName?:string;
|
28
|
-
ComAofASigneeRoleChk1?:boolean;
|
29
|
-
ComAofASigneeRoleChk2?:boolean;
|
30
|
-
ComAofASigneeRoleChk3?:boolean;
|
31
|
-
BAAofASigneeName?:string;
|
55
|
+
//#region GA AND IL AUTHORIZATION FROM
|
56
|
+
GAILAuthorizationSigneeName?: string;
|
57
|
+
//#endregion
|
32
58
|
}
|
33
59
|
|
60
|
+
|
61
|
+
|
@@ -1,40 +1,40 @@
|
|
1
|
-
export interface DMpropertySurveyClientInfo {
|
2
|
-
AccountNumber?: string;
|
3
|
-
AccountId?: number;
|
4
|
-
ClientNumber?: string;
|
5
|
-
ClientName?: string;
|
6
|
-
ClientId?: number;
|
7
|
-
PropertyAddr?: string;
|
8
|
-
County?: string;
|
9
|
-
CountyId?: number;
|
10
|
-
TaxYear?: number;
|
11
|
-
BuildingSqFT?: number;
|
12
|
-
BuildingValue?: number;
|
13
|
-
LandSqFT?: number;
|
14
|
-
LandValue?: number;
|
15
|
-
YearBuilt?: number;
|
16
|
-
RemodelYear?: number;
|
17
|
-
Grade?: string;
|
18
|
-
CDU?: string;
|
19
|
-
HOMvalueOpinion?: string;
|
20
|
-
OwnerOccupied?: string;
|
21
|
-
HomeSoldLast24months?: string;
|
22
|
-
SoldListingPrice?: string;
|
23
|
-
HasStructureFloodedBefore?: string;
|
24
|
-
HowManyTimes?: number;
|
25
|
-
LastFloodingDate?: Date;
|
26
|
-
StillConditionIssues?: string;
|
27
|
-
Remarks?: string;
|
28
|
-
Remodeled?: string;
|
29
|
-
RemodeledType?: string;
|
30
|
-
ActionID?: number;
|
31
|
-
ActionType?: string;
|
32
|
-
IsPropertyInFloodZone?: string;
|
33
|
-
RepairsForCurrentTaxYear?: string;
|
34
|
-
AllDamageRepaired?: string;
|
35
|
-
HomeInsuranceCoverage?: string;
|
36
|
-
PleaseDescribe?: string;
|
37
|
-
AnyAtypicalCharacteristics?: string;
|
38
|
-
AdditionalComments?: string;
|
39
|
-
PropertyDetailsId?: number;
|
1
|
+
export interface DMpropertySurveyClientInfo {
|
2
|
+
AccountNumber?: string;
|
3
|
+
AccountId?: number;
|
4
|
+
ClientNumber?: string;
|
5
|
+
ClientName?: string;
|
6
|
+
ClientId?: number;
|
7
|
+
PropertyAddr?: string;
|
8
|
+
County?: string;
|
9
|
+
CountyId?: number;
|
10
|
+
TaxYear?: number;
|
11
|
+
BuildingSqFT?: number;
|
12
|
+
BuildingValue?: number;
|
13
|
+
LandSqFT?: number;
|
14
|
+
LandValue?: number;
|
15
|
+
YearBuilt?: number;
|
16
|
+
RemodelYear?: number;
|
17
|
+
Grade?: string;
|
18
|
+
CDU?: string;
|
19
|
+
HOMvalueOpinion?: string;
|
20
|
+
OwnerOccupied?: string;
|
21
|
+
HomeSoldLast24months?: string;
|
22
|
+
SoldListingPrice?: string;
|
23
|
+
HasStructureFloodedBefore?: string;
|
24
|
+
HowManyTimes?: number;
|
25
|
+
LastFloodingDate?: Date;
|
26
|
+
StillConditionIssues?: string;
|
27
|
+
Remarks?: string;
|
28
|
+
Remodeled?: string;
|
29
|
+
RemodeledType?: string;
|
30
|
+
ActionID?: number;
|
31
|
+
ActionType?: string;
|
32
|
+
IsPropertyInFloodZone?: string;
|
33
|
+
RepairsForCurrentTaxYear?: string;
|
34
|
+
AllDamageRepaired?: string;
|
35
|
+
HomeInsuranceCoverage?: string;
|
36
|
+
PleaseDescribe?: string;
|
37
|
+
AnyAtypicalCharacteristics?: string;
|
38
|
+
AdditionalComments?: string;
|
39
|
+
PropertyDetailsId?: number;
|
40
40
|
}
|