Lines 41-47
if ( CheckVersion($DBversion) ) {
Link Here
|
41 |
('W', 'Writeoff', 0, 1), |
41 |
('W', 'Writeoff', 0, 1), |
42 |
('WO', 'Writeoff', 0, 1), |
42 |
('WO', 'Writeoff', 0, 1), |
43 |
('FOR', 'Forgiven', 1, 1), |
43 |
('FOR', 'Forgiven', 1, 1), |
44 |
('C', 'Credit', 1, 1), |
44 |
('CREDIT', 'Credit', 1, 1), |
45 |
('LOST_RETURN', 'Lost item fee refund', 0, 1) |
45 |
('LOST_RETURN', 'Lost item fee refund', 0, 1) |
46 |
} |
46 |
} |
47 |
); |
47 |
); |
Lines 75-80
if ( CheckVersion($DBversion) ) {
Link Here
|
75 |
} |
75 |
} |
76 |
); |
76 |
); |
77 |
|
77 |
|
|
|
78 |
# Update accountype 'C' to 'CREDIT' |
79 |
$dbh->do( |
80 |
qq{ |
81 |
UPDATE accountlines SET accounttype = 'CREDIT' WHERE accounttype = 'C' OR accounttype = 'CR' |
82 |
} |
83 |
); |
84 |
|
78 |
# Populating credit_type_code |
85 |
# Populating credit_type_code |
79 |
$dbh->do( |
86 |
$dbh->do( |
80 |
qq{ |
87 |
qq{ |