projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91e45c0
)
Artikel mit negativem Lagerbestand ebenfalls im Bericht ausgeben, damit dieser vom...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 20 Feb 2009 14:01:58 +0000
(14:01 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 20 Feb 2009 14:01:58 +0000
(14:01 +0000)
SL/WH.pm
patch
|
blob
|
history
diff --git
a/SL/WH.pm
b/SL/WH.pm
index
3428b91
..
8bf4321
100644
(file)
--- a/
SL/WH.pm
+++ b/
SL/WH.pm
@@
-463,6
+463,7
@@
sub get_warehouse_report {
GROUP BY $group_clause $group_by
ORDER BY $form->{sort}|;
+ dump_query(0, "q", $query, @filter_vars);
my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars);
my (%non_empty_bins, @all_fields, @contents);
@@
-471,7
+472,7
@@
sub get_warehouse_report {
$ref->{qty} *= 1;
my $qty = $ref->{qty};
- next unless ($qty
>
0);
+ next unless ($qty
!=
0);
if ($f_qty_op) {
my $part_unit = $all_units->{$ref->{partunit}};