93 lines
2 KiB
HTML
93 lines
2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Untitled Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>Data importazione: <strong><%=data%></strong></p>
|
|
<p>Fornitore: <strong><%=fornitore%></strong></p>
|
|
<p><strong><%=risultato%></strong></p>
|
|
<p><strong style="color:darkorange">Elenco Articoli Nuovi</strong></p>
|
|
<table width="100%" border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>Codice</th>
|
|
<th>M.Gest.</th>
|
|
<th>Ebay</th>
|
|
<th>Google</th>
|
|
<th>Codici Forn</th>
|
|
<th>Descrizione</th>
|
|
<th>Costo Prec.</th>
|
|
<th>Costo Nuovo</th>
|
|
<th>Ricar.</th>
|
|
<th>Pr. Pub. Prec</th>
|
|
<th> </th>
|
|
<th>Pr. Pub Nuovo</th>
|
|
<th>Street Price</th>
|
|
<th>Ric Eff.</th>
|
|
<th>Q.ta</th>
|
|
<th>Visibile</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%=listaArticoliNuovi%>
|
|
</tbody>
|
|
</table>
|
|
<p> </p>
|
|
<p><strong style="color:darkgreen">Elenco Articoli Modificati</strong></p>
|
|
<table width="100%" border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>Codice</th>
|
|
<th>M.Gest.</th>
|
|
<th>Ebay</th>
|
|
<th>Google</th>
|
|
<th>Codici Forn</th>
|
|
<th>Descrizione</th>
|
|
<th>Costo Prec.</th>
|
|
<th>Costo Nuovo</th>
|
|
<th>Ricar.</th>
|
|
<th>Pr. Pub. Prec</th>
|
|
<th> </th>
|
|
<th>Pr. Pub Nuovo</th>
|
|
<th>Street Price</th>
|
|
<th>Ric Eff.</th>
|
|
<th>Q.ta</th>
|
|
<th>Visibile</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%=listaArticoli%>
|
|
</tbody>
|
|
</table>
|
|
<p> </p>
|
|
<p><strong style="color:darkred">Elenco Articoli Non Trovati</strong></p>
|
|
<table width="100%" border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>Codice</th>
|
|
<th>M.Gest.</th>
|
|
<th>Ebay</th>
|
|
<th>Google</th>
|
|
<th>Codici Forn</th>
|
|
<th>Descrizione</th>
|
|
<th>Costo Prec.</th>
|
|
<th>Costo Nuovo</th>
|
|
<th>Ricar.</th>
|
|
<th>Pr. Pub. Prec</th>
|
|
<th> </th>
|
|
<th>Pr. Pub Nuovo</th>
|
|
<th>Street Price</th>
|
|
<th>Ric Eff.</th>
|
|
<th>Q.ta</th>
|
|
<th>Visibile (count)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%=listaArticoliNonTrovati%>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|