46 lines
1.5 KiB
Handlebars
46 lines
1.5 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>BOL: {{bol}} was created with the below pallets.</p>
|
|
<p>Please head to stock and import the pallets via the normal incoming goods process.</p>
|
|
<p>When encountering a discrepancy in pallets/cages received, please correct this after the pallets have been imported.</p>
|
|
<p>This due to these being plant to plant the only way to correct this is bring them in then undo the incoming goods process.</p>
|
|
<br></br>
|
|
<table >
|
|
<thead>
|
|
<tr>
|
|
<th>Running Number</th>
|
|
<th>AV</th>
|
|
<th>Description</th>
|
|
<th>Lot number</th>
|
|
<th>Quantity</th>
|
|
{{!-- <th>Downtime finish</th> --}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{runningNr}}</td>
|
|
<td>{{article}}</td>
|
|
<td>{{alias}}</td>
|
|
<td>{{lotNumber}}</td>
|
|
<td>{{qty}}</td>
|
|
{{!-- <td>{{dtEnd}}</td> --}}
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
<div>
|
|
<p>Thank you,</p>
|
|
<p>LST Team</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |