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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt (-2 / +3 lines)
Lines 1-4 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE ItemTypes %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Acquisitions &rsaquo; Ordered</title>
4
<title>Koha &rsaquo; Acquisitions &rsaquo; Ordered</title>
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
Lines 59-65 Link Here
59
	</td>
60
	</td>
60
	<td class="cell">
61
	<td class="cell">
61
        [% IF ( CAN_user_acquisition_order_manage ) %]
62
        [% IF ( CAN_user_acquisition_order_manage ) %]
62
            <a href="/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber %]&amp;booksellerid=[% order.booksellerid %]&amp;basketno=[% order.basketno %]">[% order.ordernumber %]</a>
63
            <a href="/cgi-bin/koha/acqui/orderreceive.pl?ordernumber=[% order.ordernumber %]&amp;biblio=[% order.biblionumber %]&amp;invoiceid=[% order.invoiceid %]">[% order.ordernumber %]</a>
63
        [% ELSE %]
64
        [% ELSE %]
64
            [% order.ordernumber %]
65
            [% order.ordernumber %]
65
        [% END %]
66
        [% END %]
Lines 68-74 Link Here
68
	    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid %]">[% order.booksellerid %]</a>
69
	    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid %]">[% order.booksellerid %]</a>
69
	</td>
70
	</td>
70
	<td class="cell">
71
	<td class="cell">
71
	    [% order.itype %]
72
        [% ItemTypes.GetDescription( order.itype ) %]
72
	</td>
73
	</td>
73
	<td class="cell">
74
	<td class="cell">
74
	    [% order.left %]
75
	    [% order.left %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt (-3 / +3 lines)
Lines 1-4 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE ItemTypes %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Acquisitions &rsaquo; Spent</title>
4
<title>Koha &rsaquo; Acquisitions &rsaquo; Spent</title>
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
Lines 62-68 Link Here
62
	    [% order.title %]
63
	    [% order.title %]
63
	</td>
64
	</td>
64
	<td class="cell">
65
	<td class="cell">
65
            <a href="/cgi-bin/koha/acqui/orderreceive.pl?ordernumber=[% order.ordernumber %]&amp;biblio=[% order.biblionumber %]&amp;invoiceid=[% order.invoiceid %]">[% order.ordernumber %]</a>
66
        [% order.ordernumber %]
66
	</td>
67
	</td>
67
	<td class="cell">
68
	<td class="cell">
68
	    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid %]">[% order.booksellerid %]</a>
69
	    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid %]">[% order.booksellerid %]</a>
Lines 71-77 Link Here
71
	    <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid %]">[% order.invoicenumber %]</a>
72
	    <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid %]">[% order.invoicenumber %]</a>
72
	</td>
73
	</td>
73
	<td class="cell">
74
	<td class="cell">
74
	    [% order.itype %]
75
        [% ItemTypes.GetDescription( order.itype ) %]
75
	</td>
76
	</td>
76
	<td class="cell">
77
	<td class="cell">
77
	    [% order.quantityreceived %]
78
	    [% order.quantityreceived %]
78
- 

Return to bug 10090