summaryrefslogtreecommitdiff
path: root/LedgerSMB
diff options
context:
space:
mode:
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-xLedgerSMB/PE.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/LedgerSMB/PE.pm b/LedgerSMB/PE.pm
index efe8f4ec..099f94ce 100755
--- a/LedgerSMB/PE.pm
+++ b/LedgerSMB/PE.pm
@@ -1431,6 +1431,17 @@ sub delete_translation {
}
+sub timecard_get_currency {
+ my $self = shift @_;
+ my $form = shift @_;
+ my $dbh = $form->{dbh};
+ my $query = qq|SELECT curr FROM customer WHERE id = ?|;
+ my $sth = $dbh->prepare($query);
+ $sth->execute($form->{customer_id});
+ my ($curr) = $sth->fetchrow_array;
+ $form->{currency} = $curr;
+}
+
sub project_sales_order {
my ($self, $myconfig, $form) = @_;