Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Highlights:

AAM-1152: Get rid of opern session in view and use read only transaction for read operations

AAM-1165: Mass publishing/export of Starbas archive for import to their portal

Tasks:

AAM-1152: Get rid of opern session in view and use read only transaction for read operations

AAM-1156: introduce different taskexecutor for read and write operation

AAM-1151: Add code field in organization

AAM-1163: Make it possible to configure default values for fields

AAM-1165: Mass publishing/export of Starbas archive for import to their portal

AAM-1164: Rename and update method in some class

AAM-1163: Make it possible to configure default values for fields

AAM-1162: Ged rid of open session in view in asta7 part

AN-1639: Remove empty address items in ADRESSER.xml

AN-1638: Fixing Requisition list duplication

AN-1637: Use ES for find queries instead of postgres

AN-1636: UI improvement on Validation report page for Asta5 project

AN-1635: Optimize move and regenerate in backend

AN-1634: Stop loading all members when move button is click in crud list

AN-1631: UI update for Hotkey Dialog page

AN-1629: Remove using count in project tree

AN-1622: Display the number of years from the restriction when showing an object-restriction

AN-1618: Set up production environment for the National Arhives

AN-1612: Error importing content_access_group.xml - type violates not-null constraing

AN-1609: Unify requisition order and filter functionality

AN-1608: Adopt new created toast component from different places where applicable

AN-1606: As a project admin I want to do excel imports in projects I have access to

AN-1603: Available space in Asta 5 and Asta 7 does not match - Asta 5 presents a longer list

AN-1599: Add prefix to accessions based on depot (same as for Arkiv)

AN-1598: Changes to ISAD(G) "Kan publiseres" field and new text in the Publish to portal

AN-1597: Use docker compose plugin instead of using docker compose standalone

AN-1596: Penetration testing round 1

AN-1595: Check zerotier network id

AN-1593: Application/Container health check

AN-1592: API to check if an entity is currently in a requisition

AN-1591: Show default values for fields when creating any content if configured

AN-1587: Allow options to search arkiv by laringsmedium

AN-1586: Move lagringsmedium1/2 for Arkiv into a separate sub-entity as we have done with Tilvekst

AN-1582: Does requisition support multiple organisations having separate issues in the requisition module?

AAM-1147: Changes to Aktør / Participant to enable Starbas functionality

AN-1578: Issue importing single archive when it contains a reference to another archive not present in the target Asta 7 DB

AN-1577: Resolve root/archive entity using ancestor tree

AN-1576: Restrictions - Changes from the National Archives

AN-1566: Include "Lagringsmedium" in the Tilvekst template and migration

AN-1562: Create azure monitor alert with asta7 new instance automation (bitbucket pipeline)

AN-1555: The user should be able to add item format with zero width, height and depth.

AN-1552: Implement New UI of Requisition Cart List Page

AN-1544: Create generic toast message component to show all type of toast message

AAM-1143: Created and updated fields not set when using import

AN-1486: Basic search with filtering on created and updated fields does not make sense

AN-1457: Issues with "Aktørstruktur" where "Del av" seems to be missing in the participant to participant relation

AN-1447: Make releases available to customers

AN-1432: Upgrade scanning projects

Bugs:

AN-1640: Requisition data hide issue

AN-1633: Tree node expand options are not working while the user tries to move any item or click show in the tree from the archive opened tab

AN-1632: Separator sheet download failing when getting a rogue character

AN-1630: Requisition profile page showing error

AN-1627: Project admin does not have access to the requisitions

AN-1625: Unable to do search in asta7

AN-1614: TotalSpace cannot be greater than bay width error when importing from an Asta 5 export

AN-1610: Can't print separator sheets when fields in title has a new line

AN-1605: Requisition list shows UUID in the Created By field

AN-1585: Pagination is missing on the Item format page of the asta repository.

AN-1584: Large separator sheet is getting out of memory error while downloading.

AN-1575: Issues with creating new root units on newly initialised project

AN-1567: Exporting "arkivliste" for larges archives gives a timeout error

AAM-1141: Gui-server crashes due to heap space error during scanning

AAM-1142: When deleting an archive the restrictions are not deleted

AN-1464: The user should not be able to access requisition portal from URL if they don't have access.

Stories:

AN-1600: As a repository user I want to change the format (single and batch) of units in my repository as the imported unit format is not correct

AN-1565: As requisition processer I want to filter requisitions based on the location of the boxes ordered to only process boxes at my location

AN-1509: As a fileposter admin i need to know what causes Fileposter to fail to start

AN-1406: As a customer migrating from Asta 5 to Asta 7 I want access codes (tilgangskoder) available in some form in Asta 7 to be able to give the correct access to archives

SQL Fixes:

  1. For AAM-1163: Make it possible to configure default values for fields issue run the following sql fixes:

    DO $$
        BEGIN
            IF EXISTS(SELECT *
                      FROM information_schema.columns
                      WHERE table_name='field' and column_name='initial_value')
            THEN
                ALTER TABLE public.field DROP COLUMN IF EXISTS text_placeholder;
            ELSE
                IF EXISTS(SELECT *
                          FROM information_schema.columns
                          WHERE table_name='field' and column_name='text_placeholder')
                THEN
                    ALTER TABLE public.field RENAME COLUMN text_placeholder TO initial_value;
                END IF;
            END IF;
        END $$;

Install-package:

How to upgrade:

  1. Upgrade to 1.51

  2. Go to the asta7 directory and run the following script

  • No labels