Revision 54740168
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
1644 | 1644 |
|
1645 | 1645 |
$column_data{invnumber} = |
1646 | 1646 |
"<td><a href=$module?action=edit&id=$ar->{id}&login=$form->{login}&password=$form->{password}&callback=$callback>$ar->{invnumber}</a></td>"; |
1647 |
|
|
1648 |
my $is_storno = $ar->{storno} && ($ar->{invnumber} =~ /^Storno zu/); |
|
1649 |
my $has_storno = $ar->{storno} && !$is_storno; |
|
1650 |
|
|
1647 | 1651 |
$column_data{type} = "<td>" . |
1648 |
($ar->{storno} ? $locale->text("Storno (one letter abbreviation)") : |
|
1652 |
($has_storno ? $locale->text("Invoice with Storno (abbreviation)") : |
|
1653 |
$is_storno ? $locale->text("Storno (one letter abbreviation)") : |
|
1649 | 1654 |
$ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") : |
1650 | 1655 |
$ar->{invoice} ? $locale->text("Invoice (one letter abbreviation)") : |
1651 | 1656 |
$locale->text("AR Transaction (abbreviation)")) |
Auch abrufbar als: Unified diff
Anzeige der Rechnungstypen: Aufteilung der Stornorechnung in die ursprüngliche Rechnung mit Storno "R(S)" und die Stornorechnung selber "S".