Skip to content

Commit

Permalink
Merge pull request #10961 from aspangaro/9.0_lettering
Browse files Browse the repository at this point in the history
FIX: MultiEntity in lettering functionality
  • Loading branch information
eldy committed Apr 8, 2019
2 parents b23f74e + ba34b60 commit 47acbf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -150,6 +150,7 @@
$sql .= " AND ( bk.doc_date BETWEEN '" . $db->idate($date_start) . "' AND '" . $db->idate($date_end) . "' )";
}

$sql.= ' AND bk.entity IN ('.getEntity('accountingbookkeeping').')';
$sql .= $db->order($sortfield, $sortorder);

$debit = 0;
Expand Down
Expand Up @@ -149,6 +149,7 @@
$sql .= " AND ( bk.doc_date BETWEEN '".$db->idate($date_start)."' AND '".$db->idate($date_end)."' )";
}

$sql.= ' AND bk.entity IN ('.getEntity('accountingbookkeeping').')';
$sql.= $db->order($sortfield,$sortorder);

$debit = 0;
Expand Down

0 comments on commit 47acbf4

Please sign in to comment.