View | Details | Raw Unified | Return to bug 7180
Collapse All | Expand All

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 172-177 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
172
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
172
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
173
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
173
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
174
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,NULL,'Textarea'),
174
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,NULL,'Textarea'),
175
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a marcrecord (staged file). In a YAML format.','textarea'),
175
('MARCOrgCode','OSt','','Define MARC Organization Code - http://www.loc.gov/marc/organizations/orgshome.html','free'),
176
('MARCOrgCode','OSt','','Define MARC Organization Code - http://www.loc.gov/marc/organizations/orgshome.html','free'),
176
('MaxFine',NULL,'','Maximum fine a patron can have for all late returns at one moment. Single item caps are specified in the circulation rules matrix.','Integer'),
177
('MaxFine',NULL,'','Maximum fine a patron can have for all late returns at one moment. Single item caps are specified in the circulation rules matrix.','Integer'),
177
('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'),
178
('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-5 / +4 lines)
Lines 97-103 Link Here
97
97
98
        $("#Aform").on("submit", function(){
98
        $("#Aform").on("submit", function(){
99
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
99
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
100
                alert("There is no record selected");
100
                alert(_("There is no record selected"));
101
                return false;
101
                return false;
102
            }
102
            }
103
103
Lines 108-114 Link Here
108
                }
108
                }
109
            });
109
            });
110
            if ( error > 0 ) {
110
            if ( error > 0 ) {
111
                alert(error + " quantity values are not filled or not a number");
111
                alert(error + " " + _("quantity values are not filled or not a number"));
112
                return false;
112
                return false;
113
            }
113
            }
114
114
Lines 259-265 Link Here
259
                                </li>
259
                                </li>
260
                                <li>
260
                                <li>
261
                                    [% IF ( close ) %]
261
                                    [% IF ( close ) %]
262
                                        <span class="label">Budget: </span>
262
                                        <span class="label">Fund: </span>
263
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
263
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
264
                                    [% ELSE %]
264
                                    [% ELSE %]
265
                                        <li>
265
                                        <li>
Lines 275-281 Link Here
275
                                            </select>
275
                                            </select>
276
                                        </li>
276
                                        </li>
277
                                        <li>
277
                                        <li>
278
                                            <label for="all_budget_id">Budget: </label>
278
                                            <label for="all_budget_id">Fund: </label>
279
                                            <select id="all_budget_id" size="1" name="all_budget_id">
279
                                            <select id="all_budget_id" size="1" name="all_budget_id">
280
                                            [% FOREACH budget_loo IN budget_loop %]
280
                                            [% FOREACH budget_loo IN budget_loop %]
281
                                                [% IF ( budget_loo.b_sel ) %]
281
                                                [% IF ( budget_loo.b_sel ) %]
282
- 

Return to bug 7180