View | Details | Raw Unified | Return to bug 6427
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-44 / +91 lines)
Lines 265-270 CREATE TABLE `borrowers` ( -- this table includes information about your patrons Link Here
265
  `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
265
  `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
266
  `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
266
  `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
267
  `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history
267
  `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history
268
  `account_balance` decimal(28,6) NOT NULL,
268
  UNIQUE KEY `cardnumber` (`cardnumber`),
269
  UNIQUE KEY `cardnumber` (`cardnumber`),
269
  PRIMARY KEY `borrowernumber` (`borrowernumber`),
270
  PRIMARY KEY `borrowernumber` (`borrowernumber`),
270
  KEY `categorycode` (`categorycode`),
271
  KEY `categorycode` (`categorycode`),
Lines 2705-2754 CREATE TABLE `messages` ( -- circulation messages left via the patron's check ou Link Here
2705
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2706
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2706
2707
2707
--
2708
--
2708
-- Table structure for table `accountlines`
2709
--
2710
2711
DROP TABLE IF EXISTS `accountlines`;
2712
CREATE TABLE `accountlines` (
2713
  `accountlines_id` int(11) NOT NULL AUTO_INCREMENT,
2714
  `borrowernumber` int(11) NOT NULL default 0,
2715
  `accountno` smallint(6) NOT NULL default 0,
2716
  `itemnumber` int(11) default NULL,
2717
  `date` date default NULL,
2718
  `amount` decimal(28,6) default NULL,
2719
  `description` mediumtext,
2720
  `dispute` mediumtext,
2721
  `accounttype` varchar(5) default NULL,
2722
  `amountoutstanding` decimal(28,6) default NULL,
2723
  `lastincrement` decimal(28,6) default NULL,
2724
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2725
  `notify_id` int(11) NOT NULL default 0,
2726
  `notify_level` int(2) NOT NULL default 0,
2727
  `note` text NULL default NULL,
2728
  `manager_id` int(11) NULL,
2729
  PRIMARY KEY (`accountlines_id`),
2730
  KEY `acctsborridx` (`borrowernumber`),
2731
  KEY `timeidx` (`timestamp`),
2732
  KEY `itemnumber` (`itemnumber`),
2733
  CONSTRAINT `accountlines_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2734
  CONSTRAINT `accountlines_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE SET NULL
2735
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2736
2737
--
2738
-- Table structure for table `accountoffsets`
2739
--
2740
2741
DROP TABLE IF EXISTS `accountoffsets`;
2742
CREATE TABLE `accountoffsets` (
2743
  `borrowernumber` int(11) NOT NULL default 0,
2744
  `accountno` smallint(6) NOT NULL default 0,
2745
  `offsetaccount` smallint(6) NOT NULL default 0,
2746
  `offsetamount` decimal(28,6) default NULL,
2747
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2748
  CONSTRAINT `accountoffsets_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
2749
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2750
2751
--
2752
-- Table structure for table `action_logs`
2709
-- Table structure for table `action_logs`
2753
--
2710
--
2754
2711
Lines 3456-3461 CREATE TABLE IF NOT EXISTS columns_settings ( Link Here
3456
    PRIMARY KEY(module, page, tablename, columnname)
3413
    PRIMARY KEY(module, page, tablename, columnname)
3457
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3414
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3458
3415
3416
--
3417
-- Table structure for table 'account_credits'
3418
--
3419
DROP TABLE IF EXISTS account_credits;
3420
CREATE TABLE IF account_credits (
3421
    credit_id int(11) NOT NULL AUTO_INCREMENT,     -- The unique id for this credit
3422
    borrowernumber int(11) NOT NULL,               -- The borrower this credit applies to
3423
    `type` varchar(255) NOT NULL,                  -- The type of credit this is ( defined by Koha::Accounts::CreditTypes )
3424
    amount_received decimal(28,6) DEFAULT NULL,    -- If this was a cash payment, the amount of money given
3425
    amount_paid decimal(28,6) NOT NULL,            -- The actual ammount paid, if less than amount_recieved, change was given back
3426
    amount_remaining decimal(28,6) NOT NULL,       -- The amount of this credit that has not been applied to outstanding debits
3427
    amount_voided decimal(28,6) NULL DEFAULT NULL, -- The amount of this credit was for before it was voided
3428
    notes text,                                    -- Misc notes for this credit
3429
    branchcode VARCHAR( 10 ) NULL DEFAULT NULL,    -- Branchcode where the credit was created ( if any )
3430
    manager_id int(11) DEFAULT NULL,               -- The borrowernumber of the user who created this credit ( if any )
3431
    created_on timestamp NULL DEFAULT NULL,        -- Timestamp for when this credit was created
3432
    updated_on timestamp NULL DEFAULT NULL,        -- Timestamp for when this credit was last modified
3433
    PRIMARY KEY (credit_id),
3434
    KEY borrowernumber (borrowernumber),
3435
    KEY branchcode (branchcode)
3436
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
3437
3438
--
3439
-- Constraints for table `account_credits`
3440
--
3441
ALTER TABLE `account_credits`
3442
  ADD CONSTRAINT account_credits_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3443
  ADD CONSTRAINT account_credits_ibfk_2 FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE;
3444
3445
--
3446
-- Table structure for table 'account_debits'
3447
--
3448
3449
DROP TABLE IF EXISTS account_debits;
3450
CREATE TABLE account_debits (
3451
    debit_id int(11) NOT NULL AUTO_INCREMENT,           -- The unique id for this debit
3452
    borrowernumber int(11) NOT NULL DEFAULT '0',        -- The borrower this debit applies to
3453
    itemnumber int(11) DEFAULT NULL,                    -- The item related to this debit ( for fines, lost fees, etc )
3454
    issue_id int(11) DEFAULT NULL,                      -- The checkout this debit is related to ( again, for fines, lost fees, etc )
3455
    `type` varchar(255) NOT NULL,                       -- The type of debit this is ( defined by Koha::Accounts::DebitTypes )
3456
    accruing tinyint(1) NOT NULL DEFAULT '0',           -- Boolean flag, tells of if this is a fine that is still accruing
3457
    amount_original decimal(28,6) DEFAULT NULL,         -- The total amount of this debit
3458
    amount_outstanding decimal(28,6) DEFAULT NULL,      -- The amount still owed on this debit
3459
    amount_last_increment decimal(28,6) DEFAULT NULL,   -- The amount by which this debit last changed
3460
    description mediumtext,                             -- The description for this debit
3461
    notes text,                                         -- Misc notes for this debit
3462
    branchcode VARCHAR( 10 ) NULL DEFAULT NULL,         -- Branchcode where the debit was created ( if any )
3463
    manager_id int(11) DEFAULT NULL,                    -- The borrowernumber of the user who created this debit ( if any )
3464
    created_on timestamp NULL DEFAULT NULL,             -- Timestamp for when this credit was created
3465
    updated_on timestamp NULL DEFAULT NULL,             -- Timestamp for when this credit was last modified
3466
    PRIMARY KEY (debit_id),
3467
    KEY acctsborridx (borrowernumber),
3468
    KEY itemnumber (itemnumber),
3469
    KEY borrowernumber (borrowernumber),
3470
    KEY issue_id (issue_id),
3471
    KEY branchcode (branchcode)
3472
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
3473
3474
--
3475
-- Constraints for table `account_debits`
3476
--
3477
ALTER TABLE `account_debits`
3478
    ADD CONSTRAINT account_debits_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3479
    ADD CONSTRAINT account_debits_ibfk_2 FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE;
3480
3481
--
3482
-- Table structure for table 'account_offsets'
3483
--
3484
3485
DROP TABLE IF EXISTS account_offsets;
3486
CREATE TABLE account_offsets (
3487
    offset_id int(11) NOT NULL AUTO_INCREMENT,                                              -- Unique id for this offset
3488
    debit_id int(11) DEFAULT NULL,                                                          -- Related debit
3489
    credit_id int(11) DEFAULT NULL,                                                         -- Related credit ( if any )
3490
    `type` varchar(255) DEFAULT NULL,                                                       -- The type of this offset ( defined by Koha::Accounts::OffsetTypes ), if any
3491
    amount decimal(28,6) NOT NULL,                                                          -- The amount of the offset, positive means patron owes more, negative means patron owes less
3492
    created_on timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,    -- Timestamp for when this offset was created
3493
    PRIMARY KEY (offset_id),
3494
    KEY fee_id (debit_id),
3495
    KEY payment_id (credit_id)
3496
) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
3497
3498
--
3499
-- Constraints for table `account_offsets`
3500
--
3501
ALTER TABLE `account_offsets`
3502
    ADD CONSTRAINT account_offsets_ibfk_1 FOREIGN KEY (debit_id) REFERENCES account_debits (debit_id) ON DELETE CASCADE ON UPDATE CASCADE,
3503
    ADD CONSTRAINT account_offsets_ibfk_2 FOREIGN KEY (credit_id) REFERENCES account_credits (credit_id) ON DELETE CASCADE ON UPDATE CASCADE;
3504
3505
3459
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
3506
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
3460
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
3507
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
3461
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
3508
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +184 lines)
Lines 37-42 use Getopt::Long; Link Here
37
use C4::Context;
37
use C4::Context;
38
use C4::Installer;
38
use C4::Installer;
39
use C4::Dates;
39
use C4::Dates;
40
use Koha::Database;
40
41
41
use MARC::Record;
42
use MARC::Record;
42
use MARC::File::XML ( BinaryEncoding => 'utf8' );
43
use MARC::File::XML ( BinaryEncoding => 'utf8' );
Lines 7257-7262 if ( CheckVersion($DBversion) ) { Link Here
7257
7258
7258
    $dbh->{AutoCommit} = 1;
7259
    $dbh->{AutoCommit} = 1;
7259
    $dbh->{RaiseError} = 0;
7260
    $dbh->{RaiseError} = 0;
7261
   SetVersion ($DBversion);
7260
}
7262
}
7261
7263
7262
$DBversion = "3.13.00.031";
7264
$DBversion = "3.13.00.031";
Lines 8800-8805 if ( CheckVersion($DBversion) ) { Link Here
8800
    SetVersion($DBversion);
8802
    SetVersion($DBversion);
8801
}
8803
}
8802
8804
8805
$DBversion = "3.17.00.XXX";
8806
if ( CheckVersion($DBversion) ) {
8807
    $dbh->do(q{
8808
        ALTER TABLE old_issues ADD issue_id INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST
8809
    });
8810
    $dbh->do(q{
8811
        ALTER TABLE issues ADD issue_id INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
8812
    });
8813
    $dbh->do(q{
8814
        UPDATE issues SET issue_id = issue_id + ( SELECT COUNT(*) FROM old_issues ) ORDER BY issue_id DESC
8815
    });
8816
8817
    $dbh->do("
8818
        CREATE TABLE IF NOT EXISTS account_credits (
8819
            credit_id int(11) NOT NULL AUTO_INCREMENT,
8820
            borrowernumber int(11) NOT NULL,
8821
            `type` varchar(255) NOT NULL,
8822
            amount_received decimal(28,6) DEFAULT NULL,
8823
            amount_paid decimal(28,6) NOT NULL,
8824
            amount_remaining decimal(28,6) NOT NULL,
8825
            amount_voided decimal(28,6) NULL DEFAULT NULL,
8826
            notes text,
8827
            branchcode VARCHAR( 10 ) NULL DEFAULT NULL,
8828
            manager_id int(11) DEFAULT NULL,
8829
            created_on timestamp NULL DEFAULT NULL,
8830
            updated_on timestamp NULL DEFAULT NULL,
8831
            PRIMARY KEY (credit_id),
8832
            KEY borrowernumber (borrowernumber),
8833
            KEY branchcode (branchcode)
8834
        ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
8835
    ");
8836
    $dbh->do("
8837
        CREATE TABLE IF NOT EXISTS account_debits (
8838
            debit_id int(11) NOT NULL AUTO_INCREMENT,
8839
            borrowernumber int(11) NOT NULL DEFAULT '0',
8840
            itemnumber int(11) DEFAULT NULL,
8841
            issue_id int(11) DEFAULT NULL,
8842
            `type` varchar(255) NOT NULL,
8843
            accruing tinyint(1) NOT NULL DEFAULT '0',
8844
            amount_original decimal(28,6) DEFAULT NULL,
8845
            amount_outstanding decimal(28,6) DEFAULT NULL,
8846
            amount_last_increment decimal(28,6) DEFAULT NULL,
8847
            description mediumtext,
8848
            notes text,
8849
            branchcode VARCHAR( 10 ) NULL DEFAULT NULL,
8850
            manager_id int(11) DEFAULT NULL,
8851
            created_on timestamp NULL DEFAULT NULL,
8852
            updated_on timestamp NULL DEFAULT NULL,
8853
            PRIMARY KEY (debit_id),
8854
            KEY acctsborridx (borrowernumber),
8855
            KEY itemnumber (itemnumber),
8856
            KEY borrowernumber (borrowernumber),
8857
            KEY issue_id (issue_id),
8858
            KEY branchcode (branchcode)
8859
        ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
8860
    ");
8861
8862
    $dbh->do("
8863
        CREATE TABLE account_offsets (
8864
            offset_id int(11) NOT NULL AUTO_INCREMENT,
8865
            debit_id int(11) DEFAULT NULL,
8866
            credit_id int(11) DEFAULT NULL,
8867
            `type` varchar(255) DEFAULT NULL,
8868
            amount decimal(28,6) NOT NULL COMMENT 'A positive number here represents a payment, a negative is a increase in a fine.',
8869
            created_on timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
8870
            PRIMARY KEY (offset_id),
8871
            KEY fee_id (debit_id),
8872
            KEY payment_id (credit_id)
8873
        ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
8874
    ");
8875
8876
    $dbh->do("
8877
        ALTER TABLE `account_credits`
8878
          ADD CONSTRAINT account_credits_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
8879
          ADD CONSTRAINT account_credits_ibfk_2 FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE;
8880
    ");
8881
    $dbh->do("
8882
        ALTER TABLE `account_debits`
8883
          ADD CONSTRAINT account_debits_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
8884
          ADD CONSTRAINT account_debits_ibfk_2 FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE;
8885
    ");
8886
    $dbh->do("
8887
        ALTER TABLE `account_offsets`
8888
          ADD CONSTRAINT account_offsets_ibfk_1 FOREIGN KEY (debit_id) REFERENCES account_debits (debit_id) ON DELETE CASCADE ON UPDATE CASCADE,
8889
          ADD CONSTRAINT account_offsets_ibfk_2 FOREIGN KEY (credit_id) REFERENCES account_credits (credit_id) ON DELETE CASCADE ON UPDATE CASCADE;
8890
    ");
8891
8892
    $dbh->do("
8893
        ALTER TABLE borrowers ADD account_balance DECIMAL( 28, 6 ) NOT NULL;
8894
    ");
8895
8896
    my $schema = Koha::Database->new()->schema;
8897
    my $debit_rs = $schema->resultset('AccountDebit');
8898
    my $credit_rs = $schema->resultset('AccountCredit');
8899
    my $issues_rs = $schema->resultset('Issue');
8900
8901
    use Koha::Accounts::DebitTypes;
8902
    use Koha::Accounts::CreditTypes;
8903
8904
    my $debit_types_map = {
8905
        'A'    => Koha::Accounts::DebitTypes::AccountManagementFee,
8906
        'F'    => Koha::Accounts::DebitTypes::Fine,
8907
        'FU'   => Koha::Accounts::DebitTypes::Fine,
8908
        'L'    => Koha::Accounts::DebitTypes::Lost,
8909
        'M'    => Koha::Accounts::DebitTypes::Sundry,
8910
        'N'    => Koha::Accounts::DebitTypes::NewCard,
8911
        'Rent' => Koha::Accounts::DebitTypes::Rental,
8912
    };
8913
8914
    my $credit_types_map = {
8915
        'FOR' => Koha::Accounts::CreditTypes::Forgiven,
8916
        'LR'  => Koha::Accounts::CreditTypes::Found,
8917
        'Pay' => Koha::Accounts::CreditTypes::Payment,
8918
        'PAY' => Koha::Accounts::CreditTypes::Payment,
8919
        'WO'  => Koha::Accounts::CreditTypes::WriteOff,
8920
        'W'   => Koha::Accounts::CreditTypes::WriteOff,
8921
        'C'   => Koha::Accounts::CreditTypes::Credit,
8922
        'CR'  => Koha::Accounts::CreditTypes::Credit,
8923
    };
8924
8925
    my $sth = $dbh->prepare("SELECT * FROM accountlines");
8926
    $sth->execute();
8927
    while ( my $a = $sth->fetchrow_hashref() ) {
8928
        if ( $debit_types_map->{ $a->{accounttype} } ) {
8929
            $debit_rs->create(
8930
                {
8931
                    borrowernumber     => $a->{borrowernumber},
8932
                    itemnumber         => $a->{itemnumber},
8933
                    amount_original    => $a->{amount},
8934
                    amount_outstanding => $a->{amountoutstanding},
8935
                    created_on         => $a->{timestamp},
8936
                    description        => $a->{description},
8937
                    notes              => $a->{note},
8938
                    manager_id         => $a->{manager_id},
8939
                    accruing           => $a->{accounttype} eq 'FU',
8940
                    type     => $debit_types_map->{ $a->{accounttype} },
8941
                    issue_id => $a->{accounttype} eq 'FU'
8942
                    ? $issues_rs->single(
8943
                        {
8944
                            borrowernumber => $a->{borrowernumber},
8945
                            itemnumber     => $a->{itemnumber},
8946
                        }
8947
                      )->issue_id()
8948
                    : undef,
8949
                }
8950
            );
8951
        }
8952
        elsif ( $credit_types_map->{ $a->{accounttype} } ) {
8953
            $credit_rs->create(
8954
                {
8955
                    borrowernumber   => $a->{borrowernumber},
8956
                    amount_paid      => $a->{amount} * -1,
8957
                    amount_remaining => $a->{amountoutstanding} * -1,
8958
                    created_on       => $a->{timestamp},
8959
                    notes            => $a->{note},
8960
                    manager_id       => $a->{manager_id},
8961
                    type => $credit_types_map->{ $a->{accounttype} },
8962
                }
8963
            );
8964
        }
8965
        else {
8966
            # Everything else must be a MANUAL_INV
8967
            $debit_rs->create(
8968
                {
8969
                    borrowernumber     => $a->{borrowernumber},
8970
                    itemnumber         => $a->{itemnumber},
8971
                    amount_original    => $a->{amount},
8972
                    amount_outstanding => $a->{amountoutstanding},
8973
                    created_on         => $a->{timestamp},
8974
                    description        => $a->{description},
8975
                    notes              => $a->{note},
8976
                    manager_id         => $a->{manager_id},
8977
                    type               => Koha::Accounts::DebitTypes::Sundry,
8978
                }
8979
            );
8980
        }
8981
    }
8982
8983
    print "Upgrade to $DBversion done ( Bug 6427 - Rewrite of the accounts system )\n";
8984
    SetVersion ($DBversion);
8985
}
8986
8803
=head1 FUNCTIONS
8987
=head1 FUNCTIONS
8804
8988
8805
=head2 TableExists($table)
8989
=head2 TableExists($table)
8806
- 

Return to bug 6427