Bugzilla – Attachment 76998 Details for
Bug 19166
Add the ability to add adjustments to an invoice
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19166: Get correct value for encumbering when open for new lines
Bug-19166-Get-correct-value-for-encumbering-when-o.patch (text/plain), 1.92 KB, created by
Nick Clemens (kidclamp)
on 2018-07-16 14:29:17 UTC
(
hide
)
Description:
Bug 19166: Get correct value for encumbering when open for new lines
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2018-07-16 14:29:17 UTC
Size:
1.92 KB
patch
obsolete
>From aaff88b2c14c9f16c42520b986e745f9b4fafddc Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 13 Mar 2018 09:17:24 +0000 >Subject: [PATCH] Bug 19166: Get correct value for encumbering when open for > new lines >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >https://bugs.koha-community.org/show_bug.cgi?id=19166 > >Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > acqui/invoice.pl | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/acqui/invoice.pl b/acqui/invoice.pl >index 75b6091..66c3582 100755 >--- a/acqui/invoice.pl >+++ b/acqui/invoice.pl >@@ -132,7 +132,7 @@ elsif ( $op && $op eq 'mod_adj' ) { > reason => $reason[$i], > note => $note[$i], > budget_id => $budget_id[$i] || undef, >- encumber_open => $encumber_open[$i], >+ encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0, > }); > $new_adj->store(); > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >index 25f5a14..d872b41 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >@@ -183,7 +183,7 @@ > [% END %] > </select> > </td> >- <td><input type="checkbox" name="encumber_open" id="encumber_new" value="1" /></td> >+ <td><input type="checkbox" name="encumber_open" id="encumber_new" value="new" /></td> > <td><input type="hidden" name="delete" value=""></td> > </tr> > </table> >-- >2.1.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 19166
:
66475
|
66476
|
67599
|
67600
|
67601
|
67602
|
67890
|
70413
|
70414
|
70415
|
70416
|
72702
|
72703
|
72704
|
72705
|
72744
|
72978
|
73481
|
73482
|
73483
|
73484
|
73485
|
73486
|
73487
|
74742
|
74743
|
74744
|
74745
|
74746
|
74747
|
74748
|
74843
|
74893
|
74894
|
74895
|
74896
|
74897
|
74898
|
74899
|
74900
|
75014
|
75043
|
76994
|
76995
|
76996
|
76997
|
76998
|
76999
|
77000
|
77001
|
77002
|
77003
|
77004
|
77104
|
77105
|
77106
|
77107
|
77108
|
77109
|
77110
|
77111
|
77112
|
77113
|
77114
|
77115
|
77116
|
77117
|
77118
|
77119
|
77120
|
77121
|
77122
|
77123
|
77124
|
77125
|
77126
|
77127
|
77128
|
77129
|
77130
|
77131
|
77132
|
77133
|
77134
|
77329