<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Fri Feb 09 00:35:56 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>[UIIN-2322] No error message when trying to save a value with &apos;null&apos;; e.g. as seen in Statistical code field on an holdings, instance, and item record</title>
                <link>https://folio-org.atlassian.net/browse/UIIN-2322</link>
                <project id="10132" key="UIIN">ui-inventory</project>
                    <description>&lt;p&gt;&lt;b&gt;Overview:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Several data properties, in Inventory (instance, holdings, item) and maybe in more apps (but this has not been investigated further), here properties with value &apos;null&apos; can be saved, without an error message is displayed.&lt;/p&gt;

&lt;p&gt;E.g.: When editing an item record if the use clicks on &apos;Add statistical code&apos; a null statistical code is added to the item record. If the user does not remove this code nor selects an option form the dropdown the save fails silently in the background.&lt;/p&gt;

&lt;p&gt;The save response returns with code 422 with the following payload:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
{
&#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;errors&quot;&lt;/span&gt;:[
&#160; &#160; &#160; {
&#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;message&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;elements in list must match pattern&quot;&lt;/span&gt;,
&#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;type&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;1&quot;&lt;/span&gt;,
&#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;code&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;elements in list must match pattern&quot;&lt;/span&gt;,
&#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;parameters&quot;&lt;/span&gt;:[
&#160; &#160; &#160; &#160; &#160; &#160; {
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;key&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;statisticalCodeIds&quot;&lt;/span&gt;,
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&lt;span class=&quot;code-quote&quot;&gt;&quot;value&quot;&lt;/span&gt;:&lt;span class=&quot;code-quote&quot;&gt;&quot;[&lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;]&quot;&lt;/span&gt;
&#160; &#160; &#160; &#160; &#160; &#160; }
&#160; &#160; &#160; &#160; &#160;]
&#160; &#160; &#160; }
&#160; &#160;]
}&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;Steps to Reproduce:&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Log into some FOLIO environment as User X&lt;/li&gt;
	&lt;li&gt;Open an item record in edit mode.&lt;/li&gt;
	&lt;li&gt;Click on &apos;Add statistical code&apos;; do not select and option&lt;/li&gt;
	&lt;li&gt;Click on &quot;Save and close&apos;&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;b&gt;Expected Results:&lt;/b&gt;&lt;br/&gt;
A toast should appear indicating that the statistical code can not be blank.&#160;&lt;br/&gt;
The statistical code field should be in error. Red box with an error message below.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Actual Results:&lt;/b&gt;&lt;br/&gt;
The request fails silently in the background and the item stays on the edit screen.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Additional Information:&lt;/b&gt;&lt;br/&gt;
&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt;Zak_Burke added a comment (2/6/2023)&lt;br/&gt;
Anya Arnold: while the problem may be a &quot;wider issue with FOLIO&quot;, there is not a &quot;one stop shop&quot; fix. Essentially, any given request may succeed or fail, and the problem is that some request-handlers do not check the response status to make sure it is successful. IOW, the &quot;problem&quot; is not with particular code but with a particular pattern.&lt;/p&gt;

&lt;p&gt;That is the case here in src/Item/EditItem/EditItem.js and src/Item/CreateItem/CreateItem.js: both use the useItemMutation hook but fail to either (a) pass an onError callback to the hook or (b) provide a catch clause when calling mutateItem.&lt;br/&gt;
URL: &lt;br/&gt;
&lt;b&gt;Interested parties:&lt;/b&gt;&lt;br/&gt;
&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5c48911b54e1e6466b11f38c&quot; class=&quot;user-hover&quot; rel=&quot;5c48911b54e1e6466b11f38c&quot; data-account-id=&quot;5c48911b54e1e6466b11f38c&quot; accountid=&quot;5c48911b54e1e6466b11f38c&quot; rel=&quot;noreferrer&quot;&gt;Erin Nettifee&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5d6eeadef989e00d8c7e897b&quot; class=&quot;user-hover&quot; rel=&quot;5d6eeadef989e00d8c7e897b&quot; data-account-id=&quot;5d6eeadef989e00d8c7e897b&quot; accountid=&quot;5d6eeadef989e00d8c7e897b&quot; rel=&quot;noreferrer&quot;&gt;Anya&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="46407">UIIN-2322</key>
            <summary>No error message when trying to save a value with &apos;null&apos;; e.g. as seen in Statistical code field on an holdings, instance, and item record</summary>
                <type id="10001" iconUrl="https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10303?size=medium">Bug</type>
                                            <priority id="10002" iconUrl="https://dev.folio.org/assets/jira-priority/jira-p3.svg">P3</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="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0">Michal Kuklis</assignee>
                                                                <reporter accountid="557058:eb198214-3032-45c9-9781-9967c26deb3f">Thomas Trutt</reporter>
                                    <labels>
                            <label>support</label>
                    </labels>
                <created>Mon, 19 Dec 2022 21:13:07 +0000</created>
                <updated>Wed, 7 Feb 2024 17:40:17 +0000</updated>
                            <resolved>Mon, 20 Mar 2023 19:53:05 +0000</resolved>
                                                    <fixVersion>9.3.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                <comments>
                                                            <comment id="104395" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 19 Dec 2022 22:06:08 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; - thanks for filing this issue. It&apos;s apparently a broader issue, while I see different errors/error messages for also holdings when saving statistical codes with empty content &lt;span class=&quot;error&quot;&gt;&amp;#91;null&amp;#93;&lt;/span&gt; and also instances. Also when I try to save an empty administrative code. &lt;/p&gt;

