<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Thu Feb 08 23:11:57 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>FOLIO Jira</title>
    <link>https://folio-org.atlassian.net</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>1001.0.0-SNAPSHOT</version>
        <build-number>100246</build-number>
        <build-date>07-02-2024</build-date>
    </build-info>

<item>
            <title>[FOLIO-1251] JOIN between resources mod-feesfines and other modules </title>
                <link>https://folio-org.atlassian.net/browse/FOLIO-1251</link>
                <project id="10290" key="FOLIO">FOLIO</project>
                    <description>&lt;p&gt;Initially I created views by performing join between tables of different modules through template_create_tenant.sql for a specific resource. Like the following:&lt;/p&gt;


&lt;p&gt;&amp;#8211; View Fees Fines History&lt;br/&gt;
CREATE VIEW diku_mod_feesfines.feefine_history_view AS  SELECT id AS id,to_jsonb(t) AS jsonb&lt;br/&gt;
FROM ( &lt;br/&gt;
SELECT a.jsonb-&amp;gt;&amp;gt;&apos;id&apos; AS &quot;id&quot;,&lt;br/&gt;
	  SUBSTRING(a.jsonb-&amp;gt;&apos;metadata&apos;-&amp;gt;&amp;gt;&apos;createdDate&apos; FROM 1 FOR 10) AS &quot;dateCreated&quot;,&lt;br/&gt;
	  SUBSTRING(a.jsonb-&amp;gt;&apos;metadata&apos;-&amp;gt;&amp;gt;&apos;updatedDate&apos; FROM 1 FOR 10) AS &quot;dateUpdated&quot;,&lt;br/&gt;
	  f.jsonb-&amp;gt;&apos;feeFineType&apos; AS &quot;feeFineType&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;amount&apos; AS &quot;charged&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;remaining&apos; AS &quot;remaining&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;status&apos;-&amp;gt;&amp;gt;&apos;name&apos; AS &quot;status&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;paymentStatus&apos;-&amp;gt;&amp;gt;&apos;name&apos; AS &quot;paymentStatus&quot;,&lt;br/&gt;
	  o.jsonb-&amp;gt;&apos;desc&apos; AS &quot;feeFineOwner&quot;,&lt;br/&gt;
	  ins.jsonb-&amp;gt;&apos;title&apos; AS &quot;item&quot;,&lt;br/&gt;
	  i.jsonb-&amp;gt;&apos;barcode&apos; AS &quot;barcode&quot;,&lt;br/&gt;
	  m.jsonb-&amp;gt;&apos;name&apos; AS &quot;itemType&quot;,&lt;br/&gt;
	  h.jsonb-&amp;gt;&apos;callNumber&apos; AS &quot;callNumber&quot;,&lt;br/&gt;
	  s.jsonb-&amp;gt;&apos;name&apos; AS &quot;location&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;itemId&apos; AS &quot;itemId&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;loanId&apos; AS &quot;loanId&quot;,&lt;br/&gt;
	  a.jsonb-&amp;gt;&apos;userId&apos; AS &quot;userId&quot;&lt;br/&gt;
	  FROM diku_mod_feesfines.accounts a&lt;br/&gt;
	  INNER JOIN diku_mod_users.users u ON u.jsonb-&amp;gt;&amp;gt;&apos;id&apos; = a.jsonb-&amp;gt;&amp;gt;&apos;userId&apos;&lt;br/&gt;
	  INNER JOIN diku_mod_feesfines.feefines f ON f.jsonb-&amp;gt;&amp;gt;&apos;id&apos; = a.jsonb-&amp;gt;&amp;gt;&apos;feeFineId&apos;&lt;br/&gt;
	  INNER JOIN diku_mod_feesfines.owners o ON o.jsonb-&amp;gt;&amp;gt;&apos;id&apos; = a.jsonb-&amp;gt;&amp;gt;&apos;ownerId&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_circulation_storage.loan l ON a.jsonb-&amp;gt;&amp;gt;&apos;loanId&apos; = l.jsonb-&amp;gt;&amp;gt;&apos;id&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_inventory_storage.item i ON i.jsonb-&amp;gt;&amp;gt;&apos;id&apos; = a.jsonb-&amp;gt;&amp;gt;&apos;itemId&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_inventory_storage.material_type m ON i.jsonb-&amp;gt;&amp;gt;&apos;materialTypeId&apos; = m.jsonb-&amp;gt;&amp;gt;&apos;id&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_inventory_storage.holdings_record h ON i.jsonb-&amp;gt;&amp;gt;&apos;holdingsRecordId&apos; = h.jsonb-&amp;gt;&amp;gt;&apos;id&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_inventory_storage.instance ins ON ins.jsonb-&amp;gt;&amp;gt;&apos;id&apos; = h.jsonb-&amp;gt;&amp;gt;&apos;instanceId&apos;&lt;br/&gt;
	  LEFT JOIN diku_mod_inventory_storage.shelflocation s ON h.jsonb-&amp;gt;&apos;permanentLocationId&apos; = s.jsonb-&amp;gt;&apos;id&apos;&lt;br/&gt;
) t;&lt;/p&gt;

