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

Evergreen Git git at git.evergreen-ils.org
Thu Jun 29 11:52:37 EDT 2017


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  ba4ee40134658d19f1f453bc5ffe6972788db3ea (commit)
       via  6fd2bdc0354e8aa0b16f6b76a2b159a64ca0fdfa (commit)
       via  57c636c4e0e9356822107c8e1fddfa046c355505 (commit)
      from  1dea2ca041897f82b61dffac7658c3adb1308ab6 (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 ba4ee40134658d19f1f453bc5ffe6972788db3ea
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Thu Jun 29 12:03:53 2017 -0400

    LP#1687125: add release notes
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/docs/RELEASE_NOTES_NEXT/Reports/link_provider_and_note.adoc b/docs/RELEASE_NOTES_NEXT/Reports/link_provider_and_note.adoc
new file mode 100644
index 0000000..a3f5551
--- /dev/null
+++ b/docs/RELEASE_NOTES_NEXT/Reports/link_provider_and_note.adoc
@@ -0,0 +1,3 @@
+Add Provider to Provider Note link
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+The Provider reporting source now includes a link to Provider Note.

commit 6fd2bdc0354e8aa0b16f6b76a2b159a64ca0fdfa
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Thu Jun 29 10:14:17 2017 -0400

    LP#1687125: adjust relationship between acqpro and acqpron
    
    A provider can have many notes, and "provider_notes" is effectively
    virtual.
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml
index d4eb723..00734a8 100644
--- a/Open-ILS/examples/fm_IDL.xml
+++ b/Open-ILS/examples/fm_IDL.xml
@@ -7699,7 +7699,7 @@ SELECT  usr,
 			<field reporter:label="Fax Phone" name="fax_phone" reporter:datatype="text" />
 			<field reporter:label="Default Claim Policy" name="default_claim_policy" reporter:datatype="link" />
 			<field reporter:label="Default # Copies" name="default_copy_count" reporter:datatype="int" />
-			<field reporter:label="Note" name="provider_note" reporter:datatype="link" />
+			<field reporter:label="Notes" name="provider_notes" oils_persist:virtual="true" reporter:datatype="link" />
 		</fields>
 		<links>
 			<link field="currency_type" reltype="has_a" key="code" map="" class="acqct"/>
@@ -7707,7 +7707,7 @@ SELECT  usr,
             <link field="addresses" reltype="has_many" map="" key="provider" class="acqpa"/>
             <link field="edi_default" reltype="has_a" map="" key="id" class="acqedi"/>
 			<link field="default_claim_policy" reltype="has_a" map="" key="id" class="acqclp"/>
-			<link field="provider_note" reltype="has_a" map="" key="id" class="acqpron"/>
+			<link field="provider_notes" reltype="has_many" map="" key="provider" class="acqpron"/>
 		</links>
         <permacrud xmlns="http://open-ils.org/spec/opensrf/IDL/permacrud/v1">
             <actions>

commit 57c636c4e0e9356822107c8e1fddfa046c355505
Author: Rogan Hamby <rogan.hamby at gmail.com>
Date:   Fri Apr 28 19:08:50 2017 -0400

    LP#1687125: adding provider note to provider note in fm_IDL
    
    This patch makes provider notes available to the reporter.
    
    To test
    -------
    [1] Add a note to a provider record (note that at present,
        this can only be done directly in the database).
    [2] In the report editor, verify that the reporting
        source for providers now includes a link to notes.
    [3] Create and run a report that includes the provider
        note.
    
    Signed-off-by: Rogan Hamby <rogan.hamby at gmail.com>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml
index eaaa780..d4eb723 100644
--- a/Open-ILS/examples/fm_IDL.xml
+++ b/Open-ILS/examples/fm_IDL.xml
@@ -7699,13 +7699,15 @@ SELECT  usr,
 			<field reporter:label="Fax Phone" name="fax_phone" reporter:datatype="text" />
 			<field reporter:label="Default Claim Policy" name="default_claim_policy" reporter:datatype="link" />
 			<field reporter:label="Default # Copies" name="default_copy_count" reporter:datatype="int" />
+			<field reporter:label="Note" name="provider_note" reporter:datatype="link" />
 		</fields>
 		<links>
 			<link field="currency_type" reltype="has_a" key="code" map="" class="acqct"/>
 			<link field="owner" reltype="has_a" key="id" map="" class="aou"/>
             <link field="addresses" reltype="has_many" map="" key="provider" class="acqpa"/>
             <link field="edi_default" reltype="has_a" map="" key="id" class="acqedi"/>
-            <link field="default_claim_policy" reltype="has_a" map="" key="id" class="acqclp"/>
+			<link field="default_claim_policy" reltype="has_a" map="" key="id" class="acqclp"/>
+			<link field="provider_note" reltype="has_a" map="" key="id" class="acqpron"/>
 		</links>
         <permacrud xmlns="http://open-ils.org/spec/opensrf/IDL/permacrud/v1">
             <actions>

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

Summary of changes:
 Open-ILS/examples/fm_IDL.xml                       |    4 +++-
 .../Reports/link_provider_and_note.adoc            |    3 +++
 2 files changed, 6 insertions(+), 1 deletions(-)
 create mode 100644 docs/RELEASE_NOTES_NEXT/Reports/link_provider_and_note.adoc


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list