692ee0e9da
When you are on parcel.pl or basket.pl you can now add or edit a note for each order. To test: Create orders with and without note. Edit/Add the note on basket.pl page Close the basket. Check you can add/edit the order note on parcel.pl page + From Owen: Correcting markup issues with modordernotes.pl: - Adding "rows" and "cols" attributes to <textarea> (required) - Converting cancel button to link to stay consistent with other pages - Changing page layout to fixed & centered (not sidebar needed) - Expanding information in breadcrumbs to match information on basket.pl Changing markup around note add and edit links: Moving output of order note to the end of the table cell, putting it in its own paragraph, and adding a "Note:" label Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
31 lines
1.4 KiB
Text
31 lines
1.4 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Acquisition › Change order notes</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body>
|
|
[% INCLUDE 'header.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a> › <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername|html %]</a> › <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Basket [% basketname|html %] ([% basketno %])</a> › Change order notes</div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<h1>Change order notes (order no. [% ordernumber %])</h1>
|
|
<form action="/cgi-bin/koha/acqui/modordernotes.pl" method="post">
|
|
<fieldset class="brief">
|
|
<label for="ordernotes">Notes:</label>
|
|
<textarea id="ordernotes" name="ordernotes" rows="3" cols="30">[% ordernotes %]</textarea>
|
|
</fieldset>
|
|
<input type="hidden" name="referrer" value="[% referrer %]" />
|
|
<input type="hidden" name="ordernumber" value="[% ordernumber %]" />
|
|
<input type="hidden" name="op" value="save" />
|
|
<fieldset class="action">
|
|
<input type="submit" value="Save" />
|
|
<a class="cancel" href="[% referrer %]">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|