spartaxx.businessmodels 1.0.412 → 1.0.413
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/ClientInfo.ts
CHANGED
@@ -57,7 +57,8 @@ export interface ClientInfo {
|
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
58
|
IPAddress?: string;
|
59
59
|
UserName?: string;
|
60
|
-
Password?: string;
|
60
|
+
Password?: string;
|
61
|
+
ItIsSubmitRequest?: boolean;
|
61
62
|
}
|
62
63
|
|
63
64
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -16,7 +16,9 @@ export interface ClientPackageDocument {
|
|
16
16
|
Title?: string;
|
17
17
|
PackageSummaryTitle?: string;
|
18
18
|
PackageCheckboxDescription?: string;
|
19
|
-
DocFirstSignatureCorrdinates?:string;
|
19
|
+
DocFirstSignatureCorrdinates?: string;
|
20
|
+
IsValidateEsign?:boolean;
|
21
|
+
IsNeedToPushPaperwise?:boolean;
|
20
22
|
}
|
21
23
|
|
22
24
|
export interface AccountDocumentInfo {
|
package/Common/AppConfigHub.js
CHANGED
@@ -319,7 +319,8 @@ function createDefaultAppConfigHub() {
|
|
319
319
|
GACompanyPhone: "",
|
320
320
|
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: "",
|
321
321
|
RMQConfigCCCpaperwiseprocess: "",
|
322
|
-
CCCServicePackageId: 0
|
322
|
+
CCCServicePackageId: 0,
|
323
|
+
BppPhone: ""
|
323
324
|
};
|
324
325
|
});
|
325
326
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -307,6 +307,7 @@ export interface AppConfigHub {
|
|
307
307
|
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: string;
|
308
308
|
RMQConfigCCCpaperwiseprocess: string;
|
309
309
|
CCCServicePackageId: number;
|
310
|
+
BppPhone: string;
|
310
311
|
}
|
311
312
|
|
312
313
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -618,7 +619,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
618
619
|
GACompanyPhone: "",
|
619
620
|
CPckOOTSalesCRMNationalAgreementBodyHtmlContentId: "",
|
620
621
|
RMQConfigCCCpaperwiseprocess: "",
|
621
|
-
CCCServicePackageId: 0
|
622
|
+
CCCServicePackageId: 0,
|
623
|
+
BppPhone: ""
|
622
624
|
}
|
623
625
|
}
|
624
626
|
|