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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-5 lines)
Lines 73-83 a { Link Here
73
        color: #666;
73
        color: #666;
74
    }
74
    }
75
75
76
    &.popup {
77
        background: transparent url("../img/pop-up-link.png") center right no-repeat;
78
        padding-right: 15px;
79
    }
80
81
    &.disabled {
76
    &.disabled {
82
        color: #999999;
77
        color: #999999;
83
    }
78
    }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-1 / +1 lines)
Lines 383-389 Link Here
383
        [% END %]
383
        [% END %]
384
        [% IF ( duplinbatch ) %]<div class="dialog alert">
384
        [% IF ( duplinbatch ) %]<div class="dialog alert">
385
        <h4>Duplicate warning</h4>
385
        <h4>Duplicate warning</h4>
386
        <p>Some records have not been automatically added because they match an existing record in your catalog:<a href="/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=[% duplinbatch | uri %]&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]" title="Open in new window" target="_blank" class="popup" style="margin-left:10px">Display them</a></p>
386
        <p>Some records have not been automatically added because they match an existing record in your catalog:<a href="/cgi-bin/koha/acqui/addorderiso2709.pl?import_batch_id=[% duplinbatch | uri %]&amp;basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]" title="Open in new window" target="_blank" style="margin-left:10px"><i class="fa fa-window-restore"></i> Display them</a></p>
387
        </div>[% END %]
387
        </div>[% END %]
388
388
389
        <div id="acqui_basket_content">
389
        <div id="acqui_basket_content">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty_duplicate.tt (-4 / +4 lines)
Lines 16-25 Link Here
16
16
17
<div class="dialog alert">
17
<div class="dialog alert">
18
<h4>Duplicate warning</h4>
18
<h4>Duplicate warning</h4>
19
<p>You selected a record from an external source that matches an existing record in your catalog: [% IF ( BiblioDefaultViewmarc ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblionumber |url %]">
19
<p>You selected a record from an external source that matches an existing record in your catalog: [% IF ( BiblioDefaultViewmarc ) %]<a target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblionumber |url %]">
20
[% ELSIF ( BiblioDefaultViewlabeled_marc ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblionumber |url %]">
20
[% ELSIF ( BiblioDefaultViewlabeled_marc ) %]<a target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblionumber |url %]">
21
[% ELSIF ( BiblioDefaultViewisbd ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblionumber |url %]">
21
[% ELSIF ( BiblioDefaultViewisbd ) %]<a target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblionumber |url %]">
22
[% ELSE %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber |url %]">[% END %][% duplicatetitle | html %]</a></p>
22
[% ELSE %]<a target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber |url %]">[% END %] <i class="fa fa-window-restore"></i> [% duplicatetitle | html %]</a></p>
23
</div>
23
</div>
24
24
25
<div class="row">
25
<div class="row">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-1 / +1 lines)
Lines 475-481 Link Here
475
                    [% IF ( duplicatebiblionumber ) %]
475
                    [% IF ( duplicatebiblionumber ) %]
476
                        <div class="dialog alert">
476
                        <div class="dialog alert">
477
                            <h3>Duplicate record suspected</h3>
477
                            <h3>Duplicate record suspected</h3>
478
                            <p>Is this a duplicate of <a class="popup" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber | html %]" onclick="openWindow('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber | html %]&amp;popup=1', 'DuplicateBiblio','800','600'); return false;">[% duplicatetitle | html %]</a> ?</p>
478
                            <p>Is this a duplicate of <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber | uri %]" onclick="openWindow('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber | uri %]&amp;popup=1', 'DuplicateBiblio','800','600'); return false;">[% duplicatetitle | html %] <i class="fa fa-window-restore"></i></a> ?</p>
479
                            [% IF ( CAN_user_editcatalogue_edit_items ) %]
479
                            [% IF ( CAN_user_editcatalogue_edit_items ) %]
480
                                <form action="/cgi-bin/koha/cataloguing/additem.pl" method="get">
480
                                <form action="/cgi-bin/koha/cataloguing/additem.pl" method="get">
481
                                    <input type="hidden" name="biblionumber" value="[% duplicatebiblionumber | html %]" />
481
                                    <input type="hidden" name="biblionumber" value="[% duplicatebiblionumber | html %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 434-440 Link Here
434
                                                    [% FOREACH book IN options %]
434
                                                    [% FOREACH book IN options %]
435
                                                        <tr>
435
                                                        <tr>
436
                                                            <td>
436
                                                            <td>
437
                                                                <a class="popup" target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% book.biblionumber | html %]">[% book.title | html %]</a>
437
                                                                <a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% book.biblionumber | html %]">[% book.title | html %] <i class="fa fa-window-restore"></i></a>
438
                                                                [% book.barcode | html %]
438
                                                                [% book.barcode | html %]
439
                                                            </td>
439
                                                            </td>
440
                                                            <td>
440
                                                            <td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +1 lines)
Lines 66-72 Link Here
66
	[% IF ( check_member ) %]
66
	[% IF ( check_member ) %]
67
			<div class="dialog alert">
67
			<div class="dialog alert">
68
				<h3>Duplicate patron record?</h3>
68
				<h3>Duplicate patron record?</h3>
69
                <p><a class="popup" href="#" onclick="Dopop('moremember.pl?print=brief&amp;borrowernumber=[% check_member | html %]');return false;" >View existing record</a></p>
69
                <p><a href="#" onclick="Dopop('moremember.pl?print=brief&amp;borrowernumber=[% check_member | html %]');return false;" ><i class="fa fa-window-restore"></i> View existing record</a></p>
70
                <button id="duplicate" type="submit" class="new"><i class="fa fa-pencil"></i> It is a duplicate.
70
                <button id="duplicate" type="submit" class="new"><i class="fa fa-pencil"></i> It is a duplicate.
71
                Edit existing record</button>
71
                Edit existing record</button>
72
72
73
- 

Return to bug 23958