&lt;p&gt;Is this an issue in other apps as well, or have you only seen it in Inventory?&lt;/p&gt;

&lt;p&gt;For now I&apos;ll put this ticket in Draft, until we know if this can be solved in a more general way, but I would need to check with the UI developers, to get a sense of what are the options. &lt;/p&gt;

&lt;p&gt;CC: &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt;&lt;/p&gt;</comment>
                                                            <comment id="104396" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Tue, 20 Dec 2022 14:03:00 +0000"  >&lt;p&gt;I have not looked in other apps, or other fields. This came up in our move to MG on Friday. We had item records that had null Statistical codes attached to them that where causing issues in with check-in. We cleaned up those records and I brought this Erins attention as a potential bug for the check-in app. When she tried to duplicate it she note that the record wouldn&apos;t save but there was no error message. I then confirmed this on the Nolana test env and wrote this up. I can go through and&#160; test the other fields and different record levels to see where the errors are not being caught. I will also check the other apps.&#160; If it is a larger issue perhaps the stripes is not requesting 422 as an error code? It may take me a few days to get around to it though..&lt;/p&gt;</comment>
                                                            <comment id="104397" author="5c48911b54e1e6466b11f38c" created="Tue, 20 Dec 2022 14:03:02 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; Thomas and I discussed this yesterday as it was discovered through impacts on checking in items. I&apos;m  not aware of other apps that are using statistical codes in the same way that Inventory uses them. Do you know if other apps are using this? &lt;/p&gt;</comment>
                                                            <comment id="104398" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 9 Jan 2023 14:53:51 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5c48911b54e1e6466b11f38c&quot; class=&quot;user-hover&quot; rel=&quot;5c48911b54e1e6466b11f38c&quot; data-account-id=&quot;5c48911b54e1e6466b11f38c&quot; accountid=&quot;5c48911b54e1e6466b11f38c&quot; rel=&quot;noreferrer&quot;&gt;Erin Nettifee&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; - my questions was not so much re. Statistical codes, but the possibility to save records having a Null value &lt;img class=&quot;emoticon&quot; src=&quot;/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt; Sorry for not being clear and concise when writing up my question.&lt;/p&gt;</comment>
                                                            <comment id="104399" author="5d6eeadef989e00d8c7e897b" created="Mon, 23 Jan 2023 15:08:21 +0000"  >&lt;p&gt;Support: any progress on this ticket - can we assign a release target? Thanks&#160;&lt;/p&gt;</comment>
                                                            <comment id="104400" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Wed, 25 Jan 2023 18:14:30 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5d6eeadef989e00d8c7e897b&quot; class=&quot;user-hover&quot; rel=&quot;5d6eeadef989e00d8c7e897b&quot; data-account-id=&quot;5d6eeadef989e00d8c7e897b&quot; accountid=&quot;5d6eeadef989e00d8c7e897b&quot; rel=&quot;noreferrer&quot;&gt;Anya&lt;/a&gt; - no unfortunately not.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5c48911b54e1e6466b11f38c&quot; class=&quot;user-hover&quot; rel=&quot;5c48911b54e1e6466b11f38c&quot; data-account-id=&quot;5c48911b54e1e6466b11f38c&quot; accountid=&quot;5c48911b54e1e6466b11f38c&quot; rel=&quot;noreferrer&quot;&gt;Erin Nettifee&lt;/a&gt; and &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; did you have a change to check if this is a much more general issue than just Statistical codes? &lt;/p&gt;</comment>
                                                            <comment id="104401" author="5c48911b54e1e6466b11f38c" created="Wed, 25 Jan 2023 19:03:22 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; I&apos;m not even sure how to start figuring that out - I don&apos;t know what in FOLIO would control it? &lt;/p&gt;

