Revision b29783a3
Von Moritz Bunkus vor mehr als 15 Jahren hinzugefügt
bin/mozilla/ir.pl | ||
---|---|---|
411 | 411 |
"duedate", "BL", "trigger2"); |
412 | 412 |
|
413 | 413 |
my $follow_up_vc = $form->{vendor}; |
414 |
$follow_up_vc =~ s/--.*?//;
|
|
414 |
$follow_up_vc =~ s/--\d*\s*$//;
|
|
415 | 415 |
my $follow_up_trans_info = "$form->{invnumber} ($follow_up_vc)"; |
416 | 416 |
|
417 | 417 |
$form->{javascript} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|; |
bin/mozilla/is.pl | ||
---|---|---|
565 | 565 |
$credittext = $locale->text('Credit Limit exceeded!!!'); |
566 | 566 |
|
567 | 567 |
my $follow_up_vc = $form->{customer}; |
568 |
$follow_up_vc =~ s/--.*?//;
|
|
568 |
$follow_up_vc =~ s/--\d*\s*$//;
|
|
569 | 569 |
my $follow_up_trans_info = "$form->{invnumber} ($follow_up_vc)"; |
570 | 570 |
|
571 | 571 |
$onload = ($form->{resubmit} && ($form->{format} eq "html")) ? qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()| |
bin/mozilla/oe.pl | ||
---|---|---|
342 | 342 |
$credittext = $locale->text('Credit Limit exceeded!!!'); |
343 | 343 |
|
344 | 344 |
my $follow_up_vc = $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' }; |
345 |
$follow_up_vc =~ s/--.*?//;
|
|
345 |
$follow_up_vc =~ s/--\d*\s*$//;
|
|
346 | 346 |
$TMPL_VAR{follow_up_trans_info} = ($form->{type} =~ /_quotation$/ ? $form->{quonumber} : $form->{ordnumber}) . " ($follow_up_vc)"; |
347 | 347 |
|
348 | 348 |
if ($form->{id}) { |
Auch abrufbar als: Unified diff
Beim Anlegen von Wiedervorlagen die Kunden- bzw. Lieferanten-ID nicht mit als Referenz speichern.
Werden in den Ein- und Verkaufsbelegen die Lieferanten bzw. Kunden
mit einer Drop-Down-Box dargestellt, so wurde die Datenbank-ID
des Lieferanten/Kunden mit in die Referenz übernommen, weil der
reguläre Ausdruck die ID nicht entfernt hat (".*?" matcht nun mal
auf den leeren String).
Fix für Bug 999.