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:
1ad3632
)
Einkaufspreis nicht formatieren bei Erzeugen eines Lieferantenauftrags aus Kundenauftrag
author
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Wed, 9 Oct 2013 12:42:41 +0000
(14:42 +0200)
committer
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Wed, 9 Oct 2013 12:55:22 +0000
(14:55 +0200)
Ist vermutlich kaputt gegangen, als der EK editierbar in die Auftragsmaske kam und
somit dort schon formatiert drin stand.
Fixt #2333.
bin/mozilla/oe.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/oe.pl
b/bin/mozilla/oe.pl
index
3a35b89
..
15bdfa4
100644
(file)
--- a/
bin/mozilla/oe.pl
+++ b/
bin/mozilla/oe.pl
@@
-1798,7
+1798,7
@@
sub poso {
# also reset discounts
if ( $form->{sales_order_to_purchase_order} ) {
for my $i (1 .. $form->{rowcount}) {
- $form->{"sellprice_${i}"} = $form->
format_amount(\%myconfig,$form->{"lastcost_${i}"})
;
+ $form->{"sellprice_${i}"} = $form->
{"lastcost_${i}"}
;
$form->{"discount_${i}"} = 0;
};
};