Merge branch 'fronkdev' into 'master'
more filters and testmail in MailtemplateDispatch See merge request fronk/thetool!904
This commit is contained in:
@@ -79,6 +79,10 @@
|
||||
<input class="form-check-input" type="checkbox" value="1" name="filter_order_open" id="filter_order_open" <?=(array_key_exists("order_open", $dispatch->recipient_filter_array) && $dispatch->recipient_filter_array["order_open"]) ? 'checked="checked"' : ''?> />
|
||||
<label class="form-check-label" for="filter_order_open">Nur offene Bestellungen</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="1" name="filter_order_int_products" id="filter_order_int_products" <?=(array_key_exists("order_int_products", $dispatch->recipient_filter_array) && $dispatch->recipient_filter_array["order_int_products"]) ? 'checked="checked"' : ''?> />
|
||||
<label class="form-check-label" for="filter_order_int_products">Nur Xinonprodukte</label>
|
||||
</div>
|
||||
|
||||
<h4 class="mt-3">Aktive Contracts</h4>
|
||||
|
||||
@@ -86,13 +90,30 @@
|
||||
<h4 class="mt-3">Allgemein</h4>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="1" name="filter_fibu_account" id="filter_fibu_account" <?=(array_key_exists("fibu_account", $dispatch->recipient_filter_array) && $dispatch->recipient_filter_array["fibu_account"]) ? 'checked="checked"' : ''?> />
|
||||
<label class="form-check-label" for="filter_fibu_account">Nur mit Fibu Kontonummer</label>
|
||||
<label class="form-check-label" for="filter_fibu_account">Nur Kunden mit Fibu Kontonummer</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="1" name="filter_billingaddress" id="filter_billingaddress" <?=(array_key_exists("billingaddress", $dispatch->recipient_filter_array) && $dispatch->recipient_filter_array["billingaddress"]) ? 'checked="checked"' : ''?> />
|
||||
<label class="form-check-label" for="filter_billingaddress">Auch an Rechnungsadresse</label>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="1" name="filter_techcontact" id="filter_techcontact" <?=(array_key_exists("techcontact", $dispatch->recipient_filter_array) && $dispatch->recipient_filter_array["techcontact"]) ? 'checked="checked"' : ''?> />
|
||||
<label class="form-check-label" for="filter_techcontact">Auch an Technischen Kontakt</label>
|
||||
</div>
|
||||
<div class="form-group row mt-2 col-12">
|
||||
<label class="form-label" for="filter_zip">PLZ-Beschränkung</label>
|
||||
<label class="form-label" for="filter_zip">PLZ-Beschränkung (Kundenadresse)</label>
|
||||
<input type="text" class="form-control" name="filter_zip" id="filter_zip" value="<?=(array_key_exists("zip", $dispatch->recipient_filter_array)) ? implode(", ", $dispatch->recipient_filter_array["zip"]) : ""?>" />
|
||||
<small class="text-primary">PLZ' mit Leerzeichen oder Komma getrennt</small>
|
||||
</div>
|
||||
<input type="hidden" name="filter_zip_source" value="owner" />
|
||||
<!--div class="form-group row mt-2 col-12">
|
||||
<label class="form-label" for="filter_zip">PLZ-Beschränkung anhand</label>
|
||||
<select class="form-control" name="filter_zip_source" id="filter_zip_source">
|
||||
<option value="owner">Kundenadresse</option>
|
||||
<option value="termination">Anschlussadresse</option>
|
||||
</select>
|
||||
</div-->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user