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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tmpl (-73 / +86 lines)
Lines 34-39 function popup(subscriptionid) { Link Here
34
    newin=window.open("subscription-renew.pl?mode=popup&subscriptionid="+subscriptionid,'popup','width=590,height=440,toolbar=false,scrollbars=yes');
34
    newin=window.open("subscription-renew.pl?mode=popup&subscriptionid="+subscriptionid,'popup','width=590,height=440,toolbar=false,scrollbars=yes');
35
}
35
}
36
36
37
$(document).ready(function() {
38
  $("#subscription_description").tabs();
39
});
37
-->
40
-->
38
</script>
41
</script>
39
</head>
42
</head>
Lines 75-80 function popup(subscriptionid) { Link Here
75
	</div>
78
	</div>
76
	<!-- /TMPL_IF --> <!-- NEEDSCONFIRMATION -->
79
	<!-- /TMPL_IF --> <!-- NEEDSCONFIRMATION -->
77
80
81
<div id="subscription_description" class="toptabs">
82
<ul class="ui-tabs-nav">
83
    <li class="ui-tabs-selected"><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->#subscription_issues">Issues</a></li>
84
    <li><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->#subscription_summary">Summary</a></li>
85
    <li><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->#subscription_info">Information</a></li>
86
    <li><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=<!-- TMPL_VAR NAME="subscriptionid" -->#subscription_planning">Planning</a></li>
87
</ul>
88
89
    <div id="subscription_issues">
90
        <h2>Serial issues</h2>
91
        <table>
92
        <tr>
93
            <th>Issue number</th>
94
            <th>Planned date</th>
95
            <th>Published date</th>
96
            <th>Status</th>
97
        </tr>
98
        <!-- TMPL_LOOP name="serialslist" -->
99
            <tr>
100
                <td>
101
                    <!-- TMPL_VAR name="serialseq" -->
102
                </td>
103
                <td>
104
                    <!-- TMPL_VAR name="planneddate" -->
105
                </td>
106
                <td>
107
                    <!-- TMPL_VAR name="publisheddate" -->
108
                </td>
109
                <td>
110
                        <!--TMPL_IF name="status1" -->
111
                            Expected
112
                        <!-- /TMPL_IF -->
113
                        <!--TMPL_IF name="status2" -->
114
                            Arrived
115
                        <!-- /TMPL_IF -->
116
                        <!--TMPL_IF name="status3" -->
117
                            Late
118
                        <!-- /TMPL_IF -->
119
                        <!--TMPL_IF name="status4" -->
120
                            Missing
121
                        <!-- /TMPL_IF -->
122
                        <!--TMPL_IF name="status5" -->
123
                            Not Available
124
                        <!-- /TMPL_IF -->
125
                        <!-- TMPL_IF name="status7" -->
126
                            Claimed
127
                             <!-- TMPL_IF name="claimdate" -->
128
                             <!-- TMPL_VAR NAME="claimdate" -->
129
                             <!-- /TMPL_IF -->
130
                        <!-- /TMPL_IF -->
131
                </td>
132
            </tr>
133
        <!-- /TMPL_LOOP -->
134
        </table>
135
    </div>
136
137
    <div id="subscription_summary">
138
        <h2>Subscription summary</h2>
139
        <table cellpadding="0" cellspacing="0">
140
            <tr>
141
                <td><label>Start date</label></td>
142
                <td> <!-- TMPL_VAR name="startdate" --> </td>
143
            </tr>
144
            <tr>
145
                <td><label>End date</label></td>
146
                <td> <!-- TMPL_VAR name="enddate" --></td>
147
            </tr>
148
            <tr>
149
                <td><label>History start date</label></td>
150
                <td> <!-- TMPL_VAR name="histstartdate" --> </td>
151
            </tr>
152
            <tr>
153
                <td><label>History end date</label></td>
154
                <td> <!-- TMPL_VAR name="histenddate" --></td>
155
            </tr>
156
            <tr><td><label>Received issues</label></td><td><!-- TMPL_VAR name="recievedlist" --></td></tr>
157
            <tr><td><label>Missing issues</label></td><td><!-- TMPL_VAR name="missinglist" --></td></tr>
158
            <tr><td><label>Nonpublic note</label></td><td><!-- TMPL_VAR name="librariannote" --></td></tr>
159
            <tr><td><label>Public note</label></td><td><!-- TMPL_VAR name="opacnote" --></td></tr>
160
        </table>
161
    </div>
162
163
</div>
78
 
164
 
79
    <div id="subscription_info">
165
    <div id="subscription_info">
80
        <h2>Subscription information</h2>
166
        <h2>Subscription information</h2>
Lines 285-362 function popup(subscriptionid) { Link Here
285
                </tr>
371
                </tr>
286
            </table>
372
            </table>
287
    </div>
373
    </div>
288
    <div id="subscription_issues">
289
        <h2>Serial issues</h2>
290
        <table>
291
        <tr>
292
            <th>Issue number</th>
293
            <th>Planned date</th>
294
            <th>Published date</th>
295
            <th>Status</th>
296
        </tr>
297
        <!-- TMPL_LOOP name="serialslist" -->
298
            <tr>
299
                <td>
300
                    <!-- TMPL_VAR name="serialseq" -->
301
                </td>
302
                <td>
303
                    <!-- TMPL_VAR name="planneddate" -->
304
                </td>
305
                <td>
306
                    <!-- TMPL_VAR name="publisheddate" -->
307
                </td>
308
                <td>
309
                        <!--TMPL_IF name="status1" -->
310
                            Expected
311
                        <!-- /TMPL_IF -->
312
                        <!--TMPL_IF name="status2" -->
313
                            Arrived
314
                        <!-- /TMPL_IF -->
315
                        <!--TMPL_IF name="status3" -->
316
                            Late
317
                        <!-- /TMPL_IF -->
318
                        <!--TMPL_IF name="status4" -->
319
                            Missing
320
                        <!-- /TMPL_IF -->
321
                        <!--TMPL_IF name="status5" -->
322
                            Not Available
323
                        <!-- /TMPL_IF -->
324
                        <!-- TMPL_IF name="status7" -->
325
                            Claimed
326
                             <!-- TMPL_IF name="claimdate" -->
327
                             <!-- TMPL_VAR NAME="claimdate" -->
328
                             <!-- /TMPL_IF -->
329
                        <!-- /TMPL_IF -->
330
                </td>
331
            </tr>
332
        <!-- /TMPL_LOOP -->
333
        </table>
334
    </div>
335
    <div id="subscription_summary">
336
        <h2>Subscription summary</h2>
337
        <table cellpadding="0" cellspacing="0">
338
            <tr>
339
                <td><label>Start date</label></td>
340
                <td> <!-- TMPL_VAR name="startdate" --> </td>
341
            </tr>
342
            <tr>
343
                <td><label>End date</label></td>
344
                <td> <!-- TMPL_VAR name="enddate" --></td>
345
            </tr>
346
            <tr>
347
                <td><label>History start date</label></td>
348
                <td> <!-- TMPL_VAR name="histstartdate" --> </td>
349
            </tr>
350
            <tr>
351
                <td><label>History end date</label></td>
352
                <td> <!-- TMPL_VAR name="histenddate" --></td>
353
            </tr>
354
            <tr><td><label>Received issues</label></td><td><!-- TMPL_VAR name="recievedlist" --></td></tr>
355
            <tr><td><label>Missing issues</label></td><td><!-- TMPL_VAR name="missinglist" --></td></tr>
356
            <tr><td><label>Nonpublic note</label></td><td><!-- TMPL_VAR name="librariannote" --></td></tr>
357
            <tr><td><label>Public note</label></td><td><!-- TMPL_VAR name="opacnote" --></td></tr>
358
        </table>
359
    </div>
360
374
361
</div>
375
</div>
362
</div>
376
</div>
363
- 

Return to bug 4223