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