Revision 6bbd791c
Von Werner Hahn vor fast 2 Jahren hinzugefügt
SL/Presenter/Record.pm | ||
---|---|---|
457 | 457 |
); |
458 | 458 |
} |
459 | 459 |
|
460 |
sub _purchase_reclamation_list { |
|
461 |
my ($list, %params) = @_; |
|
462 |
|
|
463 |
return record_list( |
|
464 |
$list, |
|
465 |
title => $::locale->text('Purchase Reclamation'), |
|
466 |
type => 'purchase_reclamation', |
|
467 |
columns => [ |
|
468 |
[ $::locale->text('Reclamation Date'), 'transdate' ], |
|
469 |
[ $::locale->text('Reclamation Number'), sub { $_[0]->presenter->purchase_reclamation(display => 'table-cell') } ], |
|
470 |
[ $::locale->text('Vendor'), 'vendor' ], |
|
471 |
[ $::locale->text('Transaction description'), 'transaction_description' ], |
|
472 |
[ $::locale->text('Project'), 'globalproject', ], |
|
473 |
[ $::locale->text('Delivered'), 'delivered' ], |
|
474 |
[ $::locale->text('Closed'), 'closed' ], |
|
475 |
], |
|
476 |
%params, |
|
477 |
); |
|
478 |
} |
|
479 |
|
|
460 | 480 |
sub _sales_invoice_list { |
461 | 481 |
my ($list, %params) = @_; |
462 | 482 |
|
Auch abrufbar als: Unified diff
Reclamation Presenter RecordLinks