billing frontend for mariadb. setup as otb_billing for outsidethebox.top accounting. also involved with outsidethedb
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 lines
948 B

<!doctype html>
<html>
<head>
<title>New Invoice</title>
</head>
<body>
<h1>Create Invoice</h1>
<form method="post">
<p>
Client<br>
<select name="client_id">
{% for c in clients %}
<option value="{{ c.id }}">{{ c.client_code }} - {{ c.company_name }}</option>
{% endfor %}
</select>
</p>
<p>
Service<br>
<select name="service_id">
{% for s in services %}
<option value="{{ s.id }}">{{ s.service_code }} - {{ s.service_name }}</option>
{% endfor %}
</select>
</p>
<p>
Currency<br>
<select name="currency_code">
<option value="CAD">CAD</option>
<option value="ETHO">ETHO</option>
<option value="EGAZ">EGAZ</option>
<option value="ALT">ALT</option>
</select>
</p>
<p>
Total Amount<br>
<input type="number" step="0.00000001" name="total_amount">
</p>
<p>
Due Date<br>
<input type="date" name="due_at">
</p>
<p>
Notes<br>
<textarea name="notes"></textarea>
</p>
<p>
<button type="submit">Create Invoice</button>
</p>
</form>
</body>
</html>