X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_view.inc;h=5f372546e8f3d4072aaccb34aa9c981b49f44abb;hb=ab24fcc549bb72e495fb85e5dcad41bc14d85b7d;hp=642b99436941968636852b1159ef755c0d3fd42b;hpb=8cd59d7d269f3608f5a19df67679402eadf185bb;p=fa-stable.git diff --git a/includes/ui/ui_view.inc b/includes/ui/ui_view.inc index 642b9943..5f372546 100644 --- a/includes/ui/ui_view.inc +++ b/includes/ui/ui_view.inc @@ -281,6 +281,12 @@ function exchange_rate_display($from_currency, $to_currency, $date_, $force_edit $rate = input_num('_ex_rate'); if (check_ui_refresh() || !$rate) { // readonly or ui context changed $comp_currency = get_company_currency(); + + if (!isset($from_currency)) + $from_currency = $comp_currency; + if (!isset($to_currency)) + $to_currency = $comp_currency; + if ($from_currency == $comp_currency) $currency = $to_currency; else @@ -919,7 +925,7 @@ function get_js_select_combo_item() { } else { var stock_element = doc.getElementsByName('stock_id'); if( stock_element.length > 0) { - stock_element.value = value; + stock_element[0].value = value; var stock_id = doc.getElementById('_stock_id_edit'); stock_id.value=value; stock_id.onblur(); @@ -933,6 +939,7 @@ function get_js_select_combo_item() { function get_js_set_combo_item() { $js = "function setComboItem(doc, client_id, value, text){ var element = doc.getElementById(client_id); + var search = doc.getElementById('_'+client_id+'_edit'); if(typeof(element) != 'undefined' && element != null && element.tagName === 'SELECT') { var options = element.options; options.length = 0; @@ -941,6 +948,7 @@ function get_js_set_combo_item() { option.text = text; element.add(option, 0); element.selectedIndex = 0; + search.value = ''; element.onchange(); } else { var stock_element = doc.getElementsByName('stock_id'); @@ -1455,6 +1463,14 @@ function changeCCYear(change) { function changeCCMonth(change) { cC.changeMonth(change); } +window.addEventListener('click', function(e) { + if (document.getElementById('CC').contains(e.target)){} else { + if (cC.visible()) { + cC.hide(); + } + } +}); + document.write(\"\"); document.write(\"
\");"; @@ -1489,7 +1505,7 @@ if (!function_exists('_vd')) function _vl($mixed, $title = '', $exit = false) { - error_log((!empty($title) ? ($title .':') : '') . var_export($mixed, true)); + error_log((!empty($title) ? ($title .':') : '') . print_r($mixed, true)); if ($exit) exit; }