&lt;p&gt;--View item information&lt;br/&gt;
CREATE VIEW myuniversity_mymodule.item_information_view AS  SELECT id AS id, to_jsonb(t) AS jsonb&lt;br/&gt;
FROM (&lt;br/&gt;
  SELECT i.jsonb-&amp;gt;&amp;gt;&apos;id&apos; AS &quot;id&quot;,&lt;br/&gt;
  ins.jsonb-&amp;gt;&apos;title&apos; AS &quot;instance&quot;,&lt;br/&gt;
  h.jsonb-&amp;gt;&apos;callNumber&apos; AS &quot;callNumber&quot;,&lt;br/&gt;
  i.jsonb-&amp;gt;&apos;barcode&apos; AS &quot;barcode&quot;,&lt;br/&gt;
  i.jsonb -&amp;gt; &apos;materialTypeId&apos; AS &quot;materialTypeId&quot;,&lt;br/&gt;
  i.jsonb-&amp;gt;&apos;status&apos;-&amp;gt;&amp;gt;&apos;name&apos; AS &quot;itemStatus&quot;,&lt;br/&gt;
  s.jsonb-&amp;gt;&apos;name&apos; AS &quot;location&quot;&lt;br/&gt;
  FROM diku_mod_inventory_storage.instance ins&lt;br/&gt;
  INNER JOIN diku_mod_inventory_storage.holdings_record h ON ins.jsonb-&amp;gt;&apos;id&apos; = h.jsonb-&amp;gt;&apos;instanceId&apos;&lt;br/&gt;
  INNER JOIN diku_mod_inventory_storage.item i ON h.jsonb-&amp;gt;&apos;id&apos; = i.jsonb-&amp;gt;&apos;holdingsRecordId&apos;&lt;br/&gt;
  LEFT JOIN diku_mod_inventory_storage.shelflocation s ON h.jsonb-&amp;gt;&apos;permanentLocationId&apos; = s.jsonb-&amp;gt;&apos;id&apos;&lt;br/&gt;
) t;&lt;/p&gt;

&lt;p&gt;When I change the way to create tables and views from the schema.json, I performed the tests to create the views related to different modules and it no were created them, because it only allows to make views between tables of the module itself.&lt;/p&gt;

&lt;p&gt;However, we think that to optimize the recovery of information, it is better to build the view of these tables. For example, in our current programming we call a resource, but if we preside over this resource we have to make more calls, at least 7, for example for our case we need to show related information of the resources:&lt;/p&gt;

