]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/money.pm
6661bacd809aadd5d3ded4810e3ed00436668ca2
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / CDBI / money.pm
1 package OpenILS::Application::Storage::CDBI::money;
2 our $VERSION = 1;
3
4 #-------------------------------------------------------------------------------
5 package money;
6 use base qw/OpenILS::Application::Storage::CDBI/;
7 #-------------------------------------------------------------------------------
8
9 package money::billable_transaction;
10 use base qw/money/;
11 __PACKAGE__->table('money_billable_xact');
12 __PACKAGE__->columns(Primary => 'id');
13 __PACKAGE__->columns(Essential => qw/xact_start usr/);
14 __PACKAGE__->columns(Others => qw/xact_finish/);
15 #-------------------------------------------------------------------------------
16
17 package money::open_user_summary;
18 use base qw/money/;
19 __PACKAGE__->table('money_open_user_summary');
20 __PACKAGE__->columns(Primary => 'usr');
21 __PACKAGE__->columns(Essential => qw/total_paid total_owed balance_owed/);
22 #-------------------------------------------------------------------------------
23
24 package money::user_summary;
25 use base qw/money/;
26 __PACKAGE__->table('money_user_summary');
27 __PACKAGE__->columns(Primary => 'usr');
28 __PACKAGE__->columns(Essential => qw/total_paid total_owed balance_owed/);
29 #-------------------------------------------------------------------------------
30
31 package money::open_user_circulation_summary;
32 use base qw/money/;
33 __PACKAGE__->table('money_open_user_circulation_summary');
34 __PACKAGE__->columns(Primary => 'usr');
35 __PACKAGE__->columns(Essential => qw/total_paid total_owed balance_owed/);
36 #-------------------------------------------------------------------------------
37
38 package money::user_circulation_summary;
39 use base qw/money/;
40 __PACKAGE__->table('money_user_circulation_summary');
41 __PACKAGE__->columns(Primary => 'usr');
42 __PACKAGE__->columns(Essential => qw/total_paid total_owed balance_owed/);
43 #-------------------------------------------------------------------------------
44
45 package money::open_billable_transaction_summary;
46 use base qw/money/;
47 __PACKAGE__->table('money_open_billable_transaction_summary');
48 __PACKAGE__->columns(Primary => 'id');
49 __PACKAGE__->columns(Essential => qw/xact_start usr xact_finish total_paid
50                                      last_payment_ts total_owed last_billing_ts
51                                      balance_owed xact_type last_billing_note last_billing_type
52                                      last_payment_note last_payment_type/);
53 #-------------------------------------------------------------------------------
54
55 package money::billable_transaction_summary;
56 use base qw/money/;
57 __PACKAGE__->table('money_billable_transaction_summary');
58 __PACKAGE__->columns(Primary => 'id');
59 __PACKAGE__->columns(Essential => qw/xact_start usr xact_finish total_paid
60                                      last_payment_ts total_owed last_billing_ts
61                                      balance_owed xact_type last_billing_note last_billing_type
62                                      last_payment_note last_payment_type/);
63 #-------------------------------------------------------------------------------
64
65 package money::billing;
66 use base qw/money/;
67 __PACKAGE__->table('money_billing');
68 __PACKAGE__->columns(Primary => 'id');
69 __PACKAGE__->columns(Essential => qw/xact amount billing_ts note voided/);
70 #-------------------------------------------------------------------------------
71
72 package money::payment;
73 use base qw/money/;
74 __PACKAGE__->table('money_payment');
75 __PACKAGE__->columns(Primary => 'id');
76 __PACKAGE__->columns(Essential => qw/xact amount payment_ts payment_type/);
77 __PACKAGE__->columns(Others => qw/note/);
78 #-------------------------------------------------------------------------------
79
80 package money::cash_payment;
81 use base qw/money/;
82 __PACKAGE__->table('money_cash_payment');
83 __PACKAGE__->columns(Primary => 'id');
84 __PACKAGE__->columns(Essential => qw/xact amount payment_ts cash_drawer accepting_usr amount_collected/);
85 __PACKAGE__->columns(Others => qw/note/);
86 #-------------------------------------------------------------------------------
87
88 package money::check_payment;
89 use base qw/money/;
90 __PACKAGE__->table('money_check_payment');
91 __PACKAGE__->columns(Primary => 'id');
92 __PACKAGE__->columns(Essential => qw/xact amount payment_ts cash_drawer check_number accepting_usr amount_collected/);
93 __PACKAGE__->columns(Others => qw/note/);
94 #-------------------------------------------------------------------------------
95
96 package money::credit_card_payment;
97 use base qw/money/;
98 __PACKAGE__->table('money_credit_card_payment');
99 __PACKAGE__->columns(Primary => 'id');
100 __PACKAGE__->columns(Essential => qw/xact amount payment_ts cash_drawer
101                                      accepting_usr amount_collected cc_type
102                                      cc_number expire_month expire_year
103                                      approval_code/);
104 __PACKAGE__->columns(Others => 'note');
105 #-------------------------------------------------------------------------------
106
107 package money::forgive_payment;
108 use base qw/money/;
109 __PACKAGE__->table('money_forgive_payment');
110 __PACKAGE__->columns(Primary => 'id');
111 __PACKAGE__->columns(Essential => qw/xact amount payment_ts accepting_usr amount_collected/);
112 __PACKAGE__->columns(Others => qw/note/);
113 #-------------------------------------------------------------------------------
114
115 package money::work_payment;
116 use base qw/money::forgive_payment/;
117 __PACKAGE__->table('money_work_payment');
118 #-------------------------------------------------------------------------------
119
120 package money::credit_payment;
121 use base qw/money::forgive_payment/;
122 __PACKAGE__->table('money_credit_payment');
123
124 #-------------------------------------------------------------------------------
125
126 1;
127