&lt;p&gt;I know in Users, if you don&apos;t put a value into the field, the record just doesn&apos;t have the attribute, e.g., if I don&apos;t add a phone number for a person, FOLIO doesn&apos;t save that as &quot;phone number: []&quot; it just doesn&apos;t save a phone number attribute in the record at all.&lt;/p&gt;

&lt;p&gt;I think in this case, what should be happening is like what happens when you accidentally click an item check in note, but you don&apos;t add anything. you can&apos;t save the record.&lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34698_thumb&quot; href=&quot;/rest/api/3/attachment/content/34698&quot; title=&quot;screenshot-1.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34698&quot; file-preview-title=&quot;screenshot-1.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34698?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34698&quot; filename=&quot;screenshot-1.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34698&quot; data-attachment-name=&quot;screenshot-1.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;07b6f83c-9a6c-4332-97d8-d6efe5aa611d&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;</comment>
                                                            <comment id="104402" author="5d6eeadef989e00d8c7e897b" created="Mon, 6 Feb 2023 15:07:57 +0000"  >&lt;p&gt;Support: &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt; / &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=62a96ae7192edb006f9f1bf9&quot; class=&quot;user-hover&quot; rel=&quot;62a96ae7192edb006f9f1bf9&quot; data-account-id=&quot;62a96ae7192edb006f9f1bf9&quot; accountid=&quot;62a96ae7192edb006f9f1bf9&quot; rel=&quot;noreferrer&quot;&gt;Khalilah Gambrell&lt;/a&gt; this seems like it is a wider issue with FOLIO how can this be solved everywhere?&#160;&lt;/p&gt;</comment>
                                                            <comment id="104403" author="5c48911b54e1e6466b11f38c" created="Mon, 6 Feb 2023 16:03:47 +0000"  >&lt;p&gt;I disagree that this is necessarily a wider issue in FOLIO. Other areas of the item record - like the item check out note - properly parse the error message if you happen to leave one blank. This is just a part of the data where the error is not properly parsed. It should be prioritized like any other bug.&lt;/p&gt;</comment>
                                                            <comment id="104404" author="615afd1cd9820f0070a09ef0" created="Mon, 6 Feb 2023 16:36:46 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5d6eeadef989e00d8c7e897b&quot; class=&quot;user-hover&quot; rel=&quot;5d6eeadef989e00d8c7e897b&quot; data-account-id=&quot;5d6eeadef989e00d8c7e897b&quot; accountid=&quot;5d6eeadef989e00d8c7e897b&quot; rel=&quot;noreferrer&quot;&gt;Anya&lt;/a&gt;: while the problem may be a &quot;wider issue with FOLIO&quot;, there is not a &quot;one stop shop&quot; fix. Essentially, any given request may succeed or fail, and the problem is that some request-handlers do not check the response status to make sure it is successful. IOW, the &quot;problem&quot; is not with particular code but with a particular pattern.&lt;/p&gt;

