Files
met08ddupsp1tbi/Adaptation/_Tests/Static/wizard.js
phares@iscn5cg20977xq 43024c6c30 Export run-data-sheet-root in last-update-user of logistics
Started Bun support but CORS fails

process-data-standard-format code alignment
2025-08-04 16:58:37 -07:00

21 lines
698 B
JavaScript

"use strict";
const rds = 'http://messa020ec.infineon.com:8080/api/oiWizard/materials/rds/1005602';
let workItemCollection = [];
await fetch(rds)
.then((res) => res.text())
.then((text) => {
const records = JSON.parse(text);
if (records != undefined) {
if (records != undefined) {
}
}
})
.catch((e) => console.error(e));
workItemCollection.forEach(element => {
console.log(`{"Id": "${element.Id}", "State": "${element.State}", "ClosedDate": "${element.ClosedDate}", "TargetDate": "${element.TargetDate}", "IterationPath": "${element.IterationPath}", "AssignedTo": "${element.AssignedTo}", "Title": "${element.Title}"},`);
});