spartaxx.businessmodels 1.0.339 → 1.0.341
Sign up to get free protection for your applications and to get access to all the features.
@@ -21,7 +21,12 @@ function createDefaultClientContactInfo() {
|
|
21
21
|
AddressLine2: "",
|
22
22
|
AddressLine3: "",
|
23
23
|
CityId: 0,
|
24
|
+
CityName: "",
|
25
|
+
CitySelectOpention: null,
|
24
26
|
StateId: 0,
|
27
|
+
StateName: "",
|
28
|
+
PropertyTaxState: "",
|
29
|
+
StateSelectOpention: null,
|
25
30
|
Zip: "",
|
26
31
|
CellPhone: "",
|
27
32
|
OfficePhone: "",
|
@@ -1,19 +1,27 @@
|
|
1
|
+
|
2
|
+
import { SelectOpentionLookup } from "../Masters/SelectOpentionLookup";
|
3
|
+
|
1
4
|
export interface ClientContactInfo {
|
2
|
-
FirstName: string
|
3
|
-
LastName: string
|
4
|
-
Email: string
|
5
|
-
AlternativeEmail: string
|
6
|
-
AddressLine1: string
|
7
|
-
AddressLine2: string
|
8
|
-
AddressLine3: string
|
9
|
-
CityId: number
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
5
|
+
FirstName: string;
|
6
|
+
LastName: string;
|
7
|
+
Email: string;
|
8
|
+
AlternativeEmail: string;
|
9
|
+
AddressLine1: string;
|
10
|
+
AddressLine2: string;
|
11
|
+
AddressLine3: string;
|
12
|
+
CityId: number;
|
13
|
+
CityName: string;
|
14
|
+
CitySelectOpention: SelectOpentionLookup | null;
|
15
|
+
StateId: number;
|
16
|
+
StateName: string;
|
17
|
+
PropertyTaxState: string;
|
18
|
+
StateSelectOpention: SelectOpentionLookup | null;
|
19
|
+
Zip: string;
|
20
|
+
CellPhone: string;
|
21
|
+
OfficePhone: string;
|
22
|
+
HomePhone: string;
|
23
|
+
AddressId: number;
|
24
|
+
ContactId: number;
|
17
25
|
}
|
18
26
|
|
19
27
|
export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
|
@@ -26,7 +34,12 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
|
|
26
34
|
AddressLine2: "",
|
27
35
|
AddressLine3: "",
|
28
36
|
CityId: 0,
|
37
|
+
CityName: "",
|
38
|
+
CitySelectOpention: null,
|
29
39
|
StateId: 0,
|
40
|
+
StateName: "",
|
41
|
+
PropertyTaxState: "",
|
42
|
+
StateSelectOpention: null,
|
30
43
|
Zip: "",
|
31
44
|
CellPhone: "",
|
32
45
|
OfficePhone: "",
|
@@ -14,6 +14,7 @@ import { ClientTypeInfo } from "./ClientTypeInfo";
|
|
14
14
|
import { AgentTypeInfo } from "./AgentTypeInfo";
|
15
15
|
import { AgentNameInfo } from "./AgentNameInfo";
|
16
16
|
import { ParishNameInfo } from "./ParishNameInfo";
|
17
|
+
import { ClientContactInfo } from "./ClientContactInfo";
|
17
18
|
|
18
19
|
export interface ClientSetupModels {
|
19
20
|
State: StateInfo,
|
@@ -32,5 +33,6 @@ export interface ClientSetupModels {
|
|
32
33
|
AgentName: AgentNameInfo,
|
33
34
|
ParishName: ParishNameInfo,
|
34
35
|
TermsType: TermsTypeInfo,
|
35
|
-
TaxrollCounty: CountyInfo
|
36
|
+
TaxrollCounty: CountyInfo,
|
37
|
+
ClientContactInfo: ClientContactInfo
|
36
38
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export interface PwProcessDocumentDetails {
|
2
|
+
Guid: string;
|
2
3
|
FileCabinetId: number;
|
3
4
|
BatchCode: string;
|
4
5
|
DocumentType: string;
|
@@ -14,6 +15,12 @@ export interface PwProcessDocumentDetails {
|
|
14
15
|
LandUseCode: string;
|
15
16
|
DocumentStatus: string;
|
16
17
|
DocumentRouteTo: string;
|
18
|
+
IsValidateEsign: boolean;
|
19
|
+
ValidateEsignDocumentPath: string;
|
20
|
+
ValidateEsignIPAddress: string;
|
21
|
+
ValidateEsignSigneeName: string;
|
22
|
+
ValidateEsignSigneeEmail: string;
|
23
|
+
ValidateEsignSignature: Buffer;
|
17
24
|
DocumentPath: string;
|
18
25
|
CreatedApp: string;
|
19
26
|
UserId: number;
|