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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 178-183 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
178
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
178
('LocalCoverImages','0','1','Display local cover images on intranet details pages.','YesNo'),
179
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
179
('ManInvInNoissuesCharge','1',NULL,'MANUAL_INV charges block checkouts (added to noissuescharge).','YesNo'),
180
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
180
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
181
('MarcFieldsToOrder','',NULL,'Set the mapping values for a new order line created from a marcrecord (staged file). In a YAML format.','textarea'),
181
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
182
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
182
('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'),
183
('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'),
183
('MaxItemsForBatch','1000',NULL,'Max number of items record to process in a batch (modification or deletion)','Integer'),
184
('MaxItemsForBatch','1000',NULL,'Max number of items record to process in a batch (modification or deletion)','Integer'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-5 / +4 lines)
Lines 96-102 Link Here
96
96
97
        $("#Aform").on("submit", function(){
97
        $("#Aform").on("submit", function(){
98
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
98
            if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
99
                alert("There is no record selected");
99
                alert(_("There is no record selected"));
100
                return false;
100
                return false;
101
            }
101
            }
102
102
Lines 107-113 Link Here
107
                }
107
                }
108
            });
108
            });
109
            if ( error > 0 ) {
109
            if ( error > 0 ) {
110
                alert(error + " quantity values are not filled or not a number");
110
                alert(error + " " + _("quantity values are not filled or not a number"));
111
                return false;
111
                return false;
112
            }
112
            }
113
113
Lines 268-274 Link Here
268
                                </li>
268
                                </li>
269
                                <li>
269
                                <li>
270
                                    [% IF ( close ) %]
270
                                    [% IF ( close ) %]
271
                                        <span class="label">Budget: </span>
271
                                        <span class="label">Fund: </span>
272
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
272
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
273
                                    [% ELSE %]
273
                                    [% ELSE %]
274
                                        <li>
274
                                        <li>
Lines 284-290 Link Here
284
                                            </select>
284
                                            </select>
285
                                        </li>
285
                                        </li>
286
                                        <li>
286
                                        <li>
287
                                            <label for="all_budget_id">Budget: </label>
287
                                            <label for="all_budget_id">Fund: </label>
288
                                            <select id="all_budget_id" size="1" name="all_budget_id">
288
                                            <select id="all_budget_id" size="1" name="all_budget_id">
289
                                            [% FOREACH budget_loo IN budget_loop %]
289
                                            [% FOREACH budget_loo IN budget_loop %]
290
                                                [% IF ( budget_loo.b_sel ) %]
290
                                                [% IF ( budget_loo.b_sel ) %]
291
- 

Return to bug 7180