summaryrefslogtreecommitdiff
path: root/LedgerSMB/PE.pm
diff options
context:
space:
mode:
Diffstat (limited to 'LedgerSMB/PE.pm')
-rwxr-xr-xLedgerSMB/PE.pm28
1 files changed, 19 insertions, 9 deletions
diff --git a/LedgerSMB/PE.pm b/LedgerSMB/PE.pm
index 58d7a6cf..7fc00012 100755
--- a/LedgerSMB/PE.pm
+++ b/LedgerSMB/PE.pm
@@ -1431,23 +1431,33 @@ 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) = @_;
+ my ($self, $myconfig, $form) = @_;
- # connect to database
- my $dbh = $form->{dbh};
+ # connect to database
+ my $dbh = $form->{dbh};
- my $query = qq|SELECT current_date|;
- my ($transdate) = $dbh->selectrow_array($query);
+ my $query = qq|SELECT current_date|;
+ my ($transdate) = $dbh->selectrow_array($query);
- $form->all_years($myconfig, $dbh);
+ $form->all_years($myconfig, $dbh);
- $form->all_projects($myconfig, $dbh, $transdate);
+ $form->all_projects($myconfig, $dbh, $transdate);
- $form->all_employees($myconfig, $dbh, $transdate);
+ $form->all_employees($myconfig, $dbh, $transdate);
- $dbh->commit;
+ $dbh->commit;
}