41 lines
1.1 KiB
Handlebars
41 lines
1.1 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{!-- <link rel="stylesheet" href="styles/styles.css" /> --}}
|
|
{{> styles}}
|
|
</head>
|
|
<body>
|
|
<p>All,</p>
|
|
<p>The below SKU's do not currently have an av and will be ignored in the forcast import.</p>
|
|
<p>The date and qty are the first time needed showing from teh vmi report</p>
|
|
<table >
|
|
<thead>
|
|
<tr>
|
|
<th>Customer Article Number</th>
|
|
<th>First Date Needed</th>
|
|
<th>Quantity</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{customerArticleNo}}</td>
|
|
<td>{{requirementDate}}</td>
|
|
<td>{{quantity}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<div>
|
|
|
|
<p>Thank you,</p>
|
|
<p>LST Team</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |