@@ -, +, @@ image - Create a new MARC record which has the same ISBN as a record in your catalog. - When you save the record it should warn you that it is a possible duplicate. The message should contain an icon-prefixed link to the existing record. - Clicking the link should open details about the title in a new window. - Enable the itemBarcodeFallbackSearch system preference. - Open a patron for checkout and enter a word in the "barcode" field instead of a barcode. - The page should return a list of titles to choose from. Each title should be a link with an icon. Clicking the link should open details about the title in a new window. - Go to Acquistisions -> Vendor -> Basket. - Choose "Add to basket" -> From an external source. - Search for and select a record which exists in your catalog. - You should be taken to a page with a "Duplicate warning" message. The message should contain an icon-prefixed link to the existing record. - Clicking this link should open details about the title in a new window. - Create a MARC file with two records: One which exists in your catalog and one which doesn't. Stage that file for import. - Choose "Add to basket" again and select "From a staged file." - Select the file you staged. - You should be taken to a page with a "Duplicate warning" message. The message should contain an icon-prefixed link to the existing record. - Clicking the link should open details about the title in a new window. - Create a new patron which has the same name and birthday as an existing patron. - When you save the record you should be shown a duplicate warning. The link to the possible duplicate patron should be prefixed with an icon and should open the patron's details in a popup window. --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 5 ----- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 2 +- .../prog/en/modules/acqui/neworderempty_duplicate.tt | 8 ++++---- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 +- 6 files changed, 8 insertions(+), 13 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -73,11 +73,6 @@ a { color: #666; } - &.popup { - background: transparent url("../img/pop-up-link.png") center right no-repeat; - padding-right: 15px; - } - &.disabled { color: #999999; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -386,7 +386,7 @@ [% END %] [% IF ( duplinbatch ) %]

Duplicate warning

-

Some records have not been automatically added because they match an existing record in your catalog:Display them

+

Some records have not been automatically added because they match an existing record in your catalog: Display them

[% END %]
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty_duplicate.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty_duplicate.tt @@ -16,10 +16,10 @@

Duplicate warning

-

You selected a record from an external source that matches an existing record in your catalog: [% IF ( BiblioDefaultViewmarc ) %] -[% ELSIF ( BiblioDefaultViewlabeled_marc ) %] -[% ELSIF ( BiblioDefaultViewisbd ) %] -[% ELSE %][% END %][% duplicatetitle | html %]

+

You selected a record from an external source that matches an existing record in your catalog: [% IF ( BiblioDefaultViewmarc ) %] +[% ELSIF ( BiblioDefaultViewlabeled_marc ) %] +[% ELSIF ( BiblioDefaultViewisbd ) %] +[% ELSE %][% END %] [% duplicatetitle | html %]

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -475,7 +475,7 @@ [% IF ( duplicatebiblionumber ) %]

Duplicate record suspected

-

Is this a duplicate of [% duplicatetitle | html %] ?

+

Is this a duplicate of [% duplicatetitle | html %] ?

[% IF ( CAN_user_editcatalogue_edit_items ) %]
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -434,7 +434,7 @@ [% FOREACH book IN options %] - [% book.title | html %] + [% book.title | html %] [% book.barcode | html %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -66,7 +66,7 @@ [% IF ( check_member ) %]

Duplicate patron record?

-

View existing record

+

View existing record

--