Bug 23354: (follow-up) Update for bugs 23049 and 23805
[koha.git] / installer / data / mysql / account_credit_types.sql
blob5cf04abb15a8142b7601c2fa0be20c62740f2c0a
1 INSERT INTO account_credit_types ( code, description, can_be_added_manually, is_system ) VALUES
2 ('PAYMENT', 'Payment', 0, 1),
3 ('WRITEOFF', 'Writeoff', 0, 1),
4 ('FORGIVEN', 'Forgiven', 1, 1),
5 ('CREDIT', 'Credit', 1, 1),
6 ('REFUND', 'A refund applied to a patrons fine', 0, 1),
7 ('LOST_RETURN', 'Lost item fee refund', 0, 1),
8 ('PURCHASE', 'Purchase', 0, 1);
10 INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('PAYMENT_TYPE','CASH','Cash');