&lt;p&gt;feesfines&lt;br/&gt;
users&lt;br/&gt;
loan-storage/loans&lt;br/&gt;
item-storage/items&lt;br/&gt;
instance-storage/instances&lt;br/&gt;
holdings-storage/holdings&lt;br/&gt;
shelf-locations&lt;/p&gt;</description>
                <environment></environment>
        <key id="80739">FOLIO-1251</key>
            <summary>JOIN between resources mod-feesfines and other modules </summary>
                <type id="10003" iconUrl="https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium">Task</type>
                                            <priority id="10001" iconUrl="https://dev.folio.org/assets/jira-priority/jira-p2.svg">P2</priority>
                        <status id="6" iconUrl="https://folio-org.atlassian.net/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10003">Done</resolution>
                                                        <assignee accountid="70121:7efd32ff-c4ec-4488-afe9-7034cf351007">lluvia Manilla</assignee>
                                                                <reporter accountid="70121:7efd32ff-c4ec-4488-afe9-7034cf351007">lluvia Manilla</reporter>
                                    <labels>
                            <label>resourceaccess</label>
                    </labels>
                <created>Wed, 16 May 2018 23:28:50 +0000</created>
                <updated>Mon, 12 Nov 2018 14:24:25 +0000</updated>
                            <resolved>Mon, 9 Jul 2018 22:58:22 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                <comments>
                                                            <comment id="193684" author="5f9abc1eb45b2e007453f423" created="Thu, 17 May 2018 15:03:11 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=70121%3A7efd32ff-c4ec-4488-afe9-7034cf351007&quot; class=&quot;user-hover&quot; rel=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; data-account-id=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; accountid=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; rel=&quot;noreferrer&quot;&gt;lluvia Manilla&lt;/a&gt; - Not sure what you are asking from me here or if maybe this needs to be assigned to someone else? &lt;/p&gt;</comment>
                                                            <comment id="193685" author="70121:7efd32ff-c4ec-4488-afe9-7034cf351007" created="Fri, 18 May 2018 18:23:44 +0000"  >&lt;p&gt;Sorry &lt;a href=&quot;#John Malconian&quot; rel=&quot;noreferrer&quot;&gt;John Malconian&lt;/a&gt;, I did not know how you were assigned to you. Who do you recommend assigning?&lt;/p&gt;</comment>
                                                            <comment id="193687" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Fri, 18 May 2018 19:19:39 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Ab8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; class=&quot;user-hover&quot; rel=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; data-account-id=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; accountid=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; rel=&quot;noreferrer&quot;&gt;Jakub Skoczen&lt;/a&gt; Lluvia from UNAM needs help with this issue.  Is this the correct way to report this type of an issue?  Thanks, Holly&lt;/p&gt;</comment>
                                                            <comment id="193688" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Fri, 18 May 2018 19:23:03 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Ab8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; class=&quot;user-hover&quot; rel=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; data-account-id=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; accountid=&quot;557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d&quot; rel=&quot;noreferrer&quot;&gt;Jakub Skoczen&lt;/a&gt; I also just posted this on Slack.  Thanks!&lt;/p&gt;</comment>
                                                            <comment id="193690" author="5bffed52a1b46046f530c8f7" created="Fri, 18 May 2018 20:44:54 +0000"  >&lt;p&gt;You cannot, at the SQL level, create joins between different modules &amp;#8211; because you don&apos;t even know what other modules exist in the system, and you have no way of discovering what their tables and fields are even if you do know. You have to call other modules via their WSAPIs.&lt;/p&gt;</comment>
                                                            <comment id="193691" author="712020:32bb56ac-50e7-4787-b4af-ed3089d9401c" created="Wed, 23 May 2018 05:48:02 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=999854%3A4cfea6f8-ad3e-4ad6-937e-90a837ef9942&quot; class=&quot;user-hover&quot; rel=&quot;999854:4cfea6f8-ad3e-4ad6-937e-90a837ef9942&quot; data-account-id=&quot;999854:4cfea6f8-ad3e-4ad6-937e-90a837ef9942&quot; accountid=&quot;999854:4cfea6f8-ad3e-4ad6-937e-90a837ef9942&quot; rel=&quot;noreferrer&quot;&gt;Former user&lt;/a&gt; - can you describe the use case that requires this view - can this be achieved via api calls to other modules?&lt;/p&gt;</comment>
                                                            <comment id="193693" author="70121:7efd32ff-c4ec-4488-afe9-7034cf351007" created="Wed, 23 May 2018 19:42:24 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;#shale99&quot; rel=&quot;noreferrer&quot;&gt;shale99&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;View Fees Fines History. &lt;br/&gt;
It requires selecting the items by barcode or by title of all database. UIU-219: &quot;charge-manual-fee-1.png&quot;&lt;/p&gt;

