Presenter für GL Transaction
authorG. Richardson <information@kivitendo-premium.de>
Fri, 23 Jan 2015 16:23:18 +0000 (17:23 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Tue, 27 Jan 2015 13:15:30 +0000 (14:15 +0100)
analog zu invoice und purchase_invoice

SL/Presenter.pm
SL/Presenter/GL.pm [new file with mode: 0644]

index a9c73f8..7b83e36 100644 (file)
@@ -12,6 +12,7 @@ use SL::Presenter::CustomerVendor;
 use SL::Presenter::DeliveryOrder;
 use SL::Presenter::EscapedText;
 use SL::Presenter::Invoice;
+use SL::Presenter::GL;
 use SL::Presenter::Order;
 use SL::Presenter::Part;
 use SL::Presenter::Project;
diff --git a/SL/Presenter/GL.pm b/SL/Presenter/GL.pm
new file mode 100644 (file)
index 0000000..5a9c15b
--- /dev/null
@@ -0,0 +1,79 @@
+package SL::Presenter::GL;
+
+use strict;
+
+use parent qw(Exporter);
+
+use Exporter qw(import);
+our @EXPORT = qw(gl_transaction);
+
+use Carp;
+
+sub gl_transaction {
+  my ($self, $gl_transaction, %params) = @_;
+
+  $params{display} ||= 'inline';
+
+  croak "Unknown display type '$params{display}'" unless $params{display} =~ m/^(?:inline|table-cell)$/;
+
+  my $text = join '', (
+    $params{no_link} ? '' : '<a href="gl.pl?action=edit&amp;id=' . $self->escape($gl_transaction->id) . '">',
+    $self->escape($gl_transaction->id),
+    $params{no_link} ? '' : '</a>',
+  );
+  return $self->escaped_text($text);
+}
+
+1;
+
+__END__
+
+=pod
+
+=encoding utf8
+
+=head1 NAME
+
+SL::Presenter::GL - Presenter module for GL transaction
+
+=head1 SYNOPSIS
+
+  my $object = SL::DB::Manager::GLTransaction->get_first();
+  my $html   = SL::Presenter->get->gl_transaction($object, display => 'inline');
+
+=head1 FUNCTIONS
+
+=over 4
+
+=item C<gl_transaction $object, %params>
+
+Returns a rendered version (actually an instance of
+L<SL::Presenter::EscapedText>) of a gl object C<$object>.
+
+C<%params> can include:
+
+=over 2
+
+=item * display
+
+Either C<inline> (the default) or C<table-cell>. At the moment both
+representations are identical and produce the trans_id number linked
+to the corresponding 'edit' action.
+
+=item * no_link
+
+If falsish (the default) then the trans_id number will be linked to the
+"edit gl" dialog.
+
+
+=back
+
+=head1 BUGS
+
+Nothing here yet.
+
+=head1 AUTHOR
+
+G. Richardson E<lt>information@kivitendo-premium.deE<gt>
+
+=cut