Bug 26922: Regression tests
[koha.git] / installer / data / mysql / mandatory / account_credit_types.sql
blob5ed88fdd2ba080e6caf84282706a5c2da5594de2
1 INSERT INTO account_credit_types ( code, description, can_be_added_manually, is_system ) VALUES
2 ('OVERPAYMENT', 'Overpayment refund', 0, 1),
3 ('PAYMENT', 'Payment', 0, 1),
4 ('WRITEOFF', 'Writeoff', 0, 1),
5 ('FORGIVEN', 'Forgiven', 1, 1),
6 ('CREDIT', 'Credit', 1, 1),
7 ('DISCOUNT', 'A discount applied to a patrons fine', 0, 1),
8 ('REFUND', 'A refund applied to a patrons fine', 0, 1),
9 ('LOST_FOUND', 'Lost item fee refund', 0, 1),
10 ('PURCHASE', 'Purchase', 0, 1),
11 ('CANCELLATION', 'Cancellation', 0, 1);
13 INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('PAYMENT_TYPE','CASH','Cash');