&lt;p&gt;View item information &lt;br/&gt;
Requires the display of barcode data, title, type of material, location and data of our module. For example UIU-238: &quot;approved - 7 fees with a few filters (coming from loan page).png&quot; and UIU-239:&lt;br/&gt;
&quot;fee-fine-detail-1.jpg&quot;&lt;/p&gt;</comment>
                                                            <comment id="193695" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Thu, 24 May 2018 20:40:52 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=712020%3A32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; class=&quot;user-hover&quot; rel=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; data-account-id=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; accountid=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; rel=&quot;noreferrer&quot;&gt;shale99&lt;/a&gt;, I had assigned this to Jakob but thought that I could perhaps move it to you since you are helping Lluvia.  Is that o.k.?&lt;/p&gt;</comment>
                                                            <comment id="193696" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Thu, 31 May 2018 17:24:00 +0000"  >&lt;p&gt;Hi Lluvia.  Jakub (the Tech Lead) and I have emailed back and forth about this issue.  He said that Mike Taylor is correct:  &quot;You cannot, at the SQL level, create joins between different modules &#8211; because you don&apos;t even know what other modules exist in the system, and you have no way of discovering what their tables and fields are even if you do know. You have to call other modules via their WSAPIs.&quot;  Jakob told me that &quot;there are many examples on how to do cross-module joins on the API level in the system &amp;#8212; the User Detail screen uses this to show Loans and other information and is probably the best example.&quot; I recommend that you look at that code and see how it is being done.  Sorry it has taken so long to resolve this issue.  If you need more help with this, please let me know and I will ask Jakob to assign someone.&lt;br/&gt;
Thanks,&lt;br/&gt;
Holly&lt;/p&gt;</comment>
                                                            <comment id="193698" author="61cd0ca0bce5e00069e98be7" created="Fri, 1 Jun 2018 03:16:55 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=70121%3A7efd32ff-c4ec-4488-afe9-7034cf351007&quot; class=&quot;user-hover&quot; rel=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; data-account-id=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; accountid=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; rel=&quot;noreferrer&quot;&gt;lluvia Manilla&lt;/a&gt; and others, in case you had not seen it, i had paraphrased Mike&apos;s explanation and linked to some other docs. Julian expanded.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://dev.folio.org/guides/cross-module-joins/&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://dev.folio.org/guides/cross-module-joins/&lt;/a&gt; and linked from the Start docs.&lt;/p&gt;

&lt;p&gt;I will expand that to add the guidance via User Details front end.&lt;/p&gt;</comment>
                                                            <comment id="193700" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Fri, 1 Jun 2018 12:34:58 +0000"  >&lt;p&gt;Thanks &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=61cd0ca0bce5e00069e98be7&quot; class=&quot;user-hover&quot; rel=&quot;61cd0ca0bce5e00069e98be7&quot; data-account-id=&quot;61cd0ca0bce5e00069e98be7&quot; accountid=&quot;61cd0ca0bce5e00069e98be7&quot; rel=&quot;noreferrer&quot;&gt;David Crossley&lt;/a&gt;!  Very helpful!&lt;/p&gt;</comment>
                                                            <comment id="193702" author="70121:7efd32ff-c4ec-4488-afe9-7034cf351007" created="Fri, 1 Jun 2018 15:47:06 +0000"  >&lt;p&gt;Thanks a lot, &lt;a href=&quot;#David Crossley&quot; rel=&quot;noreferrer&quot;&gt;David Crossley&lt;/a&gt;! This week I was doing tests according to the section &#8220;Querying multiple modules via HTTP&#8221;.&lt;/p&gt;</comment>
                                                            <comment id="193703" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Thu, 7 Jun 2018 20:30:39 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=70121%3A7efd32ff-c4ec-4488-afe9-7034cf351007&quot; class=&quot;user-hover&quot; rel=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; data-account-id=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; accountid=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; rel=&quot;noreferrer&quot;&gt;lluvia Manilla&lt;/a&gt;, Jakub emailed me to let me know that he will ask Zeev or Marc to reach out to you about this issue.  Hopefully you will hear something soon.  Thanks...&lt;/p&gt;</comment>
                                                            <comment id="193705" author="557058:b8e64633-1f7c-402d-9caf-9959a5ba5d0d" created="Fri, 8 Jun 2018 12:02:51 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=70121%3A7efd32ff-c4ec-4488-afe9-7034cf351007&quot; class=&quot;user-hover&quot; rel=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; data-account-id=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; accountid=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; rel=&quot;noreferrer&quot;&gt;lluvia Manilla&lt;/a&gt; while it is true that the join on the DB-level would perform better the down side of that approach across FOLIO would be tight coupling of modules and loss of replaceability and modularity.&lt;/p&gt;

