Changed OrderFiles; name is now dropdown of predefined types; Certain

types send emails
This commit is contained in:
Frank Schubert
2022-06-21 18:58:02 +02:00
parent 43185a914f
commit 26b0a67d09
17 changed files with 263 additions and 194 deletions

View File

@@ -681,9 +681,15 @@
<h4>Neues Dokument</h4>
<div class="form-group row">
<label class="col-lg-2 col-form-label" for="file_name">Name</label>
<label class="col-lg-2 col-form-label" for="file_name">Dateityp</label>
<div class="col-lg-10">
<input type="text" class="form-control" name="file_name" id="file_name" />
<?php if(defined("TT_ORDER_FILE_TYPES") && is_array(TT_ORDER_FILE_TYPES)): ?>
<select name="file_name" class="form-control">
<?php foreach(TT_ORDER_FILE_TYPES as $key => $type): ?>
<option value="<?=$key?>"><?=$type?></option>
<?php endforeach; ?>
</select>
<?php endif; ?>
</div>
</div>

View File

@@ -1090,6 +1090,8 @@
<?php if($addJournal): ?>
$('#new-journal-<?=$highlight?>').toggle();
$('#new-journal-<?=$highlight?> textarea[name=text]').focus();
<?php elseif($showDetail): ?>
$('.order-tab a[href="#order-detail-<?=$highlight?>-details"]').tab('show');
<?php endif; ?>
<?php endif; ?>