X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_lists.inc;h=b803ac3215b40c4f9231d2ab5742c5e96983b142;hb=5a7ef37131354aabdcf04c639a903e5876b743e4;hp=58a2bae2215f2c2165cb273c54d1d28add045731;hpb=947c0dddc6cb94572e1f0cafe6d8c5663c00d695;p=fa-stable.git diff --git a/includes/ui/ui_lists.inc b/includes/ui/ui_lists.inc index 58a2bae2..b803ac32 100644 --- a/includes/ui/ui_lists.inc +++ b/includes/ui/ui_lists.inc @@ -761,19 +761,19 @@ function _format_fiscalyears($row) . "  " . ($row[3] ? _('Closed') : _('Active')); } -function fiscalyears_list_cells($label, $name, $selected_id=null) +function fiscalyears_list_cells($label, $name, $selected_id=null, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - echo fiscalyears_list($name, $selected_id); + echo fiscalyears_list($name, $selected_id, $submit_on_change); echo "\n"; } -function fiscalyears_list_row($label, $name, $selected_id=null) +function fiscalyears_list_row($label, $name, $selected_id=null, $submit_on_change=false) { echo "$label"; - fiscalyears_list_cells(null, $name, $selected_id); + fiscalyears_list_cells(null, $name, $selected_id, $submit_on_change); echo "\n"; } //------------------------------------------------------------------------------------ @@ -1907,11 +1907,11 @@ function gl_all_accounts_list_cells($label, $name, $selected_id=null, } function gl_all_accounts_list_row($label, $name, $selected_id=null, - $skip_bank_accounts=false, $cells=false, $all_option=false, $type_id=false) + $skip_bank_accounts=false, $cells=false, $all_option=false, $submit_on_change=false, $all=false, $type_id=false) { echo "$label"; gl_all_accounts_list_cells(null, $name, $selected_id, - $skip_bank_accounts, $cells, $all_option, $type_id); + $skip_bank_accounts, $cells, $all_option, $submit_on_change, $all, $type_id); echo "\n"; }