Revision 7cdd3f9b
Von Sven Schöling vor mehr als 15 Jahren hinzugefügt
SL/DO.pm | ||
---|---|---|
819 | 819 |
do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id})); |
820 | 820 |
my $bin_wh = $h_bin_wh->fetchrow_hashref(); |
821 | 821 |
|
822 |
push @{ $form->{si_runningnumber} }, $num_si; |
|
823 |
push @{ $form->{si_number} }, $form->{"partnumber_$i"}; |
|
824 |
push @{ $form->{si_description} }, $form->{"description_$i"}; |
|
825 |
push @{ $form->{si_warehouse} }, $bin_wh->{warehouse}; |
|
826 |
push @{ $form->{si_bin} }, $bin_wh->{bin}; |
|
827 |
push @{ $form->{si_chargenumber} }, $si->{chargenumber}; |
|
828 |
push @{ $form->{si_qty} }, $form->format_amount($myconfig, $si->{qty} * 1); |
|
829 |
push @{ $form->{si_unit} }, $si->{unit}; |
|
822 |
push @{ $form->{si_runningnumber}[$position-1] }, $num_si;
|
|
823 |
push @{ $form->{si_number}[$position-1] }, $form->{"partnumber_$i"};
|
|
824 |
push @{ $form->{si_description}[$position-1] }, $form->{"description_$i"};
|
|
825 |
push @{ $form->{si_warehouse}[$position-1] }, $bin_wh->{warehouse};
|
|
826 |
push @{ $form->{si_bin}[$position-1] }, $bin_wh->{bin};
|
|
827 |
push @{ $form->{si_chargenumber}[$position-1] }, $si->{chargenumber};
|
|
828 |
push @{ $form->{si_qty}[$position-1] }, $form->format_amount($myconfig, $si->{qty} * 1);
|
|
829 |
push @{ $form->{si_unit}[$position-1] }, $si->{unit};
|
|
830 | 830 |
} |
831 | 831 |
} |
832 | 832 |
} |
Auch abrufbar als: Unified diff
stock_info Werte müssen in Lieferscheinen rchtig exportiert werden.
Teilfix für Bug 960.