Added residential/business filter in Order

This commit is contained in:
Frank Schubert
2022-05-31 17:25:09 +02:00
parent 4d4bf81e2a
commit 93169470e1
3 changed files with 28 additions and 1 deletions

View File

@@ -118,6 +118,14 @@
</select>
</div>
<div class="col-1">
<label class="form-label" for="filter_customer_type">Kundentyp</label>
<select name="filter[customer_type]" id="filter_customer_type" class="form-control">
<option></option>
<option value="residential" <?=($filter['customer_type'] == "residential") ? 'selected="selected"' : ""?>>Residential</option>
<option value="business" <?=($filter['customer_type'] == "business") ? 'selected="selected"' : ""?>>Business</option>
</select>
</div>
</div>
<div class="row mt-2">