Export run-data-sheet-root in last-update-user of logistics
Started Bun support but CORS fails process-data-standard-format code alignment
This commit is contained in:
20
Adaptation/_Tests/Static/wizard.js
Normal file
20
Adaptation/_Tests/Static/wizard.js
Normal file
@ -0,0 +1,20 @@
|
||||
"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}"},`);
|
||||
});
|
Reference in New Issue
Block a user