Fix issue with editing client if accounting module was disabled due to the handling of client currency

This commit is contained in:
johnnyq 2023-08-22 12:45:52 -04:00
parent 6231d7b43c
commit 42e23b6f08
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@
</div>
<?php } else { ?>
<input type="hidden" name="currency_code" value="<?php echo $currency_code; ?>">
<input type="hidden" name="currency_code" value="<?php if(empty($currency_code)) { echo $session_company_currency } else { echo $currency_code; ?>">
<input type="hidden" name="net_terms" value="<?php echo $net_term_value; ?>">
<?php } ?>