Revision f6ed86ef
Von Kivitendo Admin vor fast 10 Jahren hinzugefügt
SL/DB/PurchaseInvoice.pm | ||
---|---|---|
7 | 7 |
use SL::DB::MetaSetup::PurchaseInvoice; |
8 | 8 |
use SL::DB::Manager::PurchaseInvoice; |
9 | 9 |
use SL::DB::Helper::LinkedRecords; |
10 |
use SL::Locale::String qw(t8); |
|
11 |
|
|
10 | 12 |
# The calculator hasn't been adjusted for purchase invoices yet. |
11 | 13 |
# use SL::DB::Helper::PriceTaxCalculator; |
12 | 14 |
|
... | ... | |
52 | 54 |
goto &transdate; |
53 | 55 |
} |
54 | 56 |
|
57 |
sub abbreviation { |
|
58 |
my $self = shift; |
|
59 |
|
|
60 |
return t8('AP Transaction (abbreviation)') if !$self->invoice && !$self->storno; |
|
61 |
return t8('AP Transaction (abbreviation)') . '(' . t8('Storno (one letter abbreviation)') . ')' if !$self->invoice && $self->storno; |
|
62 |
return t8('Invoice (one letter abbreviation)'). '(' . t8('Storno (one letter abbreviation)') . ')' if $self->storno; |
|
63 |
return t8('Invoice (one letter abbreviation)'); |
|
64 |
|
|
65 |
} |
|
55 | 66 |
1; |
Auch abrufbar als: Unified diff
FiBu Schellsuche in Headerzeile
neues Ajax Autocompletefeld im Header für Benutzer mit FiBu-Rechten,
welches Rechnungsnummern und Kunden-/Lieferantennamen durchsucht. Durch
die Auswahl im Dropdown gelangt man direkt zu dem Beleg.