&lt;p&gt;We have not been involved with mod-feesfines but it looks like it&apos;s similar in it&apos;s requirements with the loans endpoint which is part of the circulation domain. Generally, if you need to join things like user data or item information for a particular fee/fine, this operation should be fairly cheap and you can perform a live look-up. For cases when you need to filter/search or sort the fee/fines by a specific datum that would be stored in another module it probably makes sense to cache that datum locally in fee/fines.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=63e2a2771b13d42998e4e706&quot; class=&quot;user-hover&quot; rel=&quot;63e2a2771b13d42998e4e706&quot; data-account-id=&quot;63e2a2771b13d42998e4e706&quot; accountid=&quot;63e2a2771b13d42998e4e706&quot; rel=&quot;noreferrer&quot;&gt;Marc Johnson&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=712020%3A32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; class=&quot;user-hover&quot; rel=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; data-account-id=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; accountid=&quot;712020:32bb56ac-50e7-4787-b4af-ed3089d9401c&quot; rel=&quot;noreferrer&quot;&gt;shale99&lt;/a&gt; can we point &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=70121%3A7efd32ff-c4ec-4488-afe9-7034cf351007&quot; class=&quot;user-hover&quot; rel=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; data-account-id=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; accountid=&quot;70121:7efd32ff-c4ec-4488-afe9-7034cf351007&quot; rel=&quot;noreferrer&quot;&gt;lluvia Manilla&lt;/a&gt; to existing examples, e.g for loans?&lt;/p&gt;</comment>
                                                            <comment id="193706" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Fri, 15 Jun 2018 19:14:39 +0000"  >&lt;p&gt;Lluvia, have you received help from Marc or Zeev?  Jakub told me that he would ask Marc or Zeev to reach out to you.  If that hasn&apos;t happened, I will ask again.  Sorry for the delay. &lt;/p&gt;</comment>
                                                            <comment id="193708" author="557058:a957226f-df85-4fc8-97f4-8b27a26029ed" created="Mon, 18 Jun 2018 17:40:17 +0000"  >&lt;p&gt;Hi Lluvia!  Jakub tried to reach out to you last week but didn&apos;t hear back from you. Jakub says this module needs to be completely restructured to: a) use the APIs to join data; b) cache data on the fee/fine structure c) combine it with mod-circulation-storage. Marc is back this week so it would be best if you (or whoever is responsible for mod-feefines) reached out to Jakub and Marc on Slack. Thanks, Holly&lt;/p&gt;</comment>
                                                            <comment id="193710" author="70121:7efd32ff-c4ec-4488-afe9-7034cf351007" created="Mon, 18 Jun 2018 18:15:09 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;#Holly&quot; rel=&quot;noreferrer&quot;&gt;Holly&lt;/a&gt;! I will communicate with &lt;a href=&quot;#Jakub&quot; rel=&quot;noreferrer&quot;&gt;Jakub&lt;/a&gt;. Thank you very much.&lt;/p&gt;</comment>
                                                            <comment id="193711" author="70121:7efd32ff-c4ec-4488-afe9-7034cf351007" created="Mon, 9 Jul 2018 23:03:51 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;#Jakub&quot; rel=&quot;noreferrer&quot;&gt;Jakub&lt;/a&gt;, close this issue because &lt;a href=&quot;#Wayne&quot; rel=&quot;noreferrer&quot;&gt;Wayne&lt;/a&gt; informed me that he was blocking the issue of 
    &lt;span class=&quot;jira-issue-macro resolved&quot; data-jira-key=&quot;FOLIO-1318&quot; &gt;
                &lt;a href=&quot;https://folio-org.atlassian.net/browse/FOLIO-1318&quot; class=&quot;jira-issue-macro-key issue-link&quot;  title=&quot;Include mod-feefines in Vagrant and AWS builds&quot; &gt;
            &lt;img class=&quot;icon&quot; src=&quot;https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10318?size=medium&quot; /&gt;
            FOLIO-1318
        &lt;/a&gt;
                                                    &lt;span class=&quot;aui-lozenge aui-lozenge-subtle aui-lozenge-success jira-macro-single-issue-export-pdf&quot;&gt;Closed&lt;/span&gt;
            &lt;/span&gt;
, and previously I proposed the solution, which was already implemented.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10000">
                    <name>Blocks</name>
                                            <outwardlinks description="blocks">
                                        <issuelink>
            <issuekey id="44584">UIU-238</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44580">UIU-239</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="80676">FOLIO-1318</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|hzyk1z:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10024" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>[CHART] Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 17 May 2018 15:03:11 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10025" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>[CHART] Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>