spartaxx.businessmodels 1.0.310 → 1.0.311
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
|
+
|