mirror of
https://github.com/itflow-org/itflow
synced 2026-03-21 21:15:38 +00:00
Fix issue with editing client if accounting module was disabled due to the handling of client currency
This commit is contained in:
@@ -138,7 +138,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php } else { ?>
|
<?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; ?>">
|
<input type="hidden" name="net_terms" value="<?php echo $net_term_value; ?>">
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user