Revision e411fd61
Von Philip Reetz vor mehr als 16 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
289 | 289 |
push @ROW2, { value => qq|<b>$projectnumber</b> | . NTI($cgi->popup_menu('-name' => "project_id_$i", '-values' => \@projectnumber_values, |
290 | 290 |
'-labels' => \%projectnumber_labels, '-default' => $form->{"project_id_$i"})) }; |
291 | 291 |
push @ROW2, { value => qq|<b>$reqdate</b> <input name="reqdate_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"reqdate_$i"}">| } |
292 |
if $form->{type} =~ /order/;
|
|
292 |
if ($form->{type} =~ /order/ || $form->{type} =~ /invoice/);
|
|
293 | 293 |
push @ROW2, { value => sprintf qq|<b>%s</b> <input type="checkbox" name="subtotal_$i" value="1" %s>|, |
294 | 294 |
$locale->text('Subtotal'), $form->{"subtotal_$i"} ? 'checked' : '' }; |
295 | 295 |
|
... | ... | |
319 | 319 |
$marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"}, |
320 | 320 |
$locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2), |
321 | 321 |
$locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) } |
322 |
if $form->{"id_$i"} && $form->{type} =~ /^sales_/ && !$is_delivery_order;
|
|
322 |
if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ || $form->{type} =~ /invoice/) && !$is_delivery_order;
|
|
323 | 323 |
# / marge calculations ending |
324 | 324 |
|
325 | 325 |
my @hidden_vars; |
Auch abrufbar als: Unified diff
Lieferdatum pro Zeile wurde nach Umstellung auf Template in Rechnungen nicht mehr angezeigt