vcomply-workflow-engine 3.4.71 → 3.4.72
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/esm2020/lib/log-an-issue/log-an-issue.component.mjs +2 -15
- package/fesm2015/vcomply-workflow-engine.mjs +7 -20
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +1 -14
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -34479,22 +34479,9 @@ class LogAnIssueComponent {
|
|
|
34479
34479
|
}
|
|
34480
34480
|
const PAYLOAD = this.logService.payloadBuilder(form, this.additionalOptionStatus);
|
|
34481
34481
|
if (this.mode === 'CREATE') {
|
|
34482
|
-
PAYLOAD.linkage_object = {
|
|
34483
|
-
source: this.openedFrom,
|
|
34484
|
-
type: '',
|
|
34485
|
-
type_id: 0,
|
|
34486
|
-
source_id: 0,
|
|
34487
|
-
source_object_id: '',
|
|
34488
|
-
};
|
|
34489
34482
|
if (this.openedFrom === 'COMPLIANCE_WORKROOM' &&
|
|
34490
34483
|
this.reponsibilityData?.responsibilityId) {
|
|
34491
|
-
PAYLOAD.
|
|
34492
|
-
source_id: this.reponsibilityData?.responsibilityId,
|
|
34493
|
-
type: '',
|
|
34494
|
-
type_id: 0,
|
|
34495
|
-
source: this.openedFrom,
|
|
34496
|
-
source_object_id: this.reponsibilityData?.responsibilityObjectId,
|
|
34497
|
-
};
|
|
34484
|
+
PAYLOAD.responsibilities_Linked.push(this.reponsibilityData?.responsibilityId);
|
|
34498
34485
|
}
|
|
34499
34486
|
if (['VIEW_AUDIT_EXECUTION_SUMMARY', 'EXECUTE_AUDIT_PLAN'].includes(this.openedFrom)) {
|
|
34500
34487
|
if (this.logIssueForm?.linkageType &&
|