-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
24 lines (18 loc) · 736 Bytes
/
Copy pathscript.js
File metadata and controls
24 lines (18 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function generateNotes() {
const customerName = document.getElementById("customerName").value;
const reason = document.getElementById("reason").value;
const actions = document.getElementById("actions").value;
const resolution = document.getElementById("resolution").value;
const notes = `
Customer Name: ${customerName}
Reason for Call:
${reason}
Actions Taken:
${actions}
Resolution / Next Steps:
${resolution}
Call Summary:
Customer contacted support regarding the issue listed above. The concern was reviewed, appropriate actions were taken, and the resolution or next steps were documented according to standard customer service documentation practices.
`;
document.getElementById("output").innerText = notes;
}