spartaxx.businessmodels 1.0.234 → 1.0.236
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CCC/CCCTemplateData.ts
CHANGED
@@ -17,6 +17,8 @@ export interface QualifiedClientInfo {
|
|
17
17
|
Documents?: string;
|
18
18
|
IsSelected?: boolean;
|
19
19
|
InitiatedBy?: number;
|
20
|
+
CCCPckEmailBlastFileName?: string;
|
21
|
+
CCCPckEmailBlastOutputFilePath?: string;
|
20
22
|
}
|
21
23
|
|
22
24
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
@@ -38,6 +40,8 @@ export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClien
|
|
38
40
|
BlastDate: "",
|
39
41
|
Documents: "",
|
40
42
|
IsSelected: false,
|
41
|
-
InitiatedBy: 0
|
43
|
+
InitiatedBy: 0,
|
44
|
+
CCCPckEmailBlastFileName: "",
|
45
|
+
CCCPckEmailBlastOutputFilePath: ""
|
42
46
|
};
|
43
47
|
};
|
package/Common/AppConfigHub.js
CHANGED
@@ -73,6 +73,7 @@ function createDefaultAppConfigHub() {
|
|
73
73
|
CPckSalesCRMESignSubject: "",
|
74
74
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
75
75
|
CPckClientEmailESignSubject: "",
|
76
|
+
CCCPckUSMailLetterFileNameEsign: "",
|
76
77
|
//#endregion
|
77
78
|
//#region CCC Package Config
|
78
79
|
CCCPckLetterGenTempPath: "",
|
package/Common/AppConfigHub.ts
CHANGED
@@ -65,7 +65,7 @@ export interface AppConfigHub {
|
|
65
65
|
CPckSalesCRMESignSubject?: string;
|
66
66
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId?: string;
|
67
67
|
CPckClientEmailESignSubject?: string;
|
68
|
-
|
68
|
+
CCCPckUSMailLetterFileNameEsign?: string;
|
69
69
|
//#endregion
|
70
70
|
|
71
71
|
//#region CCC Package Config
|
@@ -291,7 +291,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
291
291
|
CPckSalesCRMESignSubject: "",
|
292
292
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
293
293
|
CPckClientEmailESignSubject: "",
|
294
|
-
|
294
|
+
CCCPckUSMailLetterFileNameEsign: "",
|
295
|
+
|
295
296
|
//#endregion
|
296
297
|
|
297
298
|
//#region CCC Package Config
|