missing ) result in SQL error
This commit is contained in:
parent
19ac7c1569
commit
feaaffd0b1
1 changed files with 1 additions and 1 deletions
|
@ -477,7 +477,7 @@ sub GetBudgetHierarchy {
|
||||||
# show only budgets owned by me, my branch or everyone
|
# show only budgets owned by me, my branch or everyone
|
||||||
if ($owner) {
|
if ($owner) {
|
||||||
if ($branchcode) {
|
if ($branchcode) {
|
||||||
push @where_strings,qq{ (budget_owner_id = ? OR budget_branchcode = ? OR (budget_branchcode IS NULL or budget_branchcode="" AND (budget_owner_id IS NULL OR budget_owner_id=""))};
|
push @where_strings,qq{ (budget_owner_id = ? OR budget_branchcode = ? OR (budget_branchcode IS NULL or budget_branchcode="" AND (budget_owner_id IS NULL OR budget_owner_id="")))};
|
||||||
push @bind_params, ($owner, $branchcode);
|
push @bind_params, ($owner, $branchcode);
|
||||||
} else {
|
} else {
|
||||||
push @where_strings, ' (budget_owner_id = ? OR budget_owner_id IS NULL or budget_owner_id ="") ';
|
push @where_strings, ' (budget_owner_id = ? OR budget_owner_id IS NULL or budget_owner_id ="") ';
|
||||||
|
|
Loading…
Reference in a new issue