58 lines
1.4 KiB
HTML
58 lines
1.4 KiB
HTML
<!doctype html>
|
|||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Buyers ID rejected</title>
|
||
|
|
<style>
|
||
|
|
table { border-collapse: collapse; }
|
||
|
|
th, td { padding: 6px 10px; border: 1px solid #ccc; }
|
||
|
|
input { width: 100%; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<h2>Buyers ID Rejected</h2> <br/>
|
||
|
|
The below list shows buyer-data rejected by the tax-office.<br/>
|
||
|
|
Correct the compnay info and press save.<br/>
|
||
|
|
A zip file will be offered with updated ecosio messages.<br/>
|
||
|
|
You consumer data will not be saved.<br/>
|
||
|
|
<br/>
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
<form method="post" action="/invoice/repair_rejectedids">
|
||
|
|
<table>
|
||
|
|
{% for row in rows %}
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
{{ row[0] }} <!-- country -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{{row[1]}} <!-- invoice -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{{row[2]}} <!-- receipt -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{{row[3]}} <!-- poslog -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{{row[4] }}<!-- buyername -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input type="text" name="{{ row[3] }}_orgid" value="{{ row[5] }}">
|
||
|
|
<!-- orgid -->
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<input type="text" name="{{ row[3] }}_taxid" value="{{ row[6] }}">
|
||
|
|
<!-- taxid -->
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<br>
|
||
|
|
<button type="submit">Download updated messages</button>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|