rel_3_0 moved to HEAD
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / acqui / acqui-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Acquisitions<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="menus.inc" -->
3 <!-- TMPL_INCLUDE NAME="menu-acqui.inc" -->
4
5 <h1>Acquisitions</h1>
6 <div id="acqui_acqui_home_order">
7     <fieldset>
8         <legend>Start, recieve, or modify any order</legend>
9     <!-- TMPL_IF name="nobudget" -->
10         <span class="problem">You must define a budget in parameters</span>
11         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
12             <p><label for="supplier">Supplier </label><input type="text" size="25" name="supplier" id="supplier" />
13             <input type="submit" value="Search" />
14             </p>
15         </form>
16     <!-- TMPL_ELSE -->
17         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
18             <p><label for="supplier">Supplier </label><input type="text" size="25" name="supplier" id="supplier" />
19             <input type="submit" value="Search" />
20             </p>
21         </form>
22     <!-- /TMPL_IF -->
23     </fieldset>
24 </div>
25 <div id="acqui_acqui_home_suggestions">
26     <fieldset>
27     <legend>Pending suggestions</legend>
28         <!-- TMPL_IF name="suggestion" -->
29             <!--TMPL_VAR NAME="suggestion" --> suggestions waiting <a href="/cgi-bin/koha/suggestion/acceptorreject.pl">Manage suggestions</a>
30         <!-- TMPL_ELSE -->
31             <p>No suggestions waiting</p>
32         <!-- /TMPL_IF -->
33     </fieldset>
34 </div>
35
36
37 <div id="acqui_acqui_home_currency">
38 <!-- TMPL_IF NAME="loop_currency" -->
39     <h2>Exchange rates</h2>
40     <form action="/cgi-bin/koha/acqui/currency.pl">
41     <table>
42         <tr>
43             <th>Currency</th>
44             <th>Rate</th>
45         </tr>
46         <!-- TMPL_LOOP name="loop_currency" -->
47             <tr>
48                 <td>
49                     <label for="<!-- TMPL_VAR name="currency" -->"><!-- TMPL_VAR name="currency" --></label>
50                 </td>
51                 <td>
52                         <input type="hidden" name="type" value="change" />
53                         <input type="text" size="10" id="<!-- TMPL_VAR name="currency" -->" name="<!-- TMPL_VAR name="currency" -->" value="<!-- TMPL_VAR name="rate" -->" />
54                 </td>
55             </tr>
56         <!-- /TMPL_LOOP -->
57     </table>
58     <input type="submit" value="Save Exchange Rate" />
59     </form>
60 <!-- TMPL_ELSE -->
61     <a href="/cgi-bin/koha/admin/currency.pl?op=add_form" class="button acquisition">
62     Add Currency
63     </a>
64 <!-- /TMPL_IF -->
65 </div>
66
67 <div id="acqui_acqui_home_budgets">
68     <!-- TMPL_IF name="nobudget" -->
69     <!-- TMPL_ELSE -->
70     <h2>Budgets and Bookfunds</h2>
71     <a href="/cgi-bin/koha/admin/aqbookfund.pl" title="[ Manage Bookfunds ]">[ Manage ]</a>
72     <table>
73         <tr>
74             <th>Budgets</th>
75             <th>Total</th>
76             <th>Spent</th>
77             <th>Comtd</th>
78             <th>Avail</th>
79         </tr>
80         <!-- TMPL_LOOP name="loop_budget" -->
81             <tr>
82                 <td><!-- TMPL_VAR name="bookfundname" --></td>
83                 <td><!-- TMPL_VAR name="budgetamount" --></td>
84                 <td><!-- TMPL_VAR name="spent" --></td>
85                 <td><!-- TMPL_VAR name="comtd" --></td>
86                 <td><!-- TMPL_VAR name="avail" --></td>
87             </tr>
88         <!-- /TMPL_LOOP -->
89         <tr>
90             <td>Total</td>
91             <td><!-- TMPL_VAR name="total" --></td>
92             <td><!-- TMPL_VAR name="totspent" --></td>
93             <td><!-- TMPL_VAR name="totcomtd" --></td>
94             <td><!-- TMPL_VAR name="totavail" --></td>
95         </tr>
96     </table>
97     <!-- /TMPL_IF -->
98 </div>
99 <div id="acqui_acqui_home_hints">
100     <p>Use your reload button [ctrl + r] to get the most recent figures.
101     Committed figures are approximate only, as exchange rates will affect the amount actually paid.</p>
102     
103     <h2>Help</h2>
104     <p>To start an acquisition, whether an order, local purchase or donation first search on the supplier, you will be asked to check their details, and enter your name which  will set up a "shopping basket" for you. (Why is this you might ask... well because we want to know that it's really you ordering things - not just your computer).</p>
105     <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 then add the item.  </p>
106     <p>To start a new shopping basket with a new supplier return to this page and just start a new supplier search.</p>
107     <p>To close off a shopping basket click on "view shopping baskets" or search above, and the click on "confirm basket".</p>
108 </div>
109
110 <script type="text/JavaScript">
111     document.findsupplier.supplier.focus();
112 </script>
113
114 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->