http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14742

            Bug ID: 14742
           Summary: 082 field corrupt in FA Framework in new installs
 Change sponsored?: ---
           Product: Koha
           Version: 3.20
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Cataloging
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected]

In a new install of Koha, the 082 field doesn't display in the FA framework,
yet when you try adding a catalogue record using that framework the 082
displays (without a field description).

This problem is caused by the following row in the marc_tag_structure table:

| 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION
NUMBER |  1 |  0 | NULL |  |


To fix it, you need to use the following SQL:


update  marc_tag_structure set frameworkcode = 'FA' where tagfield = '082      
                                                      ' and frameworkcode = '';

This alters the row to the following:

| 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION     
                                                        NUMBER |   1 |   0 |
NULL   | FA   |

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to