Revision 84bed7a6
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
1456 | 1456 |
} |
1457 | 1457 |
|
1458 | 1458 |
@columns = |
1459 |
qw(transdate id invnumber ordnumber name netamount tax amount paid datepaid |
|
1459 |
qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
|
|
1460 | 1460 |
due duedate notes employee globalprojectnumber); |
1461 | 1461 |
|
1462 |
$form->{"l_type"} = "Y"; |
|
1463 |
|
|
1462 | 1464 |
foreach $item (@columns) { |
1463 | 1465 |
if ($form->{"l_$item"} eq "Y") { |
1464 | 1466 |
push @column_index, $item; |
... | ... | |
1482 | 1484 |
qq|<th><a class=listheading href=$href&sort=transdate>| |
1483 | 1485 |
. $locale->text('Date') |
1484 | 1486 |
. qq|</a></th>|; |
1487 |
$column_header{type} = |
|
1488 |
"<th class=\"listheading\">" . $locale->text('Type') . "</th>"; |
|
1485 | 1489 |
$column_header{duedate} = |
1486 | 1490 |
qq|<th><a class=listheading href=$href&sort=duedate>| |
1487 | 1491 |
. $locale->text('Due Date') |
... | ... | |
1596 | 1600 |
$subtotaldue += ($ap->{amount} - $ap->{paid}); |
1597 | 1601 |
|
1598 | 1602 |
$column_data{transdate} = "<td>$ap->{transdate} </td>"; |
1603 |
$column_data{type} = "<td>" . |
|
1604 |
($ap->{invoice} ? $locale->text("Invoice (one letter abbreviation)") : |
|
1605 |
$locale->text("AP Transaction (abbreviation)")) |
|
1606 |
. "</td>"; |
|
1599 | 1607 |
$column_data{duedate} = "<td>$ap->{duedate} </td>"; |
1600 | 1608 |
$column_data{datepaid} = "<td>$ap->{datepaid} </td>"; |
1601 | 1609 |
|
locale/de/all | ||
---|---|---|
32 | 32 |
'AP' => 'Einkauf', |
33 | 33 |
'AP Aging' => 'Offene Verbindlichkeiten', |
34 | 34 |
'AP Transaction' => 'Kreditorenbuchung', |
35 |
'AP Transaction (abbreviation)' => 'K', |
|
35 | 36 |
'AP Transactions' => 'Kreditorenbuchungen', |
36 | 37 |
'AR' => 'Verkauf', |
37 | 38 |
'AR Aging' => 'Offene Forderungen', |
locale/de/ap | ||
---|---|---|
2 | 2 |
' Payment posted!' => 'Zahlung gebucht!', |
3 | 3 |
'ADDED' => 'Hinzugef?gt', |
4 | 4 |
'AP Transaction' => 'Kreditorenbuchung', |
5 |
'AP Transaction (abbreviation)' => 'K', |
|
5 | 6 |
'AP Transactions' => 'Kreditorenbuchungen', |
6 | 7 |
'Account' => 'Konto', |
7 | 8 |
'Add Accounts Payables Transaction' => 'Kreditorenbuchung erfassen', |
... | ... | |
61 | 62 |
'ID' => 'Buchungsnummer', |
62 | 63 |
'Include in Report' => 'In Bericht aufnehmen', |
63 | 64 |
'Invoice' => 'Rechnung', |
65 |
'Invoice (one letter abbreviation)' => 'R', |
|
64 | 66 |
'Invoice Date' => 'Rechnungsdatum', |
65 | 67 |
'Invoice Date missing!' => 'Rechnungsdatum fehlt!', |
66 | 68 |
'Invoice Number' => 'Rechnungsnummer', |
... | ... | |
136 | 138 |
'Transaction deleted!' => 'Buchung gel?scht!', |
137 | 139 |
'Transaction posted!' => 'Buchung verbucht!', |
138 | 140 |
'Trying to call a sub without a name' => 'Es wurde versucht, eine Unterfunktion ohne Namen aufzurufen.', |
141 |
'Type' => 'Typ', |
|
139 | 142 |
'Unit' => 'Einheit', |
140 | 143 |
'Unknown dependency \'%s\'.' => 'Unbekannte Abhängigkeit \'%s\'.', |
141 | 144 |
'Update' => 'Erneuern', |
Auch abrufbar als: Unified diff
Bei der Liste der Einkaufsrechnungen den Typ anzeigen: "R" für Einkaufsrechnungen und "K" für Kreditorenbuchungen.