KohaSuomi / Koha

(KOHA) Koha is a free software integrated library system (ILS). Koha is distributed under the GNU GPL version 3 or later. Note: this is a synced mirror of the official Koha repo.
https://koha-community.org/
GNU General Public License v3.0
7 stars 13 forks source link

Raportti, jolla saa vanhemmat lokitiedot nimekkeestä #756

Closed pknuuti closed 1 year ago

pknuuti commented 1 year ago

Tukipyyntö

Nimekkeen muutoslokissa näkyy suoraan vain kuluvan ja edellisen vuoden tiedot. Tarvitsen vuoden 2020 tiedot nimekkeestä. Tarvitaan raportti, jolla voi hakea vanhoista action_logseista tarvittavan vuoden tiedot.

Jotain muuta?

No response

AnneliO commented 1 year ago

Vaarassa on nyt raportti nro 771, jossa on tällainen kysely:

select timestamp,user,module,action,object,info,interface from action_logs
where module='CATALOGUING'
and object=<<biblionumber>>

UNION
select timestamp,user,module,action,object,info,interface from action_logs_2021
where module='CATALOGUING'
and object=<<biblionumber>>

UNION
select timestamp,user,module,action,object,info,interface from action_logs_2020
where module='CATALOGUING'
and object=<<biblionumber>>

UNION
select timestamp,user,module,action,object,info,interface from action_logs_2019
where module='CATALOGUING'
and object=<<biblionumber>>

UNION
select timestamp,user,module,action,object,info,interface from action_logs_2018
where module='CATALOGUING'
and object=<<biblionumber>>

UNION
select timestamp,user,module,action,object,info,interface from action_logs_2017
where module='CATALOGUING'
and object=<<biblionumber>>

ORDER BY 1 DESC

Vuositauluja oli Vaarassa vain vuoteen 2017 saakka. Tiedot järjestetään timestampin mukaan laskevasti.

pknuuti commented 1 year ago

Kiitän ja suljen tiketin.

AnneliO commented 1 year ago

Muistiin tänne, että raportti lisätty nyt myös Raportti-kirjastoon Lokien katselu -osioon.