mirror of https://github.com/itflow-org/itflow
Fix issue with editing client if accounting module was disabled due to the handling of client currency
This commit is contained in:
parent
6231d7b43c
commit
42e23b6f08
|
|
@ -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 } ?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue