From 33f8001652470fbb407414453493cd78656f363e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 24 Sep 2007 15:16:45 -0500 Subject: [PATCH] Cleaning up acquisitions, adding breadcrumbs, adding resident search. Other minor corrections. Signed-off-by: Chris Cormack --- acqui/neworderempty.pl | 2 + .../prog/en/css/staff-global.css | 2 +- .../prog/en/includes/acquisitions-menu.inc | 7 + .../prog/en/includes/circ-search.inc | 8 + .../en/includes/suggestions-add-search.inc | 35 ++ .../en/lib/jquery/plugins/jquery.tabs.css | 1 + .../prog/en/modules/acqui/acqui-home.tmpl | 28 +- .../prog/en/modules/acqui/basket.tmpl | 39 ++- .../prog/en/modules/acqui/bookfund.tmpl | 136 +++---- .../prog/en/modules/acqui/booksellers.tmpl | 26 +- .../prog/en/modules/acqui/histsearch.tmpl | 30 +- .../prog/en/modules/acqui/lateorders.tmpl | 42 ++- .../prog/en/modules/acqui/neworderbiblio.tmpl | 17 +- .../prog/en/modules/acqui/neworderempty.tmpl | 146 ++++---- .../en/modules/acqui/newordersuggestion.tmpl | 32 +- .../prog/en/modules/acqui/orderreceive.tmpl | 53 ++- .../prog/en/modules/acqui/parcel.tmpl | 28 +- .../prog/en/modules/acqui/parcels.tmpl | 71 ++-- .../prog/en/modules/acqui/spent.tmpl | 137 +++----- .../prog/en/modules/acqui/supplier.tmpl | 331 +++++++----------- .../prog/en/modules/catalogue/detail.tmpl | 2 +- .../prog/en/modules/circ/branchtransfers.tmpl | 27 +- 22 files changed, 521 insertions(+), 679 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-menu.inc create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc diff --git a/acqui/neworderempty.pl b/acqui/neworderempty.pl index d1a21a583d..5d1321ad9f 100755 --- a/acqui/neworderempty.pl +++ b/acqui/neworderempty.pl @@ -159,6 +159,7 @@ foreach my $thisitemtype (sort keys %$itemtypes) { my $CGIitemtype = CGI::scrolling_list( -name => 'format', + -id => 'format', -values => \@itemtypesloop, -default => $data->{'itemtype'}, -labels => \%itemtypesloop, @@ -202,6 +203,7 @@ for ( my $i = 0 ; $i < $count2 ; $i++ ) { } my $CGIbookfund = CGI::scrolling_list( -name => 'bookfund', + -id => 'bookfund', -values => \@select_bookfund, -default => $data->{'bookfundid'}, -labels => \%select_bookfunds, diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css index 3385518854..47c9a2bc8c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -258,7 +258,7 @@ div#header_search ul.link-tabs li.off a { padding : 0.1em .5em .2em .5em; } -div#circ_search,div#catalog_search,div#patron_search,div#subscription_search,div#addbooks_search,div#notices_search,div#printer_search { +div#circ_search,div#catalog_search,div#patron_search,div#subscription_search,div#addbooks_search,div#notices_search,div#printer_search,div#checkin_search,div#suggestions_search { border : 0; border-bottom : 1px solid #FF9900; padding : 0 0 .2em 0; diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-menu.inc new file mode 100644 index 0000000000..5668ee9f59 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-menu.inc @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc index 76629a5d75..c4da0b0a7e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc @@ -10,6 +10,13 @@ + diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc new file mode 100644 index 0000000000..d6fcfa446a --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc @@ -0,0 +1,35 @@ + + + \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.tabs.css b/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.tabs.css index 0ffac06d5b..eb721e6f47 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.tabs.css +++ b/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.tabs.css @@ -49,6 +49,7 @@ border-bottom: 1px solid #FF9900; border-left: 1px solid #FFCC66; font-weight : bold; + text-align : center; text-decoration : none; top : -1px; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tmpl index fad281bb42..8c07b3abda 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tmpl @@ -4,19 +4,20 @@ - + +
-
+

Acquisitions

- Start, recieve, or modify any order + Start, receive, or modify any order You must define a budget in parameters
@@ -26,7 +27,7 @@
-

+

@@ -94,22 +95,22 @@ - "> - &start=&end="> - &start=&end="> + "> + &start=&end="> + &start=&end="> - + - Total + Total - +
@@ -126,7 +127,8 @@
+
+
- - - +
+ \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl index f9c42fed13..eb418b8ee0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl @@ -1,41 +1,45 @@ -Koha › <!-- TMPL_UNLESS name="basketno" -->New <!-- /TMPL_UNLESS -->Shopping Basket (<!-- TMPL_VAR NAME="basketno" -->) for <!-- TMPL_VAR NAME="name" --> +Koha › Acquisitions › <!-- TMPL_UNLESS name="basketno" -->New <!-- /TMPL_UNLESS -->Shopping Basket <!-- TMPL_IF NAME="basketno" -->(<!-- TMPL_VAR NAME="basketno" -->)<!-- /TMPL_IF --> for <!-- TMPL_VAR NAME="name" --> - + + +
-
+

New Shopping Basket for ">

-
+ +

Basket Details

-

 

-

 

-

 

-

Supplier Id  

-

 

-

+

Basket number

+

Managed by

+

Open on

+

For Supplier Id

+

Invoice number

+

Closed On:

Close this basket

-
+

Order Details

@@ -49,7 +53,7 @@ Est. Qty. Total - + &order=aqorderbreakdown.bookfundid,biblioitems.publishercode">Fund @@ -85,7 +89,7 @@ - + @@ -142,7 +146,7 @@
" /> " /> -
+
+ +
- - \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/bookfund.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/bookfund.tmpl index d9d748e60b..404c1b582f 100755 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/bookfund.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/bookfund.tmpl @@ -1,120 +1,64 @@ -Koha › Acquisitions +Koha › Acquisitions › Book Funds - + + +
-
- - - - - - - - - - - + + +
- Title - - Order - - Itemtype - - Left on Order - - Estimated cost per unit - - Budget Date - - Subtotal -
+ + + + + + + + - + - + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + +
TitleOrderItemtypeLeft on OrderEstimated cost per unitBudget DateSubtotal
- - - &booksellerid=&basket=> - - - - - - - - - - -
&booksellerid=&basket=">
- Total - - - - - - - - - - - - -
Total     
- -
-
-
-
-
- - - - - - - - - - - - - - - - +
+
+
+ +
+
+ \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tmpl index 07ce985984..d688029789 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tmpl @@ -4,13 +4,15 @@ - + + +
-
+

You searched on supplier , results found

@@ -24,19 +26,16 @@ - - + ">Add order Inactive - - ">Receive order + ">Receive order "> - - +
@@ -49,13 +48,11 @@ - - -
Basket
- + - + closed on ">View @@ -82,7 +79,8 @@ +
+ +
- - \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tmpl index f9e0143047..f412d57361 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tmpl @@ -1,26 +1,20 @@ -Koha › Acquisitions order search +Koha › Acquisitions › Order search - - - - - - - - - + - + + +
-
+
@@ -44,7 +38,7 @@
" /> " /> " />From /lib/calendar/cal.gif" border="0" hspace="0" vspace="0" id="openCalendarFrom" style="cursor: pointer;" alt="calendar" /> + /lib/calendar/cal.gif" border="0" id="openCalendarFrom" style="cursor: pointer;" alt="Show Calendar" /> " /> - To /lib/calendar/cal.gif" id="openCalendarTo" style="cursor: pointer;" alt="calendar" /> + /lib/calendar/cal.gif" id="openCalendarTo" style="cursor: pointer;" alt="Show Calendar" /> " type="text" /> - + + + + +
-
+
@@ -31,134 +37,90 @@ function confirm_deletion() {
Company details -

- - " /> -

-

- - -

-

- - -

-

- - " /> -

-

- - " /> -

-

- - " /> -

+

+ " />

+

+

+

+

+

+ " />

+

+ " />

+

+ " />

Contact details -

- - " /> -

-

- - " /> -

-

- - " /> -

-

- - " /> -

-

- - " /> -

-

- - " /> -

-

- - -

+

+ " />

+

+ " />

+

+ " />

+

+ " />

+

+ " />

+

+ " />

+

+

Ordering information -

- +

Supplier is - Active - Inactive + + - Active - Inactive - -

-

- - -

-

- - + +

+

+

+

+ -

-

- -

+

+ -

-

- +

+

GST Registered - Yes - No + + - Yes - No - -

+ + +

-

- +

Ordering prices - include GST - don't include GST + + - include GST - don't include GST - -

+ + +

-

- +

Invoice prices - include GST - don't include GST + + - include GST - don't include GST - -

-

- - " /> % -

-

- - -

+ + +

+

+ " /> %

+

+

@@ -171,112 +133,69 @@ function confirm_deletion() {
  • ">Receive Parcel
  • -
    - Company details -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -
    -
    - Contact details -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    -

    - -   -

    +
    +

    Company details

    +

    Company Name +

    +

    Postal Address +

    +

    Physical Address +

    +

    Phone +

    +

    Fax +

    +

    Website +

    +
    +
    +

    Contact details

    +

    Contact name +

    +

    Position +

    +

    Phone +

    +

    Alternative phone +

    +

    Fax +

    +

    E-mail +

    +

    Notes +

    -
    -
    - Ordering informations -

    - +

    +
    +

    Ordering information

    +

    Supplier is Active Inactive - -

    -

    - -   -

    -

    -   -

    -

    -   -

    -

    - - YesNo -

    -

    - - YesNo -

    -

    - - YesNo -

    -

    - - %  -

    -

    - -   -

    - +

    +

    Publishers and Imprints +

    +

    List Prices are

    +

    Invoice Prices are

    +

    GST Registered + YesNo

    +

    List Item Price Includes GST + YesNo

    +

    Invoice Item Price Includes GST + YesNo

    +

    Discount + %

    +

    Notes +

    +
    +
    +
    - - - +
    + \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl index 1f96b33bf4..02a8d6b5fc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl @@ -232,7 +232,7 @@ function confirm_deletion(count) {
    - +
    \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tmpl index e76fc7fbe3..a759454c71 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tmpl @@ -15,8 +15,6 @@
    -

    Circulation › Transfers

    -

    Reserve Found

    @@ -92,36 +90,33 @@
    - - - - - -
    Messages
    + +

    Messages

    +
      - Reserve Cancelled
      +
    • Reserve Cancelled
    • - Item should now be waiting at library:
      +
    • Item should now be waiting at library:
    • - No Item with barcode: +
    • No Item with barcode:
    • - Please return item to home library: +
    • Please return item to home library:
    • - Item is already at destination library. +
    • Item is already at destination library.
    • - Item was on loan to "> - and has been returned. +
    • Item was on loan to "> + and has been returned.
    • -
    +
    -- 2.20.1
    Transfer