feat(notifications): migrated all from v1
This commit is contained in:
50
server/services/notifications/utils/views/reprintLabels.hbs
Normal file
50
server/services/notifications/utils/views/reprintLabels.hbs
Normal file
@@ -0,0 +1,50 @@
|
||||
<!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 labels have been reprinted.</p>
|
||||
<table >
|
||||
<thead>
|
||||
<tr>
|
||||
<th>AV</th>
|
||||
<th>Desciption</th>
|
||||
<th>Label Number</th>
|
||||
<th>Date Added</th>
|
||||
<th>User that created</th>
|
||||
<th>Last time label was printed/updated in the system</th>
|
||||
<th>Who printed/Updated</th>
|
||||
<th>What printer it came from</th>
|
||||
<th>Total reprinted labels</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{{#each items}}
|
||||
<tr>
|
||||
<td>{{av}}</td>
|
||||
<td>{{alias}}</td>
|
||||
<td>{{runningNumber}}</td>
|
||||
<td>{{Add_Date}}</td>
|
||||
<td>{{Add_User}}</td>
|
||||
<td>{{Upd_Date}}</td>
|
||||
<td>{{Upd_User}}</td>
|
||||
<td>{{printer}}</td>
|
||||
<td>{{totalPrinted}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div>
|
||||
<p>Thank you,</p>
|
||||
<p>LST Team</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user