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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/batch_record_modification.tt (+30 lines)
Line 0 Link Here
1
[% INCLUDE 'help-top.inc' %]
2
3
<h2>Batch record modification</h2>
4
5
<p>This tool will allow you to edit batches of bibliographic and/or authority records using MARC Modification Templates. Before visiting this tool you will want to set up at least one MARC modification template.</p>
6
7
<p>When you visit the tool it will ask you:</p>
8
9
<ul>
10
	<li>Choose whether you're editing bibliographic or authority records</li>
11
	<li>Enter the biblionumbers or authids
12
<ul>
13
	<li>You can upload a file of these numbers or</li>
14
	<li>Enter the numbers (one per line) in the box provided</li>
15
</ul>
16
</li>
17
	<li>Finally choose the MARC Modification Template you'd like to use to edit these records.</li>
18
</ul>
19
20
<p>Once you've entered your critera click 'Continue'</p>
21
22
<p>You will be presented with a list of records that will be edited. Next to each one is a checkbox so you can uncheck any items you would rather not edit at this time.</p>
23
24
<p>Clicking Preview MARC will allow you to see what edits will be made when you finalize the edit.</p>
25
26
<p>Once you're sure everything is the way you want you can click the 'Modify selected records' button and your records will be modified.</p>
27
28
<p><strong>See the full documentation for Batch Record Modification in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/catalogtools.html#batchrecordmod">manual</a> (online).</strong></p>
29
30
[% INCLUDE 'help-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt (-1 / +1 lines)
Lines 15-21 Link Here
15
<ul>
15
<ul>
16
    <li>Limit to a bib number range</li>
16
    <li>Limit to a bib number range</li>
17
    <li>Limit to a specific item type</li>
17
    <li>Limit to a specific item type</li>
18
    <li>Limit to a specific set of libraries</li>
18
    <li>Limit to a specific library or group of libraries</li>
19
    <li>Limit to a call number range</li>
19
    <li>Limit to a call number range</li>
20
    <li>Limit to an acquisition date range</li>
20
    <li>Limit to an acquisition date range</li>
21
</ul>
21
</ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tt (-7 / +7 lines)
Lines 8-14 Link Here
8
8
9
<p>Your Koha installation comes with a blank CSV file that you can use as a template for your patron records. If you would like to create the file yourself, make sure that your file has the following fields in this order as the header row:</p>
9
<p>Your Koha installation comes with a blank CSV file that you can use as a template for your patron records. If you would like to create the file yourself, make sure that your file has the following fields in this order as the header row:</p>
10
10
11
<blockquote>borrowernumber, cardnumber, surname, firstname, title, othernames, initials, streetnumber, streettype, address, address2, city, zipcode, country, email, phone, mobile, fax, emailpro, phonepro, B_streetnumber, B_streettype, B_address, B_address2, B_city, B_zipcode, B_country, B_email, B_phone, dateofbirth, branchcode, categorycode, dateenrolled, dateexpiry, gonenoaddress, lost, debarred, contactname, contactfirstname, contacttitle, guarantorid, borrowernotes, relationship, ethnicity, ethnotes, sex, password, flags, userid, opacnote, contactnote, sort1, sort2, altcontactfirstname, altcontactsurname, altcontactaddress1, altcontactaddress2, altcontactaddress3, altcontactzipcode, altcontactcountry, altcontactphone, smsalertnumber, patron_attributes</blockquote>
11
<blockquote>cardnumber, surname, firstname, title, othernames, initials, streetnumber, streettype, address, address2, city, state, zipcode, country, email, phone, mobile, fax, emailpro, phonepro, B_streetnumber, B_streettype, B_address, B_address2, B_city, B_state, B_zipcode, B_country, B_email, B_phone, dateofbirth, branchcode, categorycode, dateenrolled, dateexpiry, gonenoaddress, lost, debarred, debarredcomment, contactname, contactfirstname, contacttitle, guarantorid, borrowernotes, relationship, ethnicity, ethnotes, sex, password, flags, userid, opacnote, contactnote, sort1, sort2, altcontactfirstname, altcontactsurname, altcontactaddress1, altcontactaddress2, altcontactaddress3, altcontactstate, altcontactzipcode, altcontactcountry, altcontactphone, smsalertnumber, privacy, patron_attributes </blockquote>
12
12
13
<p style="color: #990000;">Important: The 'password' value should be stored in plain text, and will be converted to a Bcrypt hash (which is an encrypted version of the password).</p>
13
<p style="color: #990000;">Important: The 'password' value should be stored in plain text, and will be converted to a Bcrypt hash (which is an encrypted version of the password).</p>
14
14
Lines 20-37 Link Here
20
20
21
<p style="color: #990000;">Important: The fields 'branchcode' and 'categorycode' are required and must match valid entries in your database.</p>
21
<p style="color: #990000;">Important: The fields 'branchcode' and 'categorycode' are required and must match valid entries in your database.</p>
22
22
23
<p style="background-color: #ffe599">Tip: If loading patron attributes, the 'patron_attributes' field should contain a comma-separated list of attribute types and values.</p>
23
<p style="background-color: #ffe599">Tip : If loading patron attributes, the 'patron_attributes' field should contain a comma-separated list of attribute types and values.</p>
24
25
<ul>
24
<ul>
26
	<li>The attribute type code and a colon should precede each value.
25
	<li>The attribute type code and a colon should precede each value.
27
<ul>
26
<ul>
28
	<li>For example: INSTID:12345,LANG:fr or STARTDATE:January 1 2010,TRACK:Day</li>
27
	<li>For example: "INSTID:12345,BASEBALL:Cubs"</li>
29
	<li>If an input record has more than one attribute, the fields should either be entered as an unquoted string (previous examples), or with each field wrapped in separate double quotes and delimited by a comma:
28
	<li>This field must be wrapped in quotes if multiple values are defined.</li>
29
	<li>Since values can contain spaces, additional doubled-quotes may be required:
30
<ul>
30
<ul>
31
	<li>"STARTDATE:January 1, 2010","TRACK:Day"</li>
31
	<li>"INSTID:12345,BASEBALL:Cubs,""BASEBALL:White Sox"""</li>
32
	<li>This syntax would be required if the data might have a comma in it, like a date string.</li>
33
</ul>
32
</ul>
34
</li>
33
</li>
34
	<li>When replacing a patron record, any attributes specified in the input file replace all of the attribute values of any type that were previously assigned to the patron record.</li>
35
</ul>
35
</ul>
36
</li>
36
</li>
37
</ul>
37
</ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt (-14 / +22 lines)
Lines 5-30 Link Here
5
<p>This tool can be used to import both bibliographic and authority records that are saved in MARC format. Importing records into Koha includes two steps. The first is to stage records for import.</p>
5
<p>This tool can be used to import both bibliographic and authority records that are saved in MARC format. Importing records into Koha includes two steps. The first is to stage records for import.</p>
6
6
7
<ul>
7
<ul>
8
	<li>First find the MARC file on your computer</li>
8
   <li>First find the MARC file on your computer</li>
9
	<li>Next you will be presented with options for record matching and item imports
9
   <li>Next you will be presented with options for record matching and item imports
10
<ul>
10
<ul>
11
	<li>Enter 'Comments about this file' to identify your upload when going to the 'Manage Staged MARC Records' tool</li>
11
   <li>Enter 'Comments about this file' to identify your upload when going to the 'Manage Staged MARC Records' tool</li>
12
	<li>Tell Koha which type of file this is, bibliographic or authority</li>
12
   <li>Tell Koha which type of file this is, bibliographic or authority</li>
13
	<li>Choose the character encoding</li>
13
   <li>Choose the character encoding</li>
14
	<li>Choose whether or not you want to look for matching
14
   <li>Choose if you would like to use a MARC Modification Template to alter the data you're about to import</li>
15
records
15
   <li>Choose whether or not you want to look for matching records
16
<ul>
16
<ul>
17
	<li>You can set up record matching rules through the administration area</li>
17
   <li>You can set up record matching rules through the administration area
18
<ul>
19
   <li>When using the ISBN matching rule Koha will find only exact matches. If you find that the ISBN match is not working to your satisfaction you can change the AggressiveMatchOnISBN preference to 'Do' and then run your import again.</li>
20
</ul>
21
</li>
22
</ul>
23
</li>
24
   <li>Next choose what to do with matching records if they are found</li>
25
   <li>Finally choose what to do with records that are unique</li>
26
   <li>Next you can choose whether or not to import the item data found in the MARC records (if the file you're loading is a bibliographic file)
27
<ul>
28
   <li>From here you can choose to always add items regardless of matching status, add them only if a matching bib was found, add items only if there was no matching bib record, replace items if a matching bib was found (The match will look at the itemnumbers and barcodes to match on for items. Itemnumbers take precendence over barcodes), or Ignore items and not add them.</li>
18
</ul>
29
</ul>
19
</li>
30
</li>
20
	<li>Next choose what to do with matching records if they are found</li>
31
   <li>Click 'Stage for import'</li>
21
	<li>Finally choose what to do with records that are unique</li>
32
   <li>You will be presented with a confirmation of your MARC import</li>
22
	<li>Next you can choose whether or not to import the item data found in the MARC records (if the file you're loading is a bibliographic file)</li>
33
   <li>To complete the process continue to the Managed Staged MARC Records Tool</li>
23
</ul>
34
</ul>
24
</li>
35
</li>
25
	<li>Click 'Stage for import'</li>
26
	<li>You will be presented with a confirmation of your MARC import</li>
27
	<li>To complete the process continue to the Managed Staged MARC Records Tool</li>
28
</ul>
36
</ul>
29
37
30
<p><strong>See the full documentation for the MARC Import in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/stagemarc.html">manual</a> (online).</strong></p>
38
<p><strong>See the full documentation for the MARC Import in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/stagemarc.html">manual</a> (online).</strong></p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/viewlog.tt (-3 lines)
Lines 6-13 Link Here
6
6
7
<p>Choosing different combinations of menu options will produce the log file for that query.</p>
7
<p>Choosing different combinations of menu options will produce the log file for that query.</p>
8
8
9
<p>You will note that real names do not appear on the log, only identifying numbers. You need to use the identifying numbers when searching the logs as well.</p>
10
11
<p><strong>See the full documentation for the Log Viewer in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/logviewer.html">manual</a> (online).</strong></p>
9
<p><strong>See the full documentation for the Log Viewer in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/logviewer.html">manual</a> (online).</strong></p>
12
10
13
[% INCLUDE 'help-bottom.inc' %]
11
[% INCLUDE 'help-bottom.inc' %]
14
- 

Return to bug 14424