summaryrefslogtreecommitdiff
path: root/LedgerSMB/IS.pm
diff options
context:
space:
mode:
Diffstat (limited to 'LedgerSMB/IS.pm')
-rwxr-xr-xLedgerSMB/IS.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/LedgerSMB/IS.pm b/LedgerSMB/IS.pm
index e04fb1cd..8368c986 100755
--- a/LedgerSMB/IS.pm
+++ b/LedgerSMB/IS.pm
@@ -101,6 +101,8 @@ sub invoice_details {
# account numbers
$pth->execute( $form->{"id_$i"} );
$ref = $pth->fetchrow_hashref(NAME_lc);
+ $form->db_parse_numeric(sth=>$pth, hashref=>$ref);
+
for ( keys %$ref ) { $form->{"${_}_$i"} = $ref->{$_} }
$pth->finish;
@@ -1307,7 +1309,7 @@ sub post_invoice {
transdate, source,
fx_transaction, cleared)
VALUES (?, (SELECT id FROM chart
- WHERE accno = >),
+ WHERE accno = ?),
?, ?, ?, '1', ?)|;
$sth = $dbh->prepare($query);