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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 175-180 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
175
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
175
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
176
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
176
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
177
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,NULL,'Textarea'),
177
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,NULL,'Textarea'),
178
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a marcrecord (staged file). In a YAML format.','textarea'),
178
('MARCOrgCode','OSt','','Define MARC Organization Code - http://www.loc.gov/marc/organizations/orgshome.html','free'),
179
('MARCOrgCode','OSt','','Define MARC Organization Code - http://www.loc.gov/marc/organizations/orgshome.html','free'),
179
('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'),
180
('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'),
180
('maxItemsInSearchResults','20',NULL,'Specify the maximum number of items to display for each result on a page of results','free'),
181
('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 101-107 Link Here
101
101
102
        $("#Aform").on("submit", function(){
102
        $("#Aform").on("submit", function(){
103
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
103
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
104
                alert("There is no record selected");
104
                alert(_("There is no record selected"));
105
                return false;
105
                return false;
106
            }
106
            }
107
107
Lines 112-118 Link Here
112
                }
112
                }
113
            });
113
            });
114
            if ( error > 0 ) {
114
            if ( error > 0 ) {
115
                alert(error + " quantity values are not filled or not a number");
115
                alert(error + " " + _("quantity values are not filled or not a number"));
116
                return false;
116
                return false;
117
            }
117
            }
118
118
Lines 269-275 Link Here
269
                                </li>
269
                                </li>
270
                                <li>
270
                                <li>
271
                                    [% IF ( close ) %]
271
                                    [% IF ( close ) %]
272
                                        <span class="label">Budget: </span>
272
                                        <span class="label">Fund: </span>
273
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
273
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
274
                                    [% ELSE %]
274
                                    [% ELSE %]
275
                                        <li>
275
                                        <li>
Lines 285-291 Link Here
285
                                            </select>
285
                                            </select>
286
                                        </li>
286
                                        </li>
287
                                        <li>
287
                                        <li>
288
                                            <label for="all_budget_id">Budget: </label>
288
                                            <label for="all_budget_id">Fund: </label>
289
                                            <select id="all_budget_id" size="1" name="all_budget_id">
289
                                            <select id="all_budget_id" size="1" name="all_budget_id">
290
                                            [% FOREACH budget_loo IN budget_loop %]
290
                                            [% FOREACH budget_loo IN budget_loop %]
291
                                                [% IF ( budget_loo.b_sel ) %]
291
                                                [% IF ( budget_loo.b_sel ) %]
292
- 

Return to bug 7180