diff options
Diffstat (limited to 'LedgerSMB/PriceMatrix.pm')
-rw-r--r-- | LedgerSMB/PriceMatrix.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LedgerSMB/PriceMatrix.pm b/LedgerSMB/PriceMatrix.pm index 68fa5b12..2c6cc332 100644 --- a/LedgerSMB/PriceMatrix.pm +++ b/LedgerSMB/PriceMatrix.pm @@ -122,6 +122,7 @@ sub price_matrix { while ( $mref = $pmh->fetchrow_hashref(NAME_lc) ) { + $form->db_parse_numeric(sth=>$sth, hashref=>$mref); # check date if ( $mref->{validfrom} ) { next @@ -193,6 +194,7 @@ sub price_matrix { $pmh->execute( $ref->{id} ); $mref = $pmh->fetchrow_hashref(NAME_lc); + $form->db_parse_numeric(sth=>$sth, hashref=>$mref); if ( $mref->{partnumber} ne "" ) { $ref->{partnumber} = $mref->{partnumber}; |