Skip to content

Commit

Permalink
Merge pull request #179 from einhverfr/1.4
Browse files Browse the repository at this point in the history
1.4 RC3 final fixes
  • Loading branch information
einhverfr committed Aug 23, 2014
2 parents e97e29f + c3680b8 commit 24855c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LedgerSMB/AA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ sub get_name {
16 => 'cc',
17 => 'bcc' );
$sth = $dbh->prepare($query);
$sth->execute( $form->{eca_id}, 14) || $form->dberror( $query );
$sth->execute( $form->{eca_id}, 17) || $form->dberror( $query );

my $ctype;
my $billing_email = 0;
Expand Down
2 changes: 1 addition & 1 deletion sql/modules/COGS.sql
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ FOR t_inv IN
JOIN (select id, approved, transdate from ap
union
select id, approved, transdate from gl) a
ON a.id = i.trans_id AND NOT a.approved
ON a.id = i.trans_id AND a.approved
WHERE qty + allocated < 0 AND parts_id = in_parts_id
ORDER BY a.transdate, a.id, i.id
LOOP
Expand Down

0 comments on commit 24855c7

Please sign in to comment.