109 lines
4.4 KiB
HTML
109 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Infineon - Cost of Delay (CoD) (see @SCALE formula)</title>
|
|
<link href="/styles/bootstrap.min.css?no-cache=2024-10-04-08-34" rel="stylesheet" />
|
|
<link href="/styles/cod.css?no-cache=2024-10-04-08-34" rel="stylesheet" />
|
|
<script src="/js/scripts/jquery-1.6.4.min.js"></script>
|
|
<script src="/js/scripts/jquery.signalR-2.4.3.min.js"></script>
|
|
<script src="/signalr/hubs"></script>
|
|
<script src="/js/cod-b.js?v=2025-01-22-10-49" type="text/javascript"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="navbar navbar-fixed-top">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<div class="navbar-brand">
|
|
<span id="siteHeader"> </span> -
|
|
<span id="th-span"> </span>
|
|
<button id="toggle">Toggle</button>
|
|
</div>
|
|
</div>
|
|
<div class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav">
|
|
</ul>
|
|
<p class="navbar-text navbar-right">
|
|
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container-fluid body-content" style="margin-top: 40px; margin-left: 15px;">
|
|
<div id="HeaderGridDiv">
|
|
<table id="HeaderGrid" border="1"></table>
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div id="AllGridDiv">
|
|
<table id="AllGrid"></table>
|
|
</div>
|
|
|
|
<textarea id="AllTextarea" rows="20" cols="147"></textarea>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
const username = '';
|
|
const machineId = '';
|
|
const fromHtml = true;
|
|
const signalRUrl = "/signalr";
|
|
const windowLocationHRef = window.location.href;
|
|
const apiUrl = "https://eaf-dev.mes.infineon.com/api/v1/ado/";
|
|
const workItems = {
|
|
a: "/markdown/bugs-features-with-parents.json?v=2025-01-22-10-49",
|
|
b: "/markdown/{[]}.json?v=2025-01-22-10-49"
|
|
};
|
|
const b = {
|
|
page: "business",
|
|
description: "Value",
|
|
th: "Business Value",
|
|
span: "What is the relative value to the Customer or business?<br>• Do our users prefer this over that?<br>• What is the revenue impact on our business?<br>• Is there a potential penalty or other negative effects if we delay?"
|
|
};
|
|
const r = {
|
|
page: "risk",
|
|
description: "Risk",
|
|
th: "Risk Reduction and/or Opportunity Enablement",
|
|
span: "What else does this do for our business?<br>• Reduce the risk of this or future delivery?<br>• Is there value in the information we will receive?<br>• Enable new business opportunities?"
|
|
};
|
|
const t = {
|
|
page: "time",
|
|
description: "Critical",
|
|
th: "Time Criticality",
|
|
span: "How does user/business value decay over time?<br>• Is there a fixed deadline?<br>• Will they wait for us or move to another Solution?<br>• What is the current effect on Customer satisfaction?"
|
|
};
|
|
const c = {
|
|
page: "cod",
|
|
description: "CoD",
|
|
th: "Cost of Delay (CoD)",
|
|
span: "Cost of Delay (CoD) is the money lost by delaying or not doing a job for a specific time. It's a measure of the economic value of a job over time."
|
|
};
|
|
const e = {
|
|
page: "effort",
|
|
description: "Effort",
|
|
th: "Effort",
|
|
span: "Effort"
|
|
};
|
|
const w = {
|
|
page: "wsjf",
|
|
description: "WSJF",
|
|
th: "Weightest Shortest Job First calculation (WSJF)",
|
|
span: "Weightest Shortest Job First calculation (see @SCALE formula)"
|
|
};
|
|
initIndex(fromHtml, username, machineId, windowLocationHRef, workItems, b, r, t, c, e, w, apiUrl, signalRUrl);
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |