Bugzilla – Attachment 25048 Details for
Bug 11680
tax rate changes on edit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
0001-Bug-11680-tax-rate-changes-on-edit.patch (text/plain), 1.34 KB, created by
Jacek Ablewicz
on 2014-02-05 11:19:08 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Jacek Ablewicz
Created:
2014-02-05 11:19:08 UTC
Size:
1.34 KB
patch
obsolete
>From fec40383b85d945d3d6476bb39aaef4fcb28f1a7 Mon Sep 17 00:00:00 2001 >From: Jacek Ablewicz <abl@biblos.pk.edu.pl> >Date: Wed, 5 Feb 2014 11:16:14 +0100 >Subject: [PATCH] Bug 11680 - tax rate changes on edit > >If the tax rates in Acquisitions -> gist system preference are entered >with trailing zeroes, given order tax rate value may not be correctly >handled on order edit. > >To test: > >1) insert some tax rates with trailing zeroes in gist >system preference (e.g: '0|0.080|0.12|0.20|0.23') >2) place some new orders, choosing 8.0% 12.0% 20.0% 23.0% >as gst rate >3) try to modify them >4) note that orders with 12.0% and 23.0% tax rates are >preserving previously choosen rates on edit, while >the ones with 8.0% and 20.0% do not (they are defaulting >to the first defined tax rate) >5) apply the patch >6) repeat 2) and 3) >7) all tax rates configured in system prefrence shall now >behave properly while editing orders >--- > acqui/neworderempty.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/acqui/neworderempty.pl b/acqui/neworderempty.pl >index 9fdf032..2fc6100 100755 >--- a/acqui/neworderempty.pl >+++ b/acqui/neworderempty.pl >@@ -355,7 +355,7 @@ $template->param( > > # get option values for gist syspref > my @gst_values = map { >- option => $_ >+ option => $_ + 0.0 > }, split( '\|', C4::Context->preference("gist") ); > > $template->param( >-- >1.7.10.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11680
:
25048
|
25059
|
25155
|
25169
|
26452
|
26453