&lt;p&gt;That is the case here in &lt;a href=&quot;https://github.com/folio-org/ui-inventory/blob/fa2a590e1625faf30e91c787fa42467e1a162cfa/src/Item/EditItem/EditItem.js#L68-L76&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;tt&gt;src/Item/EditItem/EditItem.js&lt;/tt&gt;&lt;/a&gt; and &lt;a href=&quot;https://github.com/folio-org/ui-inventory/blob/fa2a590e1625faf30e91c787fa42467e1a162cfa/src/Item/CreateItem/CreateItem.js#L64-L68&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;&lt;tt&gt;src/Item/CreateItem/CreateItem.js&lt;/tt&gt;&lt;/a&gt;: both use the &lt;tt&gt;useItemMutation&lt;/tt&gt; hook but fail to either (a) pass an &lt;tt&gt;onError&lt;/tt&gt; callback to the hook or (b) provide a &lt;tt&gt;catch&lt;/tt&gt; clause when calling &lt;tt&gt;mutateItem&lt;/tt&gt;.&lt;/p&gt;</comment>
                                                            <comment id="104405" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 6 Feb 2023 17:00:49 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - do you have enough information based on Zak&apos;s input, then I can update the story line and the description to reflect, that this is to be solved every where in instance, holdings, item where where we have a similar issue &lt;/p&gt;</comment>
                                                            <comment id="104406" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Mon, 6 Feb 2023 19:41:45 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; I honestly do not know because this code was written by a different team in the past (&lt;a href=&quot;https://folio-org.atlassian.net/browse/UIIN-1867&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://folio-org.atlassian.net/browse/UIIN-1867&lt;/a&gt;). &lt;/p&gt;

&lt;p&gt;Since this is not using stripes-connect (and instead react-query) I think we should be able to setup a global onError handler as Zak suggested. If that&apos;s how we want to handle it then this issue belongs to stripes-core and not ui-inventory.&lt;/p&gt;

&lt;p&gt;This will only handle it for queries which are using react-query currently. I assume for other queries using stripes-connect this is already handled correctly (by showing a big alert).&lt;/p&gt;</comment>
                                                            <comment id="104407" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Tue, 7 Feb 2023 06:34:40 +0000"  >&lt;p&gt;Thanks a lot &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - I&apos;ll move this ticket to stripes-core, and update the description. &lt;br/&gt;
CC: &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt; &lt;/p&gt;</comment>
                                                            <comment id="104408" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Tue, 7 Feb 2023 14:19:53 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; thank you. I do believe that we also should handle this situation a bit differently from the ui-inventory point of view and perhaps filter out the empty values before the save happens. What do you think? &lt;/p&gt;</comment>
                                                            <comment id="104409" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Wed, 8 Feb 2023 11:36:07 +0000"  >&lt;p&gt;Hi &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - that sounds reasonably. Then you probably need a ticket for this. &lt;br/&gt;
Let&apos;s touch base, so I get the necessary input on, what I need to document/write up for that new ticket - so I don&apos;t do a ton of work, which is not necessary, if you can more easily do find and replace commands in the code.&lt;/p&gt;</comment>
                                                            <comment id="104410" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Wed, 8 Feb 2023 18:02:06 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; I moved this back to ui-inventory. I spent a bit more time looking at the code there and it looks like this issue is already partially handled there (for example it works fine for instances).&lt;/p&gt;

&lt;p&gt;I&apos;m going to poke around this and will fix it for both holdings and items in the inventory.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt; and I are also experimenting with another approach in stripes-core under: &lt;a href=&quot;https://folio-org.atlassian.net/browse/STCOR-687&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://folio-org.atlassian.net/browse/STCOR-687&lt;/a&gt;&lt;/p&gt;</comment>
                                                            <comment id="104411" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Thu, 9 Feb 2023 14:08:40 +0000"  >&lt;p&gt;Totally awesome &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - thank you so much. &lt;/p&gt;</comment>
                                                            <comment id="104412" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:57:32 +0000"  >&lt;p&gt;Manual test in FOLIO Snapshot, version @folio/inventory 9.5.1000003643, using Chrome.&lt;/p&gt;

&lt;p&gt;When saving an instance where the Statistical code is empty (NULL) - then the record can not be saved. I&apos;m not quite sure the error message though is what a user would expect - what do you say &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt;?&lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34681_thumb&quot; href=&quot;/rest/api/3/attachment/content/34681&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.01 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34681&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.01 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34681?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34681&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.01 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34681&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.01 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;c7edbaa7-a96b-424f-b8d6-7557545817e6&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34682_thumb&quot; href=&quot;/rest/api/3/attachment/content/34682&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.20 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34682&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.20 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34682?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34682&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.20 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34682&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.20 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;51bb8208-69e5-4773-b3cc-f66495a5f9a6&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34685_thumb&quot; href=&quot;/rest/api/3/attachment/content/34685&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.39 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34685&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.39 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34685?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34685&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.39 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34685&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.47.39 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;ad428fdb-b5c5-4c57-9713-5fa5c8692ad3&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt;When saving a holdings with empty data for the statistical code, this is still happening, so this part of the work, is not yet solved.&lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34686_thumb&quot; href=&quot;/rest/api/3/attachment/content/34686&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.33 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34686&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.33 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34686?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34686&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.33 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34686&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.33 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;f29fcf26-93ac-4d76-b260-c680ebd94cae&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34689_thumb&quot; href=&quot;/rest/api/3/attachment/content/34689&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.48 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34689&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.48 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34689?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34689&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.48 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34689&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.48.48 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;f0748f17-055c-401c-ab07-4e3efb61382a&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt;Finally when saving an item with empty data for the statistical code, then the error message is not looking in any understandable form for a staff user. But it is preventing save of the record, and the record can first be saved, when the empty &apos;row&apos; has been deleted by clicking the trash icon. &lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34690_thumb&quot; href=&quot;/rest/api/3/attachment/content/34690&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.29 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34690&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.29 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34690?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34690&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.29 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34690&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.29 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;bea053ae-722e-4a9f-8a7c-f8f33acecab1&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt;  &lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34693_thumb&quot; href=&quot;/rest/api/3/attachment/content/34693&quot; title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.49 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34693&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.49 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34693?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34693&quot; filename=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.49 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34693&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-20 kl. 7.49.49 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;b1b21e4b-bd94-4987-afd8-ce10c765f215&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - I&apos;ll put this ticket back In progress. &lt;/p&gt;
</comment>
                                                            <comment id="104413" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Mon, 20 Mar 2023 19:27:14 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; unfortunately there is nothing else I can do about this. This is a generic error returned by the server and the frontend is just handling it by showing it in the modal.&lt;/p&gt;</comment>
                                                            <comment id="104414" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 20:09:45 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; - Instance, Holdings and Item save of empty strings - are handled in three different ways. That seems a bit odd, I think. &lt;/p&gt;</comment>
                                                            <comment id="104415" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Mon, 20 Mar 2023 20:28:09 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; I agree but that will have to change on the server.&lt;/p&gt;</comment>
                                                            <comment id="104416" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Tue, 21 Mar 2023 13:45:03 +0000"  >&lt;p&gt;I would agree &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; that the error messages do not make sense. I also understand what &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt; is saying that the front end is just passing the error along form the backend. What would you suggest?&lt;/p&gt;</comment>
                                                            <comment id="104417" author="557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0" created="Tue, 21 Mar 2023 13:49:27 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; ideally the responses from the server from all these 3 endpoints (items, holding records and instances) should have the same format. &lt;/p&gt;
</comment>
                                                            <comment id="104418" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Tue, 21 Mar 2023 14:27:29 +0000"  >&lt;p&gt;I can file that as a new story, instead of a bug, if we can agree on what the text should be. My suggestion would be: &lt;/p&gt;

&lt;p&gt;Message from the back end: &lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;&quot;Saving an instance with a statistical code being blank/empty (null) is not possible&quot;&lt;/li&gt;
	&lt;li&gt;&quot;Saving a holdings with a statistical code being blank/empty (null) is not possible&quot;&lt;/li&gt;
	&lt;li&gt;&quot;Saving an item with a statistical code being blank/empty (null) is not possible&quot;&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Message in the UI:&lt;br/&gt;
The statistical code field should be in error. Red box with an error message below - saying:&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34697_thumb&quot; href=&quot;/rest/api/3/attachment/content/34697&quot; title=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.24.39 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34697&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.24.39 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34697?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34697&quot; filename=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.24.39 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34697&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.24.39 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;451a43e5-7073-4f06-ac00-56c8de3b4fd6&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt;The UX example above is following the pattern for when an Resource identifier type is missing:&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;34694_thumb&quot; href=&quot;/rest/api/3/attachment/content/34694&quot; title=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.19.36 em.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;34694&quot; file-preview-title=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.19.36 em.png&quot;&gt;&lt;jira-attachment-thumbnail url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34694?default=false&quot; jira-url=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34694&quot; filename=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.19.36 em.png&quot;&gt;&lt;img src=&quot;https://folio-org.atlassian.net/rest/api/3/attachment/thumbnail/34694&quot; data-attachment-name=&quot;Ska&#776;rmavbild 2023-03-21 kl. 3.19.36 em.png&quot; data-attachment-type=&quot;thumbnail&quot; data-media-services-id=&quot;471efa3b-10be-4ebf-a5a7-5ca0a3d3dc05&quot; data-media-services-type=&quot;file&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/jira-attachment-thumbnail&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt;Any thoughts &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; class=&quot;user-hover&quot; rel=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; data-account-id=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; accountid=&quot;557058:ff6a9612-bb35-41b2-88a8-a5b66d0a41a0&quot; rel=&quot;noreferrer&quot;&gt;Michal Kuklis&lt;/a&gt;&lt;/p&gt;



</comment>
                                                            <comment id="104419" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Tue, 21 Mar 2023 14:55:30 +0000"  >&lt;p&gt;I think that is fine. You could even truncate it and do:&lt;/p&gt;

&lt;p&gt;&quot;Statistical code can not be blank/empty&quot;&lt;/p&gt;</comment>
                                                            <comment id="104420" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Tue, 21 Mar 2023 15:21:12 +0000"  >&lt;p&gt;Excellent &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Aeb198214-3032-45c9-9781-9967c26deb3f&quot; class=&quot;user-hover&quot; rel=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; data-account-id=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; accountid=&quot;557058:eb198214-3032-45c9-9781-9967c26deb3f&quot; rel=&quot;noreferrer&quot;&gt;Thomas Trutt&lt;/a&gt; - I&apos;ll write that up.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10008">
                    <name>Defines</name>
                                            <outwardlinks description="defines">
                                        <issuelink>
            <issuekey id="12445">UXPROD-3815</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10002">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="45816">UIIN-2334</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="45816">UIIN-2334</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="34664" name="Screen Shot 2022-12-19 at 4.04.58 PM.png" size="109346" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Mon, 19 Dec 2022 21:13:54 +0000"/>
                            <attachment id="34668" name="Screen Shot 2022-12-19 at 4.05.40 PM.png" size="82800" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Mon, 19 Dec 2022 21:13:54 +0000"/>
                            <attachment id="34672" name="Screen Shot 2022-12-19 at 4.05.50 PM.png" size="103145" author="557058:eb198214-3032-45c9-9781-9967c26deb3f" created="Mon, 19 Dec 2022 21:13:54 +0000"/>
                            <attachment id="34676" name="Ska&#776;rmavbild 2022-12-19 kl. 10.56.24 em.png" size="516047" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 19 Dec 2022 21:56:54 +0000"/>
                            <attachment id="34678" name="Ska&#776;rmavbild 2022-12-19 kl. 10.59.41 em.png" size="361553" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 19 Dec 2022 22:06:31 +0000"/>
                            <attachment id="34681" name="Ska&#776;rmavbild 2023-03-20 kl. 7.47.01 em.png" size="336831" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:52:51 +0000"/>
                            <attachment id="34682" name="Ska&#776;rmavbild 2023-03-20 kl. 7.47.20 em.png" size="364212" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:52:51 +0000"/>
                            <attachment id="34685" name="Ska&#776;rmavbild 2023-03-20 kl. 7.47.39 em.png" size="336493" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:52:52 +0000"/>
                            <attachment id="34686" name="Ska&#776;rmavbild 2023-03-20 kl. 7.48.33 em.png" size="882685" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:54:31 +0000"/>
                            <attachment id="34689" name="Ska&#776;rmavbild 2023-03-20 kl. 7.48.48 em.png" size="352674" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:54:31 +0000"/>
                            <attachment id="34690" name="Ska&#776;rmavbild 2023-03-20 kl. 7.49.29 em.png" size="397742" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:56:26 +0000"/>
                            <attachment id="34693" name="Ska&#776;rmavbild 2023-03-20 kl. 7.49.49 em.png" size="908872" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Mon, 20 Mar 2023 18:56:26 +0000"/>
                            <attachment id="34694" name="Ska&#776;rmavbild 2023-03-21 kl. 3.19.36 em.png" size="16971" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Tue, 21 Mar 2023 14:26:15 +0000"/>
                            <attachment id="34697" name="Ska&#776;rmavbild 2023-03-21 kl. 3.24.39 em.png" size="46557" author="557058:f80403de-e149-421e-8750-af45c853402f" created="Tue, 21 Mar 2023 14:25:12 +0000"/>
                            <attachment id="34698" name="screenshot-1.png" size="57381" author="5c48911b54e1e6466b11f38c" created="Wed, 25 Jan 2023 19:02:51 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                        <customfield id="customfield_10107" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Affected Institution</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10388"><![CDATA[!!!ALL!!!]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10057" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Development Team</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10171"><![CDATA[Prokopovych]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10063" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>PO Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10106" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>RCA Group</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10374"><![CDATA[Incomplete/missing requirements]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i05zq3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10046" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Release</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10068"><![CDATA[Orchid (R1 2023)  Bug Fix]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="1477">Prokopovych - Sprint 158</customfieldvalue>
    <customfieldvalue id="1525">Prokopovych - Sprint 159</customfieldvalue>
    <customfieldvalue id="1526">Prokopovych - Sprint 160</customfieldvalue>
    <customfieldvalue id="1527">Prokopovych - Sprint 161</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10108" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Tester Assignee</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>557058:f80403de-e149-421e-8750-af45c853402f</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10024" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>[CHART] Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 19 Dec 2022 22:06:08 +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>