fix: Use attachments array instead of attachments_names in old format normalizeData
This commit is contained in:
@@ -213,7 +213,7 @@ export function generateConfirmationFormHTML(data: any): string {
|
|||||||
description: claim.description || null,
|
description: claim.description || null,
|
||||||
reason: claim.reason || caseData.category || null,
|
reason: claim.reason || caseData.category || null,
|
||||||
},
|
},
|
||||||
attachments: data.attachments_names || [],
|
attachments: data.attachments || data.attachments_names || [], // ✅ Используем полный массив attachments с field_label
|
||||||
offenders: offenders.map((o: any) => Object.assign({}, baseOffender, o || {})),
|
offenders: offenders.map((o: any) => Object.assign({}, baseOffender, o || {})),
|
||||||
meta: data.meta || {},
|
meta: data.meta || {},
|
||||||
};
|
};
|
||||||
@@ -668,7 +668,7 @@ export function generateConfirmationFormHTML(data: any): string {
|
|||||||
description: claim.description || null,
|
description: claim.description || null,
|
||||||
reason: claim.reason || caseData.category || null,
|
reason: claim.reason || caseData.category || null,
|
||||||
},
|
},
|
||||||
attachments: data.attachments_names || [],
|
attachments: data.attachments || data.attachments_names || [], // ✅ Используем полный массив attachments с field_label
|
||||||
offenders: offenders.map(function(o) {
|
offenders: offenders.map(function(o) {
|
||||||
return {
|
return {
|
||||||
accountname: o.name || o.accountname || null,
|
accountname: o.name || o.accountname || null,
|
||||||
|
|||||||
Reference in New Issue
Block a user