Bugzilla – Attachment 105614 Details for
Bug 25677
Checkbox options for EDI accounts cannot be enabled
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25677: Checkbox options for EDI accounts cannot be enabled
Bug-25677-Checkbox-options-for-EDI-accounts-cannot.patch (text/plain), 4.09 KB, created by
Katrin Fischer
on 2020-06-07 12:09:58 UTC
(
hide
)
Description:
Bug 25677: Checkbox options for EDI accounts cannot be enabled
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-06-07 12:09:58 UTC
Size:
4.09 KB
patch
obsolete
>From 854fe4ed75cc0140c234dba6b22c46e5f8529a8e Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 4 Jun 2020 14:43:58 -0400 >Subject: [PATCH] Bug 25677: Checkbox options for EDI accounts cannot be > enabled > >Checking any of the checkboxes in the EDI Account editor does nothing. >They always remain set to "off". > >Test Plan: >1) Browse to edi_accounts.pl >2) Create a new EDI account, check all the checkboxes >3) Edit the account, note none of the checkboxes are checked >4) Apply this patch >5) Repeat steps 1-2 >6) Note the checkboxes remain checked > >Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../prog/en/modules/admin/edi_accounts.tt | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >index ec5b27b35a..79388b8ada 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt >@@ -158,41 +158,41 @@ > <li> > <label for="quotes_enabled">Quotes enabled: </label> > [% IF account.quotes_enabled %] >- <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="[% account.quotes_enabled | html %]" checked="checked" /> >+ <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="1" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="[% account.quotes_enabled | html %]" /> >+ <input type="checkbox" name="quotes_enabled" id="quotes_enabled" value="1" /> > [% END %] > </li> > <li> > <label for="orders_enabled">Orders enabled: </label> > [% IF account.orders_enabled %] >- <input type="checkbox" name="orders_enabled" id="orders_enabled" value="[% account.orders_enabled | html %]" checked="checked" /> >+ <input type="checkbox" name="orders_enabled" id="orders_enabled" value="1" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="orders_enabled" id="orders_enabled" value="[% account.orders_enabled | html %]" /> >+ <input type="checkbox" name="orders_enabled" id="orders_enabled" value="1" /> > [% END %] > </li> > <li> > <label for="invoices_enabled">Invoices enabled: </label> > [% IF account.invoices_enabled %] >- <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="[% account.invoices_enabled | html %]" checked="checked" /> >+ <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="1" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="[% account.invoices_enabled | html %]" /> >+ <input type="checkbox" name="invoices_enabled" id="invoices_enabled" value="1" /> > [% END %] > </li> > <li> > <label for="responses_enabled">Responses enabled: </label> > [% IF account.responses_enabled %] >- <input type="checkbox" name="responses_enabled" id="responses_enabled" value="[% account.responses_enabled | html %]" checked="checked" /> >+ <input type="checkbox" name="responses_enabled" id="responses_enabled" value="1" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="responses_enabled" id="responses_enabled" value="[% account.responses_enabled | html %]" /> >+ <input type="checkbox" name="responses_enabled" id="responses_enabled" value="1" /> > [% END %] > </li> > <li> > <label for="auto_orders">Automatic ordering: </label> > [% IF account.auto_orders %] >- <input type="checkbox" name="auto_orders" id="auto_orders" value="[% account.auto_orders | html %]" checked="checked" /> >+ <input type="checkbox" name="auto_orders" id="auto_orders" value="1" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="auto_orders" id="auto_orders" value="[% account.auto_orders | html %]" /> >+ <input type="checkbox" name="auto_orders" id="auto_orders" value="1" /> > [% END %] > <div class="hint"> > With automatic ordering quotes generate orders without staff intervention. >-- >2.11.0
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 25677
:
105563
|
105564
| 105614