From ac5538062c1b7f1aa8f30e8846d2fef1ec642b94 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 16 Apr 2013 09:37:24 -0400 Subject: [PATCH] Bug 10065 - Style invoice edit form according to standard structure Content-Type: text/plain; charset="utf-8" The structure of the invoice edit form does not match that of similar forms in the staff client. This patch alters it to be consistent. To test you must also have the patch for Bug 10046 applied. Go to Acquisitions -> Invoices and search for invoices. Click an invoice to view/edit details. The form displaying fields for shipment date, billing date, etc. should look correct and work correctly. --- .../intranet-tmpl/prog/en/modules/acqui/invoice.tt | 82 ++++++++++---------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt index 97d9146..108e771 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt @@ -34,54 +34,56 @@
[% IF ( modified ) %] -
+

Invoice has been modified

[% END %]

Invoice: [% invoicenumber %]

Vendor: [% suppliername %]

-
-
- - -

- - -

- - - - + +
  • +
  • + +
  • +
  • +
  • +
  • + + [% IF ( invoiceclosedate ) %] +
  • Status: + Closed on [% invoiceclosedate | $KohaDates %].
  • + +
  • + [% ELSE %] +
  • Status: + Open.
  • + +
  • +
  • [% END %] - -

    - - [% IF ( invoiceclosedate ) %] - Closed on [% invoiceclosedate | $KohaDates %]. -

    - - - [% ELSE %] - Open. -

    - - - [% END %] + -
    - -
    +
    +
    +

    @@ -164,7 +166,7 @@ [% ELSE %] -

    No orders yet

    +

    No orders yet

    [% END %]
    -- 1.7.9.5