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,'Define the contents of MARC21 authority control field 008 position 06-39','Textarea'),
177
('MARCAuthorityControlField008','|| aca||aabn           | a|a     d',NULL,'Define the contents of MARC21 authority control field 008 position 06-39','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 for MARC21 records - http://www.loc.gov/marc/organizations/orgshome.html','free'),
179
('MARCOrgCode','OSt','','Define MARC Organization Code for MARC21 records - 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
('MaxItemsForBatch','1000',NULL,'Max number of items record to process in a batch (modification or deletion)','Integer'),
181
('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 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 273-279 Link Here
273
                                </li>
273
                                </li>
274
                                <li>
274
                                <li>
275
                                    [% IF ( close ) %]
275
                                    [% IF ( close ) %]
276
                                        <span class="label">Budget: </span>
276
                                        <span class="label">Fund: </span>
277
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
277
                                        <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
278
                                    [% ELSE %]
278
                                    [% ELSE %]
279
                                        <li>
279
                                        <li>
Lines 289-295 Link Here
289
                                            </select>
289
                                            </select>
290
                                        </li>
290
                                        </li>
291
                                        <li>
291
                                        <li>
292
                                            <label for="all_budget_id">Budget: </label>
292
                                            <label for="all_budget_id">Fund: </label>
293
                                            <select id="all_budget_id" size="1" name="all_budget_id">
293
                                            <select id="all_budget_id" size="1" name="all_budget_id">
294
                                            [% FOREACH budget_loo IN budget_loop %]
294
                                            [% FOREACH budget_loo IN budget_loop %]
295
                                                [% IF ( budget_loo.b_sel ) %]
295
                                                [% IF ( budget_loo.b_sel ) %]
296
- 

Return to bug 7180