Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision b6d9b143

Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt

  • ID b6d9b1432ff9096a487749af296110964dfaab2c
  • Vorgänger 47a61292
  • Nachfolger 404d9b0a

Verkaufspreisinformationen: Typfilter in der Überschrift anzeigen

Dadurch wird auf einen Blick etwas klarer, was die Tabelle anzeigt.

Unterschiede anzeigen:

SL/Controller/SellPriceInformation.pm
96 96
  my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
97 97
  $self->{report} = $report;
98 98

  
99
  my $title    = $::locale->text('Sales Price information');
100
  $title      .= ': ' . $::locale->text($::form->{filter}->{order}{type}) if $::form->{filter}->{order}{type};
101

  
99 102
  my @columns  = qw(transdate ordnumber customer ship qty sellprice discount amount);
100 103
  my @visible  = qw(transdate ordnumber customer ship qty sellprice discount amount);
101 104
  my @sortable = qw(transdate ordnumber customer          sellprice discount       );
......
121 124
    %{ $params{report_generator_options} || {} },
122 125
    output_format        => 'HTML',
123 126
    top_info_text        => $self->displayable_filter($::form->{filter}),
124
    title                => $::locale->text('Sales Price information'),
127
    title                => $title,
125 128
  );
126 129
  $report->set_options_from_form;
127 130
}
......
162 165
  my $column_defs = $self->column_defs;
163 166
  my @texts;
164 167

  
165
  push @texts, [ $::locale->text('Type'),    $::locale->text($filter->{order}{type}) ] if $filter->{order}{type};
166 168
  push @texts, [ $::locale->text('Sort By'), $column_defs->{$self->{sort_by}}{text}  ] if $column_defs->{$self->{sort_by}}{text};
167 169
  push @texts, [ $::locale->text('Page'),    $::locale->text($self->{pages}{cur})    ] if $self->{pages}{cur} > 1;
168 170

  

Auch abrufbar als: Unified diff