[open-ils-commits] [GIT] Evergreen ILS branch master updated. 8eb30ca76a541dcf2f90d1e9492a2b73c104c0a4

Evergreen Git git at git.evergreen-ils.org
Tue Jan 15 14:20:52 EST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  8eb30ca76a541dcf2f90d1e9492a2b73c104c0a4 (commit)
      from  0f2a698496d13f07c78a34ae8c6a4b8cffe69253 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8eb30ca76a541dcf2f90d1e9492a2b73c104c0a4
Author: Bill Erickson <berick at esilibrary.com>
Date:   Tue Jan 15 14:08:03 2013 -0500

    2.3 Release notes update
    
    Merge the edireader and edi_order_template release notes into the 2.3
    release notes files.  Added a blurb to the Upgrade Notes regarding the
    lack of an automatic EDI template upgrade.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/docs/RELEASE_NOTES_2_3.txt b/docs/RELEASE_NOTES_2_3.txt
index edcf685..f6f2e5c 100644
--- a/docs/RELEASE_NOTES_2_3.txt
+++ b/docs/RELEASE_NOTES_2_3.txt
@@ -33,6 +33,26 @@ in general activity logs, add the following XML chunk to the bottom of
 </config>
 ----------------------------------------------------------------
 
+EDI Order Template Updates
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+An updated EDI order template is now part of the stock data.  To avoid 
+clobbering potentially functional EDI templates, no upgrade script was 
+included to automatically upgrade existing templates.  To upgrade to the
+newest template:
+
+[source, sql]
+----------------------------------------------------------------
+UPDATE action_trigger.event_definition SET template = 
+$$
+...
+$$ WHERE id = 23;
+
+/* 
+Use the template value for event definition 23 (line 7995) in 
+950.data.seed-values.sql as the contents (...) of the above command.
+*/
+----------------------------------------------------------------
+
 New features
 ------------
 
@@ -98,6 +118,52 @@ A new IDL reporter view that provides summary information for funds for
 reporting. The resulting table looks like a fund with four additional fields:
 allocated_total, spent_total, encumbrance_total, and combined_balance.
 
+EDI Fetching and Parsing Enhancements / Repairs
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+This release includes various improvements to how Evergreen processes
+vendor EDI responses, including order responses and invoices.  Changes
+include architectural improvements as well as new features.
+
+Bug Fixes
++++++++++
+
+* Improved order response handling for cancelled items.
+* Deleting fund debits (encumbrances) for cancelled items.
+* Extracting invoice date
+* Invoices include quantity and amount paid (in addition to billed) to reduce
+  manual staff data entry
+* Proper handling of previously-cancelled (e.g. back-ordered) invoiced items.
+
+Architectural improvements
+++++++++++++++++++++++++++
+
+For EDI parsing, the Ruby libraries, Ruby HTTP gateway, and Business::EDI Perl
+modules are no longer needed.  They have been replaced with a single Perl
+module which handles EDI parsing.
+
+This reduces the complexity of the fetching and parsing layer.  Though the Ruby
+libraries and Ruby HTTP gateway are still needed for outbound EDI (for now), 
+the Perl Business::EDI modules are no longer needed at all, so they are no 
+longer installed.
+
+EDI order template improvements (no SQL upgrade script!)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Improved template for EDI purchase orders.  This theoretically just
+works better where the old template worked.  Corrections made for
+interactions with ULS, Midwest Tape, Baker & Taylor, and Recorded Books
+especially.  GIR segments in the right place.
+
+And also the template is just more maintainable now.
+
+**THERE IS NO UPGRADE SCRIPT INCLUDED**.  Sites using EDI may not
+necessarily want to mess with what they already have working.
+
+If you want the changes, and maybe you do, especially if you're doing
+enriched ordering and/or ordering from the vendors listed above, you can
+extract the template changes easily enough yourself from the
+950.data.seed-values.sql file.  See Upgrade Notes above.
+
 OPAC
 ~~~~
 
diff --git a/docs/RELEASE_NOTES_NEXT/edi_order_template.txt b/docs/RELEASE_NOTES_NEXT/edi_order_template.txt
deleted file mode 100644
index 7b4a0d6..0000000
--- a/docs/RELEASE_NOTES_NEXT/edi_order_template.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-EDI order template improvements (no SQL upgrade script!)
-========================================================
-
-Improved template for EDI purchase orders.  This theoretically just
-works better where the old template worked.  Corrections made for
-interactions with ULS, Midwest Tape, Baker & Taylor, and Recorded Books
-especially.  GIR segments in the right place.
-
-And also the template is just more maintainable now.
-
-**THERE IS NO UPGRADE SCRIPT INCLUDED**.  Sites using EDI may not
-necessarily want to mess with what they already have working.
-
-If you want the changes, and maybe you do, especially if you're doing
-enriched ordering and/or ordering from the vendors listed above, you can
-extract the template changes easily enough yourself from the
-950.data.seed-values.sql file.
-
diff --git a/docs/RELEASE_NOTES_NEXT/edireader.txt b/docs/RELEASE_NOTES_NEXT/edireader.txt
deleted file mode 100644
index 7354200..0000000
--- a/docs/RELEASE_NOTES_NEXT/edireader.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-EDI Fetching and Parsing Enhancements / Repairs
-===============================================
-This release includes various improvements to how Evergreen processes
-vendor EDI responses, including order responses and invoices.  Changes
-include architectural improvements as well as new features.
-
-Bug Fixes
----------
-
-* Improved order response handling for cancelled items.
-* Deleting fund debits (encumbrances) for cancelled items.
-* Extracting invoice date
-* Invoices include quantity and amount paid (in addition to billed) to reduce
-  manual staff data entry
-* Proper handling of previously-cancelled (e.g. back-ordered) invoiced items.
-
-Architectural improvements
---------------------------
-
-For EDI parsing, the Ruby libraries, Ruby HTTP gateway, and Business::EDI Perl
-modules are no longer needed.  They have been replaced with a single Perl
-module which handles EDI parsing.
-
-This reduces the complexity of the fetching and parsing layer.  Though the Ruby
-libraries and Ruby HTTP gateway are still needed for outbound EDI (for now), 
-the Perl Business::EDI modules are no longer needed at all, so they are no 
-longer installed.
-

-----------------------------------------------------------------------

Summary of changes:
 docs/RELEASE_NOTES_2_3.txt                     |   66 ++++++++++++++++++++++++
 docs/RELEASE_NOTES_NEXT/edi_order_template.txt |   18 -------
 docs/RELEASE_NOTES_NEXT/edireader.txt          |   28 ----------
 3 files changed, 66 insertions(+), 46 deletions(-)
 delete mode 100644 docs/RELEASE_NOTES_NEXT/edi_order_template.txt
 delete mode 100644 docs/RELEASE_NOTES_NEXT/edireader.txt


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list