Skip to content
  1. Sep 10, 2018
    • Benjamin Rokseth's avatar
      Add Core::Deichman::Circulation · ea7c0d73
      Benjamin Rokseth authored
      ea7c0d73
    • Benjamin Rokseth's avatar
      Implement Core::Circulation in admin and SIP · a7ac2a67
      Benjamin Rokseth authored
      covered:
      
      C4::SIP::ILS::Transaction::Checkin->do_checkin
      C4::SIP::ILS::Transaction::Checkout->do_checkout
      C4::SIP::Sip::MsgType->handle_checkout (add branch)
      circ/circulation.pl
      circ/renew.pl
      circ/returns.pl
      a7ac2a67
    • Benjamin Rokseth's avatar
      Add Core::Community::Circulation · 27444f14
      Benjamin Rokseth authored
      This is the Community subclass of Circulation that should be run as default
      to handle the basic Circulation, and should be interchangable with today's functionality.
      It also adds SIP integration.
      
      to use, add the following in the config section of koha-conf.xml:
       <core_modules>
         <circulation>Core::Community::Circulation</circulation>
         <sip>Core::Community::Circulation::SIP</sip>
       </core_modules>
      
      This is also the default if not set.
      27444f14
    • Benjamin Rokseth's avatar
      Add Core::Circulation · be68587a
      Benjamin Rokseth authored
      This is the Circulation subclass of Core. It is a work in progress, but ideally
      all neccessary subfunctions should be overridable, and it should consist of
      a bare minimum of functionality for handling circulation.
      It is a rewrite of C4::Circulation.
      
      To use, add this in the config section in koha-conf.xml and restart plack:
      
      <core_modules>
        <circulation>Core::Circulation</circulation>
      </core_modules>
      be68587a
    • Benjamin Rokseth's avatar
      Add Core::Main Namespace · ceefe592
      Benjamin Rokseth authored
      - Core::Exceptions
      - Core::Prefs
      
      This is the main class of Core, along with siblings
      Prefs      - to handle sysprefs and overrides, as well as
      Exceptions - Also included are the Makefile and koha-conf setup
      ceefe592
    • Benjamin Rokseth's avatar
      C4::SIP::ILS add missing branch param · f3ddcacb
      Benjamin Rokseth authored
      ILS::Transaction was missing branch param for unknown reason, since
      all transactions needs a branch
      f3ddcacb
  2. Aug 31, 2018
  3. Aug 30, 2018