Lines 1-66
Link Here
|
1 |
[% USE raw %] |
|
|
2 |
[% USE Koha %] |
3 |
[% PROCESS 'i18n.inc' %] |
4 |
[% INCLUDE 'doc-head-open.inc' %] |
5 |
<title |
6 |
>[% FILTER collapse %] |
7 |
[% IF (type == "vendor") %] |
8 |
[% t("Change order vendor note") | html %] |
9 |
[% ELSE %] |
10 |
[% t("Change order internal note") | html %] |
11 |
[% END %] |
12 |
› [% t("Acquisition") | html %] › [% t("Koha") | html %] |
13 |
[% END %]</title |
14 |
> |
15 |
[% INCLUDE 'doc-head-close.inc' %] |
16 |
</head> |
17 |
|
18 |
<body id="acq_modordernotes" class="acq"> |
19 |
[% INCLUDE 'header.inc' %] |
20 |
|
21 |
[% WRAPPER 'sub-header.inc' %] |
22 |
[% WRAPPER breadcrumbs %] |
23 |
[% WRAPPER breadcrumb_item %] |
24 |
<a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a> |
25 |
[% END %] |
26 |
[% WRAPPER breadcrumb_item %] |
27 |
<a href="/cgi-bin/koha/acquisition/vendors/[% booksellerid | uri %]">[% booksellername | html %]</a> |
28 |
[% END %] |
29 |
[% WRAPPER breadcrumb_item %] |
30 |
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | uri %]">Basket [% basketname | html %] ([% basketno | html %])</a> |
31 |
[% END %] |
32 |
[% WRAPPER breadcrumb_item bc_active=1 %] |
33 |
[% IF (type == "vendor") %] |
34 |
<span>Change order's vendor note</span> |
35 |
[% ELSE %] |
36 |
<span>Change order's internal note</span> |
37 |
[% END %] |
38 |
[% END %] |
39 |
[% END #/ WRAPPER breadcrumbs %] |
40 |
[% END #/ WRAPPER sub-header.inc %] |
41 |
|
42 |
[% WRAPPER 'main-container.inc' %] |
43 |
|
44 |
[% IF (type == "vendor") %] |
45 |
<h1>Change order vendor note (order no. [% ordernumber | html %])</h1> |
46 |
[% ELSE %] |
47 |
<h1>Change order internal note (order no. [% ordernumber | html %])</h1> |
48 |
[% END %] |
49 |
<form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post"> |
50 |
[% INCLUDE 'csrf-token.inc' %] |
51 |
<fieldset class="brief"> |
52 |
<label for="ordernotes">Note:</label> |
53 |
<textarea id="ordernotes" name="ordernotes" rows="3" cols="30" class="focus">[% ordernotes | html %]</textarea> |
54 |
</fieldset> |
55 |
<input type="hidden" name="referrer" value="[% referrer | html %]" /> |
56 |
<input type="hidden" name="ordernumber" value="[% ordernumber | html %]" /> |
57 |
<input type="hidden" name="op" value="cud-save" /> |
58 |
<input type="hidden" name="type" value="[% type | html %]" /> |
59 |
<fieldset class="action"> |
60 |
<input type="submit" class="btn btn-primary" value="Save" /> |
61 |
<a class="cancel" href="[% referrer | url %]">Cancel</a> |
62 |
</fieldset> |
63 |
</form> |
64 |
[% END %] |
65 |
|
66 |
[% INCLUDE 'intranet-bottom.inc' %] |
67 |
- |