Revision 0070a250
Von Andreas Rudin vor mehr als 7 Jahren hinzugefügt
SL/Controller/CsvImport/BankTransaction.pm | ||
---|---|---|
90 | 90 |
{ name => 'local_bank_account_id', description => $::locale->text('ID of own bank account') }, |
91 | 91 |
{ name => 'remote_bank_code', description => $::locale->text('Bank code of the goal/source') }, |
92 | 92 |
{ name => 'remote_account_number', description => $::locale->text('Account number of the goal/source') }, |
93 |
{ name => 'transdate', description => $::locale->text('Date of transaction') },
|
|
94 |
{ name => 'valutadate', description => $::locale->text('Valuta date') },
|
|
93 |
{ name => 'transdate', description => $::locale->text('Transdate') },
|
|
94 |
{ name => 'valutadate', description => $::locale->text('Valutadate') }, |
|
95 | 95 |
{ name => 'amount', description => $::locale->text('Amount') }, |
96 | 96 |
{ name => 'currency', description => $::locale->text('Currency') }, |
97 | 97 |
{ name => 'currency_id', description => $::locale->text('Currency (database ID)') }, |
SL/Controller/MassInvoiceCreatePrint.pm | ||
---|---|---|
213 | 213 |
}, |
214 | 214 |
customer => t8('Customer'), |
215 | 215 |
employee => t8('Employee'), |
216 |
transdate => t8('Date'), |
|
216 |
transdate => t8('Delivery Order Date'),
|
|
217 | 217 |
donumber => t8('Delivery Order Number'), |
218 | 218 |
ordnumber => t8('Order Number'), |
219 | 219 |
}, |
... | ... | |
324 | 324 |
|
325 | 325 |
my @filters = ( |
326 | 326 |
[ $filter->{customer}{"name:substr::ilike"}, t8('Customer') ], |
327 |
[ $filter->{"transdate:date::ge"}, t8('Transdate') . " " . t8('From Date') ],
|
|
328 |
[ $filter->{"transdate:date::le"}, t8('Transdate') . " " . t8('To Date') ],
|
|
327 |
[ $filter->{"transdate:date::ge"}, t8('Delivery Order Date') . " " . t8('From Date') ],
|
|
328 |
[ $filter->{"transdate:date::le"}, t8('Delivery Order Date') . " " . t8('To Date') ],
|
|
329 | 329 |
); |
330 | 330 |
|
331 | 331 |
for (@filters) { |
SL/Controller/TopQuickSearch/OERecord.pm | ||
---|---|---|
106 | 106 |
by => 'transdate', |
107 | 107 |
dir => 0, |
108 | 108 |
}, |
109 |
transdate => t8('Transdate'),
|
|
109 |
transdate => t8('Date'),
|
|
110 | 110 |
}, |
111 | 111 |
paginated => { |
112 | 112 |
per_page => 10, |
SL/DATEV.pm | ||
---|---|---|
1202 | 1202 |
taxkey => { 'text' => $::locale->text('Taxkey'), }, |
1203 | 1203 |
tax_accname => { 'text' => $::locale->text('Tax Account Name'), }, |
1204 | 1204 |
tax_accno => { 'text' => $::locale->text('Tax Account'), }, |
1205 |
transdate => { 'text' => $::locale->text('Invoice Date'), },
|
|
1205 |
transdate => { 'text' => $::locale->text('Transdate'), },
|
|
1206 | 1206 |
vcnumber => { 'text' => $::locale->text('Customer/Vendor Number'), }, |
1207 | 1207 |
); |
1208 | 1208 |
|
SL/GoBD.pm | ||
---|---|---|
85 | 85 |
taxkey => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Taxkey'), }, |
86 | 86 |
tax_accname => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Tax Account Name'), }, |
87 | 87 |
tax_accno => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Tax Account'), }, |
88 |
transdate => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Invoice Date'), },
|
|
88 |
transdate => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Transdate'), },
|
|
89 | 89 |
vcnumber => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Customer/Vendor Number'), }, |
90 | 90 |
customer_id => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Customer (database ID)'), }, |
91 | 91 |
vendor_id => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Vendor (database ID)'), }, |
92 | 92 |
itime => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Create Date'), }, |
93 |
gldate => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Booking Date'), },
|
|
93 |
gldate => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Gldate'), },
|
|
94 | 94 |
); |
95 | 95 |
|
96 | 96 |
my @datev_columns = qw( |
SL/Presenter/Record.pm | ||
---|---|---|
445 | 445 |
title => $::locale->text('GL Transactions'), |
446 | 446 |
type => 'gl_transaction', |
447 | 447 |
columns => [ |
448 |
[ $::locale->text('Date'), 'transdate' ],
|
|
448 |
[ $::locale->text('Transdate'), 'transdate' ],
|
|
449 | 449 |
[ $::locale->text('Reference'), 'reference' ], |
450 | 450 |
[ $::locale->text('Description'), sub { $self->gl_transaction($_[0 ], display => 'table-cell') } ], |
451 | 451 |
], |
bin/mozilla/ap.pl | ||
---|---|---|
998 | 998 |
'ustid' => { 'text' => $locale->text('USt-IdNr.'), }, |
999 | 999 |
'taxzone' => { 'text' => $locale->text('Tax rate'), }, |
1000 | 1000 |
'payment_terms' => { 'text' => $locale->text('Payment Terms'), }, |
1001 |
'charts' => { 'text' => $locale->text('Buchungskonto'), },
|
|
1001 |
'charts' => { 'text' => $locale->text('Chart'), },
|
|
1002 | 1002 |
'direct_debit' => { 'text' => $locale->text('direct debit'), }, |
1003 | 1003 |
); |
1004 | 1004 |
|
bin/mozilla/ar.pl | ||
---|---|---|
1031 | 1031 |
'ustid' => { 'text' => $locale->text('USt-IdNr.'), }, |
1032 | 1032 |
'taxzone' => { 'text' => $locale->text('Steuersatz'), }, |
1033 | 1033 |
'payment_terms' => { 'text' => $locale->text('Payment Terms'), }, |
1034 |
'charts' => { 'text' => $locale->text('Buchungskonto'), },
|
|
1034 |
'charts' => { 'text' => $locale->text('Chart'), },
|
|
1035 | 1035 |
'customertype' => { 'text' => $locale->text('Customer type'), }, |
1036 | 1036 |
'direct_debit' => { 'text' => $locale->text('direct debit'), }, |
1037 | 1037 |
'department' => { 'text' => $locale->text('Department'), }, |
bin/mozilla/gl.pl | ||
---|---|---|
415 | 415 |
my $ml = ($form->{ml} =~ /(A|E|Q)/) ? -1 : 1; |
416 | 416 |
|
417 | 417 |
my @columns = qw( |
418 |
gldate transdate id reference description
|
|
418 |
transdate gldate id reference description
|
|
419 | 419 |
notes source doccnt debit debit_accno |
420 | 420 |
credit credit_accno debit_tax debit_tax_accno |
421 | 421 |
credit_tax credit_tax_accno projectnumbers balance employee |
... | ... | |
434 | 434 |
push @options, $locale->text('Description') . " : $form->{description}" if ($form->{description}); |
435 | 435 |
push @options, $locale->text('Notes') . " : $form->{notes}" if ($form->{notes}); |
436 | 436 |
push @options, $locale->text('Employee') . " : $employee" if $employee; |
437 |
my $datesorttext = $form->{datesort} eq 'transdate' ? $locale->text('Invoice Date') : $locale->text('Booking Date');
|
|
437 |
my $datesorttext = $form->{datesort} eq 'transdate' ? $locale->text('Transdate') : $locale->text('Gldate');
|
|
438 | 438 |
push @date_options, "$datesorttext" if ($form->{datesort} and ($form->{datefrom} or $form->{dateto})); |
439 | 439 |
push @date_options, $locale->text('From'), $locale->date(\%myconfig, $form->{datefrom}, 1) if ($form->{datefrom}); |
440 | 440 |
push @date_options, $locale->text('Bis'), $locale->date(\%myconfig, $form->{dateto}, 1) if ($form->{dateto}); |
... | ... | |
460 | 460 |
|
461 | 461 |
my %column_defs = ( |
462 | 462 |
'id' => { 'text' => $locale->text('ID'), }, |
463 |
'transdate' => { 'text' => $locale->text('Invoice Date'), },
|
|
464 |
'gldate' => { 'text' => $locale->text('Booking Date'), },
|
|
463 |
'transdate' => { 'text' => $locale->text('Transdate'), },
|
|
464 |
'gldate' => { 'text' => $locale->text('Gldate'), },
|
|
465 | 465 |
'reference' => { 'text' => $locale->text('Reference'), }, |
466 | 466 |
'source' => { 'text' => $locale->text('Source'), }, |
467 | 467 |
'doccnt' => { 'text' => $locale->text('Document Count'), }, |
bin/mozilla/ic.pl | ||
---|---|---|
194 | 194 |
'serialnumber' => { 'text' => $locale->text('Serial Number'), }, |
195 | 195 |
'soldtotal' => { 'text' => $locale->text('Qty in Selected Records'), }, |
196 | 196 |
'name' => { 'text' => $locale->text('Name in Selected Records'), }, |
197 |
'transdate' => { 'text' => $locale->text('Transdate'), }, |
|
197 |
'transdate' => { 'text' => $locale->text('Transdate Record'), },
|
|
198 | 198 |
'unit' => { 'text' => $locale->text('Unit'), }, |
199 | 199 |
'weight' => { 'text' => $locale->text('Weight'), }, |
200 | 200 |
'shop' => { 'text' => $locale->text('Shop article'), }, |
locale/de/all | ||
---|---|---|
413 | 413 |
'Bcc E-mail' => 'BCC (E-Mail)', |
414 | 414 |
'Because the useability gets worse if one partnumber is used for several parts (for example if you are searching a position for an invoice), partnumbers should be unique.' => 'Da die Benutzerfreundlichkeit durch doppelte Artikelnummern erheblich verschlechtert wird (zum Beispiel, wenn man einen Artikel für eine Rechnung sucht), sollten Artikelnummern eindeutig vergeben sein.', |
415 | 415 |
'Before saving a sales order, this article will be checked and a warning is generated.' => 'Vor dem Speichern eines Angebots oder Auftrags wird überprüft, ob die hier definierte Artikelnummer vorhanden ist (Versandkosten01, etc.) und eine entsprechende Hinweiswarnung angezeigt', |
416 |
'Belegnummer' => 'Buchungsnummer', |
|
417 | 416 |
'Belgium' => 'Belgien', |
418 | 417 |
'Beratername' => 'Beratername', |
419 | 418 |
'Beraternummer' => 'Beraternummer', |
... | ... | |
448 | 447 |
'Bis Konto: ' => 'bis Konto: ', |
449 | 448 |
'Body' => 'Text', |
450 | 449 |
'Body:' => 'Text:', |
451 |
'Booking Date' => 'Buchungsdatum', |
|
452 | 450 |
'Booking group' => 'Buchungsgruppe', |
453 | 451 |
'Booking group #1 needs a valid expense account' => 'Buchungsgruppe #1 braucht ein gültiges Aufwandskonto', |
454 | 452 |
'Booking group #1 needs a valid income account' => 'Buchungsgruppe #1 braucht ein gültiges Erfolgskonto', |
... | ... | |
465 | 463 |
'Bought' => 'Gekauft', |
466 | 464 |
'Break down by' => 'Aufschlüsseln nach', |
467 | 465 |
'Break up the update and contact a service provider.' => 'Diese Option bricht das Update ab. Bitte kontaktieren Sie Ihren Administrator oder beauftragen einen Dienstleister.', |
468 |
'Buchungsdatum' => 'Buchungsdatum', |
|
469 |
'Buchungskonto' => 'Buchungskonto', |
|
470 |
'Buchungsnummer' => 'Buchungsnummer', |
|
471 | 466 |
'Business' => 'Kunden-/Lieferantentyp', |
472 | 467 |
'Business Discount' => 'Kunden-/Lieferantentyp-Rabatt', |
473 | 468 |
'Business Number' => 'Firmennummer', |
... | ... | |
843 | 838 |
'Date Paid' => 'Zahlungsdatum', |
844 | 839 |
'Date and timestamp variables: If the default value equals \'NOW\' then the current date/current timestamp will be used. Otherwise the default value is copied as-is.' => 'Datums- und Uhrzeitvariablen: Wenn der Standardwert \'NOW\' ist, so wird das aktuelle Datum/die aktuelle Uhrzeit eingefügt. Andernfalls wird der Standardwert so wie er ist benutzt.', |
845 | 840 |
'Date missing!' => 'Datum fehlt!', |
846 |
'Date of transaction' => 'Buchungsdatum', |
|
847 | 841 |
'Date the payment is due in full' => 'Das Datum, bis die Rechnung in voller Höhe bezahlt werden muss', |
848 | 842 |
'Date the payment is due with discount' => 'Das Datum, bis die Rechnung unter Abzug von Skonto bezahlt werden kann', |
849 | 843 |
'Datevautomatik' => 'Datev-Automatik', |
... | ... | |
1421 | 1415 |
'Germany' => 'Deutschland', |
1422 | 1416 |
'Git revision: #1, #2 #3' => 'Git-Revision: #1, #2 #3', |
1423 | 1417 |
'Given Name' => 'Vorname', |
1418 |
'Gldate' => 'Erfassungsdatum', |
|
1424 | 1419 |
'Global Attachments' => 'Allgemeine Dokumentenanhänge', |
1425 | 1420 |
'Global Record BCC' => 'Globale BCC-Adresse', |
1426 | 1421 |
'GoBD Export' => 'GoBD Export', |
... | ... | |
3323 | 3318 |
'Transactions without account:' => 'Buchungen ohne Konto:', |
3324 | 3319 |
'Transactions without reference:' => 'Buchungen ohne Referenz:', |
3325 | 3320 |
'Transactions, AR transactions, AP transactions' => 'Dialogbuchen, Debitorenrechnungen, Kreditorenrechnungen', |
3326 |
'Transdate' => 'Belegdatum', |
|
3321 |
'Transdate' => 'Buchungsdatum', |
|
3322 |
'Transdate Record' => 'Buchungsdatum Beleg', |
|
3327 | 3323 |
'Transdate from' => 'Kontoauszugsdatum von', |
3328 | 3324 |
'Transdate is #1' => 'Belegdatum ist #1', |
3329 | 3325 |
'Transdate is after #1' => 'Belegdatum ist nach #1', |
3330 | 3326 |
'Transdate is before #1' => 'Belegdatum ist vor #1', |
3331 |
'Transdate to' => 'Buchungsdatum bis',
|
|
3327 |
'Transdate to' => 'Kontoauszugsdatum bis',
|
|
3332 | 3328 |
'Transfer' => 'Umlagern', |
3333 | 3329 |
'Transfer Quantity' => 'Umlagermenge', |
3334 | 3330 |
'Transfer To Stock' => 'Lagereingang', |
... | ... | |
3469 | 3465 |
'Valid until' => 'gültig bis', |
3470 | 3466 |
'Valid/Obsolete' => 'Gültig/ungültig', |
3471 | 3467 |
'Value' => 'Wert', |
3472 |
'Valuta date' => 'Valutadatum', |
|
3473 |
'Valutadate' => 'Valutadatum', |
|
3468 |
'Valutadate' => 'Valutadatum', |
|
3474 | 3469 |
'Valutadate from' => 'Valutadatum von', |
3475 | 3470 |
'Valutadate to' => 'Valutadatum bis', |
3476 | 3471 |
'Variable' => 'Variable', |
locale/en/all | ||
---|---|---|
413 | 413 |
'Bcc E-mail' => '', |
414 | 414 |
'Because the useability gets worse if one partnumber is used for several parts (for example if you are searching a position for an invoice), partnumbers should be unique.' => '', |
415 | 415 |
'Before saving a sales order, this article will be checked and a warning is generated.' => '', |
416 |
'Belegnummer' => '', |
|
417 | 416 |
'Belgium' => '', |
418 | 417 |
'Beratername' => '', |
419 | 418 |
'Beraternummer' => '', |
... | ... | |
448 | 447 |
'Bis Konto: ' => '', |
449 | 448 |
'Body' => '', |
450 | 449 |
'Body:' => '', |
451 |
'Booking Date' => '', |
|
452 | 450 |
'Booking group' => '', |
453 | 451 |
'Booking group #1 needs a valid expense account' => '', |
454 | 452 |
'Booking group #1 needs a valid income account' => '', |
... | ... | |
465 | 463 |
'Bought' => '', |
466 | 464 |
'Break down by' => '', |
467 | 465 |
'Break up the update and contact a service provider.' => '', |
468 |
'Buchungsdatum' => '', |
|
469 |
'Buchungskonto' => '', |
|
470 |
'Buchungsnummer' => '', |
|
471 | 466 |
'Business' => '', |
472 | 467 |
'Business Discount' => '', |
473 | 468 |
'Business Number' => '', |
... | ... | |
843 | 838 |
'Date Paid' => '', |
844 | 839 |
'Date and timestamp variables: If the default value equals \'NOW\' then the current date/current timestamp will be used. Otherwise the default value is copied as-is.' => '', |
845 | 840 |
'Date missing!' => '', |
846 |
'Date of transaction' => '', |
|
847 | 841 |
'Date the payment is due in full' => '', |
848 | 842 |
'Date the payment is due with discount' => '', |
849 | 843 |
'Datevautomatik' => '', |
... | ... | |
1421 | 1415 |
'Germany' => '', |
1422 | 1416 |
'Git revision: #1, #2 #3' => '', |
1423 | 1417 |
'Given Name' => '', |
1418 |
'Gldate' => 'Entry Date', |
|
1424 | 1419 |
'Global Attachments' => '', |
1425 | 1420 |
'Global Record BCC' => '', |
1426 | 1421 |
'GoBD Export' => '', |
... | ... | |
3322 | 3317 |
'Transactions without account:' => '', |
3323 | 3318 |
'Transactions without reference:' => '', |
3324 | 3319 |
'Transactions, AR transactions, AP transactions' => '', |
3325 |
'Transdate' => '', |
|
3320 |
'Transdate' => 'Booking Date', |
|
3321 |
'Transdate Record' => 'Booking Date Record', |
|
3326 | 3322 |
'Transdate from' => '', |
3327 |
'Transdate is #1' => '', |
|
3328 |
'Transdate is after #1' => '', |
|
3329 |
'Transdate is before #1' => '', |
|
3323 |
'Transdate is #1' => 'Record date is #1',
|
|
3324 |
'Transdate is after #1' => 'Record date is after #1',
|
|
3325 |
'Transdate is before #1' => 'Record date is before #1',
|
|
3330 | 3326 |
'Transdate to' => '', |
3331 | 3327 |
'Transfer' => '', |
3332 | 3328 |
'Transfer Quantity' => '', |
... | ... | |
3468 | 3464 |
'Valid until' => '', |
3469 | 3465 |
'Valid/Obsolete' => '', |
3470 | 3466 |
'Value' => '', |
3471 |
'Valuta date' => '', |
|
3472 |
'Valutadate' => '', |
|
3467 |
'Valutadate' => '', |
|
3473 | 3468 |
'Valutadate from' => '', |
3474 | 3469 |
'Valutadate to' => '', |
3475 | 3470 |
'Variable' => '', |
templates/webpages/ap/search.html | ||
---|---|---|
116 | 116 |
<td align=right><input name="l_payment_terms" class=checkbox type=checkbox value=Y></td> |
117 | 117 |
<td nowrap>[% 'Payment Terms' | $T8 %]</td> |
118 | 118 |
<td align=right><input name="l_charts" class=checkbox type=checkbox value=Y></td> |
119 |
<td nowrap>[% 'Buchungskonto' | $T8 %]</td>
|
|
119 |
<td nowrap>[% 'Chart' | $T8 %]</td>
|
|
120 | 120 |
<td align=right><input name="l_direct_debit" id="l_direct_debit" class=checkbox type=checkbox value=Y></td> |
121 | 121 |
<td nowrap>[% 'direct debit' | $T8 %]</td> |
122 | 122 |
</tr> |
templates/webpages/ar/search.html | ||
---|---|---|
179 | 179 |
<td align=right><input name="l_payment_terms" id="l_payment_terms" class=checkbox type=checkbox value=Y></td> |
180 | 180 |
<td nowrap>[% 'Payment Terms' | $T8 %]</td> |
181 | 181 |
<td align=right><input name="l_charts" id="l_charts" class=checkbox type=checkbox value=Y></td> |
182 |
<td nowrap>[% 'Buchungskonto' | $T8 %]</td>
|
|
182 |
<td nowrap>[% 'Chart' | $T8 %]</td>
|
|
183 | 183 |
<td align=right><input name="l_direct_debit" id="l_direct_debit" class=checkbox type=checkbox value=Y></td> |
184 | 184 |
<td nowrap>[% 'direct debit' | $T8 %]</td> |
185 | 185 |
</tr> |
templates/webpages/bank_transactions/add_list.html | ||
---|---|---|
9 | 9 |
<th>[%- LxERP.t8("Amount") %]</th> |
10 | 10 |
<th>[%- LxERP.t8("Open amount") %]</th> |
11 | 11 |
<th>[%- LxERP.t8("Amount less skonto") %]</th> |
12 |
<th>[%- LxERP.t8("Transdate") %]</th>
|
|
12 |
<th>[%- LxERP.t8("Invoice Date") %]</th>
|
|
13 | 13 |
<th>[%- LxERP.t8("Customer/Vendor number") %]</th> |
14 | 14 |
<th>[%- LxERP.t8("Customer/Vendor name") %]</th> |
15 | 15 |
</tr> |
templates/webpages/dbupgrade/acc_trans_constraints.html | ||
---|---|---|
14 | 14 |
<table> |
15 | 15 |
<tr> |
16 | 16 |
<th class="listheading">[% 'Database ID' | $T8 %]</th> |
17 |
<th class="listheading">[% 'Booking Date' | $T8 %]</th>
|
|
18 |
<th class="listheading">[% 'Invoice Date' | $T8 %]</th>
|
|
17 |
<th class="listheading">[% 'Gldate' | $T8 %]</th>
|
|
18 |
<th class="listheading">[% 'Transdate' | $T8 %]</th>
|
|
19 | 19 |
<th class="listheading">[% 'Amount' | $T8 %]</th> |
20 |
<th class="listheading">[% 'Buchungsnummer' | $T8 %]</th>
|
|
20 |
<th class="listheading">[% 'ID' | $T8 %]</th>
|
|
21 | 21 |
<th class="listheading">[% 'Source' | $T8 %]</th> |
22 | 22 |
<th class="listheading">[% 'Reference / Invoice Number' | $T8 %]</th> |
23 | 23 |
<th class="listheading">[% 'Description' | $T8 %]</th> |
... | ... | |
54 | 54 |
<table> |
55 | 55 |
<tr> |
56 | 56 |
<th class="listheading">[% 'Database ID' | $T8 %]</th> |
57 |
<th class="listheading">[% 'Booking Date' | $T8 %]</th>
|
|
58 |
<th class="listheading">[% 'Invoice Date' | $T8 %]</th>
|
|
57 |
<th class="listheading">[% 'Gldate' | $T8 %]</th>
|
|
58 |
<th class="listheading">[% 'Transdate' | $T8 %]</th>
|
|
59 | 59 |
<th class="listheading">[% 'Amount' | $T8 %]</th> |
60 | 60 |
<th class="listheading">[% 'Source' | $T8 %]</th> |
61 | 61 |
<th class="listheading">[% 'Account Number' | $T8 %]</th> |
templates/webpages/gl/form_header.html | ||
---|---|---|
66 | 66 |
<td align=left> |
67 | 67 |
<table> |
68 | 68 |
<tr> |
69 |
<th align=right width=50% nowrap>[% 'Date' | $T8 %]</th>
|
|
69 |
<th align=right width=50% nowrap>[% 'Transdate' | $T8 %]</th>
|
|
70 | 70 |
<td>[% L.date_tag('transdate', transdate, readonly=readonly) %]</td> |
71 | 71 |
</tr> |
72 | 72 |
</table> |
... | ... | |
74 | 74 |
</tr> |
75 | 75 |
[%- IF id %] |
76 | 76 |
<tr> |
77 |
<th align=right>[% 'Belegnummer' | $T8 %]</th>
|
|
77 |
<th align=right>[% 'ID' | $T8 %]</th>
|
|
78 | 78 |
<td>[% L.input_tag('id', id, size=20, readonly=readonly) %]</td> |
79 | 79 |
<td align=left> |
80 | 80 |
<table> |
81 | 81 |
<tr> |
82 |
<th align=right width=50%>[% 'Buchungsdatum' | $T8 %]</th>
|
|
82 |
<th align=right width=50%>[% 'Gldate' | $T8 %]</th>
|
|
83 | 83 |
<td align=left>[% L.date_tag('gldate', gldate, readonly=1) %]</td> |
84 | 84 |
</tr> |
85 | 85 |
</table> |
templates/webpages/gl/search.html | ||
---|---|---|
45 | 45 |
<tr> |
46 | 46 |
<th align=right>[% 'Filter date by' | $T8 %]</th> |
47 | 47 |
<td colspan=3> |
48 |
<input name=datesort class=radio type=radio value=gldate checked> [% 'Booking Date' | $T8 %]
|
|
49 |
<input name=datesort class=radio type=radio value=transdate> [% 'Invoice Date' | $T8 %]
|
|
48 |
<input name=datesort class=radio type=radio value=transdate checked> [% 'Transdate' | $T8 %]
|
|
49 |
<input name=datesort class=radio type=radio value=gldate> [% 'Gldate' | $T8 %]
|
|
50 | 50 |
</td> |
51 | 51 |
</tr> |
52 | 52 |
<tr> |
... | ... | |
74 | 74 |
<td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td> |
75 | 75 |
<td>[% 'ID' | $T8 %]</td> |
76 | 76 |
<td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td> |
77 |
<td>[% 'Invoice Date' | $T8 %]</td>
|
|
77 |
<td>[% 'Transdate' | $T8 %]</td>
|
|
78 | 78 |
<td align=right><input name="l_gldate" class=checkbox type=checkbox value=Y checked></td> |
79 |
<td>[% 'Booking Date' | $T8 %]</td>
|
|
79 |
<td>[% 'Gldate' | $T8 %]</td>
|
|
80 | 80 |
<td align=right><input name="l_reference" class=checkbox type=checkbox value=Y checked></td> |
81 | 81 |
<td>[% 'Reference' | $T8 %]</td> |
82 | 82 |
<td align=right><input name="l_description" class=checkbox type=checkbox value=Y checked></td> |
templates/webpages/ic/search.html | ||
---|---|---|
205 | 205 |
</tr> |
206 | 206 |
|
207 | 207 |
<tr> |
208 |
<td>[%- L.checkbox_tag('l_transdate', label=LxERP.t8('Transdate'), value='Y') %]</td> |
|
209 |
<td>[%- L.checkbox_tag('l_subtotal', label=LxERP.t8('Subtotal'), value='Y') %]</td> |
|
210 |
<td>[%- L.checkbox_tag('l_soldtotal', label=LxERP.t8('Qty in Selected Records'), value='Y') %]</td> |
|
208 |
<td>[%- L.checkbox_tag('l_insertdate', label=LxERP.t8('Insert Date'), value='Y') %]</td> |
|
209 |
<td>[%- L.checkbox_tag('l_notes', label=LxERP.t8('Notes'), value='Y') %]</td> |
|
211 | 210 |
<td>[%- L.checkbox_tag('l_ean', label=LxERP.t8('EAN'), value='Y') %]</td> |
211 |
<td>[%- L.checkbox_tag('l_shop', label=LxERP.t8('Shop article'), value='Y') %]</td> |
|
212 | 212 |
</tr> |
213 | 213 |
|
214 | 214 |
<tr> |
... | ... | |
219 | 219 |
</tr> |
220 | 220 |
|
221 | 221 |
<tr> |
222 |
<td>[%- L.checkbox_tag('l_notes', label=LxERP.t8('Notes'), value='Y') %]</td> |
|
222 |
<td>[%- L.checkbox_tag('l_subtotal', label=LxERP.t8('Subtotal'), value='Y') %]</td> |
|
223 |
<td>[%- L.checkbox_tag('l_transdate', label=LxERP.t8('Transdate Record'), value='Y') %]</td> |
|
223 | 224 |
<td>[%- L.checkbox_tag('l_name', label=LxERP.t8('Name in Selected Records'), value='Y') %]</td> |
224 |
<td>[%- L.checkbox_tag('l_shop', label=LxERP.t8('Shop article'), value='Y') %]</td> |
|
225 |
<td>[%- L.checkbox_tag('l_insertdate', label=LxERP.t8('Insert Date'), value='Y') %]</td> |
|
225 |
<td>[%- L.checkbox_tag('l_soldtotal', label=LxERP.t8('Qty in Selected Records'), value='Y') %]</td> |
|
226 | 226 |
</tr> |
227 | 227 |
|
228 | 228 |
[% CUSTOM_VARIABLES_INCLUSION_CODE %] |
templates/webpages/mass_invoice_create_print_from_do/_filter.html | ||
---|---|---|
13 | 13 |
<th align="right">[% LxERP.t8('Customer') %]</th> |
14 | 14 |
<td>[% L.input_tag('filter.customer.name:substr::ilike', filter.customer.name_substr__ilike, size = 20) %]</td> |
15 | 15 |
</tr> |
16 |
<th align="right">[% LxERP.t8('Transdate') %] [% LxERP.t8('From Date') %]</th>
|
|
16 |
<th align="right">[% LxERP.t8('Delivery Order Date') %] [% LxERP.t8('From Date') %]</th>
|
|
17 | 17 |
<td>[% L.date_tag('filter.transdate:date::ge', filter.transdate_date__ge) %]</td> |
18 | 18 |
</tr> |
19 | 19 |
<tr> |
20 |
<th align="right">[% LxERP.t8('Transdate') %] [% LxERP.t8('To Date') %]</th>
|
|
20 |
<th align="right">[% LxERP.t8('Delivery Order Date') %] [% LxERP.t8('To Date') %]</th>
|
|
21 | 21 |
<td>[% L.date_tag('filter.transdate:date::le', filter.transdate_date__le) %]</td> |
22 | 22 |
</tr> |
23 | 23 |
</table> |
templates/webpages/order_items_search/_order_item_list.html | ||
---|---|---|
9 | 9 |
<th>[%- LxERP.t8("Part") %]</th> |
10 | 10 |
<th>[%- LxERP.t8("Customer") %]</th> |
11 | 11 |
<th>[%- LxERP.t8("Order") %]</th> |
12 |
<th>[%- LxERP.t8("Transdate") %]</th>
|
|
12 |
<th>[%- LxERP.t8("Order Date") %]</th>
|
|
13 | 13 |
<th>[%- LxERP.t8("Qty") %]</th> |
14 | 14 |
<th>[%- LxERP.t8("Delivered") %]</th> |
15 | 15 |
<th>[%- LxERP.t8("Price") %]</th> |
templates/webpages/price_rule/_filter.html | ||
---|---|---|
47 | 47 |
<td>[% L.date_tag('filter.item_type_matches[].reqdate', FORM.filter.item_type_matches.0.reqdate, style='width: 300px') %]</td> |
48 | 48 |
</tr> |
49 | 49 |
<tr> |
50 |
<th align="right">[% 'Transdate' | $T8 %]</th> |
|
50 |
<th align="right">[% 'Transdate Record' | $T8 %]</th>
|
|
51 | 51 |
<td>[% L.date_tag('filter.item_type_matches[].transdate', FORM.filter.item_type_matches.0.transdate, style='width: 300px') %]</td> |
52 | 52 |
</tr> |
53 | 53 |
<tr> |
templates/webpages/price_rule/item.html | ||
---|---|---|
32 | 32 |
[% CASE 'reqdate' %] |
33 | 33 |
[% 'Reqdate' | $T8 %] [% L.select_tag('price_rule.items[].op', date_compare_ops, default=item.op) %] [% L.date_tag('price_rule.items[].value_date', item.value_date) %] |
34 | 34 |
[% CASE 'transdate' %] |
35 |
[% 'Transdate' | $T8 %] [% L.select_tag('price_rule.items[].op', date_compare_ops, default=item.op) %] [% L.date_tag('price_rule.items[].value_date', item.value_date) %] |
|
35 |
[% 'Transdate Record' | $T8 %] [% L.select_tag('price_rule.items[].op', date_compare_ops, default=item.op) %] [% L.date_tag('price_rule.items[].value_date', item.value_date) %]
|
|
36 | 36 |
[% CASE 'pricegroup' %] |
37 | 37 |
[% 'Pricegroup' | $T8 %] [% 'is' | $T8 %] [% L.select_tag('price_rule.items[].value_int', SELF.pricegroups, title_key='pricegroup', default=item.value_int) %] |
38 | 38 |
[% CASE %] |
Auch abrufbar als: Unified diff
Korrekturen und Vereinheitlichung der Nomenklatur bzgl. Buchungs- und Erfassungsdatum, diverse kleinere Korrekturen bei der Nomenklatur