get settings vars updates added default net_terms to settings and some php var fixes in dashboard

This commit is contained in:
johnny@pittpc.com
2019-08-23 00:35:56 -04:00
parent 67a0c8bfbf
commit be1b4d50fb
8 changed files with 35 additions and 17 deletions

View File

@@ -161,7 +161,7 @@
</div>
<select class="form-control selectpicker show-tick" name="net_terms">
<?php foreach($net_terms_array as $net_term_value => $net_term_name) { ?>
<option value="<?php echo $net_term_value; ?>"><?php echo $net_term_name; ?></option>
<option <?php if($config_default_net_terms == $net_term_value){ echo "selected"; } ?> value="<?php echo $net_term_value; ?>"><?php echo $net_term_name; ?></option>
<?php } ?>
</select>
</div>