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:
61bbd62
)
Einkaufspreis bei Einkaufsauftrag aus Verkaufsauftrag 2
author
G. Richardson
<information@lx-office-hosting.de>
Mon, 15 Feb 2010 09:12:14 +0000
(10:12 +0100)
committer
G. Richardson
<information@lx-office-hosting.de>
Mon, 15 Feb 2010 09:12:14 +0000
(10:12 +0100)
Nachkommastellenformatierung der Einkaufspreise berücksichtigen
bin/mozilla/oe.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/oe.pl
b/bin/mozilla/oe.pl
index
d8f4415
..
da09648
100644
(file)
--- a/
bin/mozilla/oe.pl
+++ b/
bin/mozilla/oe.pl
@@
-1763,7
+1763,7
@@
sub poso {
# if purchase_order was generated from sales_order, use lastcost_$i as sellprice_$i
if ( $form->{sales_order_to_purchase_order} ) {
for my $i (1 .. $form->{rowcount}) {
- $form->{"sellprice_${i}"} = $form->
parse_amount(\%myconfig,
$form->{"lastcost_${i}"});
+ $form->{"sellprice_${i}"} = $form->
format_amount(\%myconfig,
$form->{"lastcost_${i}"});
};
};