Lines 5-11
INSERT INTO account_credit_types ( code, description, can_be_added_manually, is_
Link Here
|
5 |
('FORGIVEN', 'Forgiven', 1, 1), |
5 |
('FORGIVEN', 'Forgiven', 1, 1), |
6 |
('CREDIT', 'Credit', 1, 1), |
6 |
('CREDIT', 'Credit', 1, 1), |
7 |
('DISCOUNT', 'A discount applied to a patrons fine', 0, 1), |
7 |
('DISCOUNT', 'A discount applied to a patrons fine', 0, 1), |
8 |
('REFUND', 'A refund applied to a patrons fine', 0, 1), |
8 |
('REFUND', 'Refund', 0, 1), |
9 |
('LOST_FOUND', 'Lost item fee refund', 0, 1), |
9 |
('LOST_FOUND', 'Lost item fee refund', 0, 1), |
10 |
('PURCHASE', 'Purchase', 0, 1), |
10 |
('PURCHASE', 'Purchase', 0, 1), |
11 |
('CANCELLATION', 'Cancellation', 0, 1); |
11 |
('CANCELLATION', 'Cancellation', 0, 1); |
12 |
- |
|
|