From: Bill Erickson Date: Wed, 3 Oct 2012 14:28:42 +0000 (-0400) Subject: Capture net/gross unit price X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e2d455218044e8dc46cffe8a2b966edccee35465;p=evergreen%2Fequinox.git Capture net/gross unit price Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/EDIReader.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/EDIReader.pm index bd3c8e1ffe..ef28eef13b 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/EDIReader.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/EDIReader.pm @@ -19,7 +19,8 @@ my %edi_li_fields = ( id => '^RFF\+LI:\S+\/(\S+)', index => '^LIN\+([^\+]+)', amount_billed => '^MOA\+203:(\d+)', - unit_price => '^PRI\+AAB:(\d+)', + net_unit_price => '^PRI\+AAA:(\d+)', + gross_unit_price=> '^PRI\+AAB:(\d+)', expected_date => '^DTM\+44:([^:]+)' );