[open-ils-commits] r18576 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq (gmc)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Nov 2 09:05:08 EDT 2010


Author: gmc
Date: 2010-11-02 09:05:07 -0400 (Tue, 02 Nov 2010)
New Revision: 18576

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/EDI.pm
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Financials.pm
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Invoice.pm
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Lineitem.pm
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Provider.pm
Log:
enable authoritative versions of various acq retrieval functions

Signed-off-by: Galen Charlton <gmc at esilibrary.com>


Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/EDI.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/EDI.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/EDI.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -62,6 +62,7 @@
 __PACKAGE__->register_method(
 	method    => 'retrieve',
 	api_name  => 'open-ils.acq.edi.retrieve',
+    authoritative => 1,
 	signature => {
         desc   => 'Fetch incoming message(s) from EDI accounts.  ' .
                   'Optional arguments to restrict to one vendor and/or a max number of messages.  ' .

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Financials.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Financials.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Financials.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -67,6 +67,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_funding_source',
 	api_name	=> 'open-ils.acq.funding_source.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a new funding_source',
         params => [
@@ -237,6 +238,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_fund',
 	api_name	=> 'open-ils.acq.fund.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a new fund',
         params => [
@@ -345,6 +347,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_fund_summary',
 	api_name	=> 'open-ils.acq.fund.summary.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Returns a summary of credits/debits/encumbrances for a fund',
         params => [
@@ -520,6 +523,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_fund_alloc',
 	api_name	=> 'open-ils.acq.fund_allocation.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a new fund_allocation',
         params => [
@@ -550,6 +554,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_funding_source_allocations',
 	api_name	=> 'open-ils.acq.funding_source.allocations.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a new fund_allocation',
         params => [

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Invoice.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Invoice.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Invoice.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -272,6 +272,7 @@
 __PACKAGE__->register_method(
 	method => 'build_invoice_api',
 	api_name	=> 'open-ils.acq.invoice.retrieve',
+    authoritative => 1,
 	signature => {
         desc => q/Creates a new stub invoice/,
         params => [

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Lineitem.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Lineitem.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Lineitem.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -726,6 +726,7 @@
 __PACKAGE__->register_method(
     method    => 'retrieve_lineitem_detail',
     api_name  => 'open-ils.acq.lineitem_detail.retrieve',
+    authoritative => 1,
     signature => {
         desc   => q/Updates a lineitem detail/,
         params => [
@@ -872,6 +873,7 @@
 __PACKAGE__->register_method(
     method    => 'get_lineitem_attr_defs',
     api_name  => 'open-ils.acq.lineitem_attr_definition.retrieve.all',
+    authoritative => 1,
     signature => {
         desc   => 'Retrieve lineitem attr definitions',
         params => [ { desc => 'Authentication token', type => 'string' }, ],
@@ -965,6 +967,7 @@
 __PACKAGE__->register_method(
     method => "retrieve_lineitem_by_copy_id",
     api_name => "open-ils.acq.lineitem.retrieve.by_copy_id",
+    authoritative => 1,
     signature => {
         desc => q/Manage lineitem notes/,
         params => [

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Picklist.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -88,6 +88,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_picklist',
 	api_name	=> 'open-ils.acq.picklist.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a picklist',
         params => [
@@ -149,6 +150,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_picklist_name',
 	api_name	=> 'open-ils.acq.picklist.name.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a picklist by name.  Owner is implied by the caller',
         params => [

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Provider.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Provider.pm	2010-11-02 13:03:14 UTC (rev 18575)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Acq/Provider.pm	2010-11-02 13:05:07 UTC (rev 18576)
@@ -40,6 +40,7 @@
 __PACKAGE__->register_method(
 	method => 'retrieve_provider',
 	api_name	=> 'open-ils.acq.provider.retrieve',
+    authoritative => 1,
 	signature => {
         desc => 'Retrieves a new provider',
         params => [



More information about the open-ils-commits mailing list