nomenclature cleanup for acquisitions:
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / acqui-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Acquisitions</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="acquisitions-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; </div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b">
16
17 <!-- TMPL_INCLUDE NAME="acquisitions-toolbar.inc" -->
18
19 <h1>Acquisitions</h1>
20 <div class="yui-g">
21 <div class="yui-u first">
22 <div id="acqui_acqui_home_order">
23     <fieldset>
24         <legend>Start, receive, or modify any order</legend>
25     <!-- TMPL_IF name="nobudget" -->
26                 <!-- TMPL_IF NAME="CAN_user_parameters" -->
27         <span class="problem">You must <a href="/cgi-bin/koha/admin/aqbookfund.pl">define a budget</a> in Administration</span>
28                 <!-- TMPL_ELSE -->
29                 <span class="problem">Your administrator must define a budget in Administration</span>
30                 <!-- /TMPL_IF -->
31         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
32             <p><label for="supplierpage">Vendor </label><input type="text" size="25" name="supplier" id="supplierpage" class="focus" />
33             <input type="submit" value="Search" />
34             </p>
35         </form>
36     <!-- TMPL_ELSE -->
37         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
38             <p><label for="supplierpage">Vendor: </label><input type="text" size="25" name="supplier" id="supplierpage" class="focus" />
39             <input type="submit" value="Search" />
40             </p>
41         </form>
42                 
43     <!-- /TMPL_IF -->
44     </fieldset>
45 </div>
46 <div id="acqui_acqui_home_suggestions">
47     <fieldset>
48     <legend>Pending suggestions</legend>
49         <!-- TMPL_IF name="suggestion" -->
50             <!--TMPL_VAR NAME="suggestion" --> suggestions waiting <a href="/cgi-bin/koha/suggestion/acceptorreject.pl">Manage suggestions</a>
51         <!-- TMPL_ELSE -->
52             <p>No suggestions waiting</p>
53         <!-- /TMPL_IF -->
54     </fieldset>
55 </div>
56 </div>
57
58 <div class="yui-u"><div id="acqui_acqui_home_currency">
59 <!-- TMPL_IF NAME="loop_currency" -->
60     <h2>Exchange rates</h2>
61     <form action="/cgi-bin/koha/acqui/currency.pl">
62     <table>
63         <tr>
64             <th>Currency</th>
65             <th>Rate</th>
66                         <th>&nbsp;</th>
67         </tr>
68         <!-- TMPL_LOOP name="loop_currency" -->
69             <tr>
70                 <td>
71                     <label for="<!-- TMPL_VAR name="currency" -->"><!-- TMPL_VAR name="currency" --></label>
72                 </td>
73                 <td>
74                         <input type="hidden" name="type" value="change" />
75                         <input type="text" size="10" id="<!-- TMPL_VAR name="currency" -->" name="<!-- TMPL_VAR name="currency" -->" value="<!-- TMPL_VAR name="rate" -->" />
76                 </td>
77                                 <td><input type="submit" value="Save" /></td>
78             </tr>
79         <!-- /TMPL_LOOP -->
80     </table>
81     </form>
82 <!-- TMPL_ELSE -->
83     <a href="/cgi-bin/koha/admin/currency.pl?op=add_form" class="button">
84     Add Currency
85     </a>
86 <!-- /TMPL_IF -->
87 </div>
88
89     <!-- TMPL_IF name="nobudget" -->
90     <!-- TMPL_ELSE -->
91     <h2>Budgets and funds</h2>
92     <a href="/cgi-bin/koha/admin/aqbookfund.pl" title="[ Manage funds ]">[ Manage ]</a>
93     <div id="BudgetsAndFunds">
94     <table id="accounts">
95         <thead>
96         <tr>
97             <th>Budgets</th>
98             <th>Total</th>
99             <th>Spent</th>
100             <th>Comtd</th>
101             <th>Avail</th>
102         </tr>
103         </thead>
104         <tbody>
105         <!-- TMPL_LOOP name="loop_budget" -->
106             <tr>
107                 <td><!-- TMPL_VAR name="bookfundname" --></td>
108                 <td><a href="/cgi-bin/koha/admin/aqbudget.pl?op=add_form&amp;aqbudgetid=<!--TMPL_VAR NAME="aqbudgetid"-->"><!-- TMPL_VAR name="budgetamount" --></a></td>
109                 <td><a href="/cgi-bin/koha/acqui/spent.pl?bookfund=<!--TMPL_VAR NAME="bookfundid"-->&amp;start=<!--TMPL_VAR NAME="sdate"-->&amp;end=<!-- TMPL_VAR NAME="edate"-->"><!-- TMPL_VAR name="spent" --></a></td>
110                 <td><a href="/cgi-bin/koha/acqui/bookfund.pl?bookfund=<!--TMPL_VAR NAME="bookfundid"-->&amp;start=<!--TMPL_VAR NAME="sdate"-->&amp;end=<!-- TMPL_VAR NAME="edate"-->"><!-- TMPL_VAR name="comtd" --></a></td>
111                 <td><!-- TMPL_VAR name="avail" --></td>
112             </tr>
113         <!-- /TMPL_LOOP -->
114         </tbody>
115         <tfoot>
116         <tr>
117             <th>Total</th>
118             <th><!-- TMPL_VAR name="total" --></th>
119             <th><!-- TMPL_VAR name="totspent" --></th>
120             <th><!-- TMPL_VAR name="totcomtd" --></th>
121             <th><!-- TMPL_VAR name="totavail" --></th>
122         </tr>
123         </tfoot>
124     </table>
125     </div>
126     <p>Use your reload button [ctrl + r] to get the most recent figures.
127     Committed figures are approximate only, as exchange rates will affect the amount actually paid.</p>
128     <!-- /TMPL_IF --></div>
129     
130 </div>
131
132 <div id="acqui_acqui_home_hints">
133     <h2>Help</h2>
134     <p>To begin an order, local purchase or donation, search for the vendor or benefactor, and then you can create a new Basket.</p>
135     <p>A Basket is a collection of orders.</p>
136     <p>To order an item you need to establish whether a biblio already exists for it, and either add an item, or set up a new biblio and then add the item.</p>
137 </div>
138
139 </div>
140 </div>
141 <div class="yui-b">
142 <!-- TMPL_INCLUDE NAME="acquisitions-menu.inc" -->
143 </div>
144 </div>
145 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->