From c4fe7e370ef772a0c7b84f623df3ae64cce5011b Mon Sep 17 00:00:00 2001 From: Kyle M Hall 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 --- .../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 @@
  • [% IF account.quotes_enabled %] - + [% ELSE %] - + [% END %]
  • [% IF account.orders_enabled %] - + [% ELSE %] - + [% END %]
  • [% IF account.invoices_enabled %] - + [% ELSE %] - + [% END %]
  • [% IF account.responses_enabled %] - + [% ELSE %] - + [% END %]
  • [% IF account.auto_orders %] - + [% ELSE %] - + [% END %]
    With automatic ordering quotes generate orders without staff intervention. -- 2.11.0