Merge pull request #10585 from JMAConsulting/CRM-17748
[civicrm-core.git] / xml / schema / Financial / FinancialTrxn.xml
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2
3 <table>
4 <base>CRM/Financial</base>
5 <class>FinancialTrxn</class>
6 <name>civicrm_financial_trxn</name>
7 <add>1.3</add>
8 <log>true</log>
9 <field>
10 <name>id</name>
11 <title>Financial Transaction ID</title>
12 <type>int unsigned</type>
13 <required>true</required>
14 <add>1.3</add>
15 </field>
16 <primaryKey>
17 <name>id</name>
18 <autoincrement>true</autoincrement>
19 </primaryKey>
20 <field>
21 <name>from_account_id</name>
22 <type>int unsigned</type>
23 <comment>FK to financial_account table.</comment>
24 <add>3.2</add>
25 <drop>4.3</drop>
26 </field>
27 <foreignKey>
28 <name>from_account_id</name>
29 <table>civicrm_financial_account</table>
30 <key>id</key>
31 <add>3.2</add>
32 <drop>4.3</drop>
33 </foreignKey>
34 <field>
35 <name>to_account_id</name>
36 <type>int unsigned</type>
37 <comment>FK to financial_account table.</comment>
38 <add>3.2</add>
39 <drop>4.3</drop>
40 </field>
41 <foreignKey>
42 <name>to_account_id</name>
43 <table>civicrm_financial_account</table>
44 <key>id</key>
45 <add>3.2</add>
46 <drop>4.3</drop>
47 </foreignKey>
48 <field>
49 <name>from_financial_account_id</name>
50 <type>int unsigned</type>
51 <title>Financial Transaction From Account</title>
52 <comment>FK to financial_account table.</comment>
53 <add>4.3</add>
54 <pseudoconstant>
55 <table>civicrm_financial_account</table>
56 <keyColumn>id</keyColumn>
57 <labelColumn>name</labelColumn>
58 </pseudoconstant>
59 <html>
60 <type>Select</type>
61 </html>
62 </field>
63 <foreignKey>
64 <name>from_financial_account_id</name>
65 <table>civicrm_financial_account</table>
66 <key>id</key>
67 <add>4.3</add>
68 </foreignKey>
69 <field>
70 <name>to_financial_account_id</name>
71 <title>Financial Transaction To Account</title>
72 <type>int unsigned</type>
73 <comment>FK to financial_financial_account table.</comment>
74 <add>4.3</add>
75 <pseudoconstant>
76 <table>civicrm_financial_account</table>
77 <keyColumn>id</keyColumn>
78 <labelColumn>name</labelColumn>
79 </pseudoconstant>
80 <html>
81 <type>Select</type>
82 </html>
83 </field>
84 <foreignKey>
85 <name>to_financial_account_id</name>
86 <table>civicrm_financial_account</table>
87 <key>id</key>
88 <add>4.3</add>
89 </foreignKey>
90 <field>
91 <name>trxn_date</name>
92 <title>Financial Transaction Date</title>
93 <type>datetime</type>
94 <default>NULL</default>
95 <comment>date transaction occurred</comment>
96 <add>1.3</add>
97 <html>
98 <type>Select Date</type>
99 <formatType>activityDateTime</formatType>
100 </html>
101 </field>
102 <field>
103 <name>trxn_type</name>
104 <title>Financial Transaction Type</title>
105 <type>enum</type>
106 <values>Debit,Credit</values>
107 <required>true</required>
108 <add>1.3</add>
109 <drop>4.3</drop>
110 </field>
111 <field>
112 <name>total_amount</name>
113 <title>Financial Total Amount</title>
114 <type>decimal</type>
115 <required>true</required>
116 <comment>amount of transaction</comment>
117 <add>1.3</add>
118 </field>
119 <field>
120 <name>fee_amount</name>
121 <title>Financial Fee Amount</title>
122 <type>decimal</type>
123 <comment>actual processor fee if known - may be 0.</comment>
124 <add>1.3</add>
125 </field>
126 <field>
127 <name>net_amount</name>
128 <title>Financial Net Amount</title>
129 <type>decimal</type>
130 <comment>actual funds transfer amount. total less fees. if processor does not report actual fee during transaction, this is set to total_amount.</comment>
131 <add>1.3</add>
132 </field>
133 <field>
134 <name>currency</name>
135 <title>Financial Currency</title>
136 <type>varchar</type>
137 <length>3</length>
138 <default>NULL</default>
139 <import>true</import>
140 <headerPattern>/cur(rency)?/i</headerPattern>
141 <dataPattern>/^[A-Z]{3}$/</dataPattern>
142 <comment>3 character string, value from config setting or input via user.</comment>
143 <add>1.3</add>
144 <pseudoconstant>
145 <table>civicrm_currency</table>
146 <keyColumn>name</keyColumn>
147 <labelColumn>full_name</labelColumn>
148 <nameColumn>name</nameColumn>
149 </pseudoconstant>
150 <html>
151 <type>Select</type>
152 </html>
153 </field>
154 <field>
155 <name>is_payment</name>
156 <title>Is Payment?</title>
157 <type>boolean</type>
158 <default>0</default>
159 <import>true</import>
160 <comment>Is this entry either a payment or a reversal of a payment?</comment>
161 <add>4.7</add>
162 </field>
163 <field>
164 <name>payment_processor</name>
165 <type>varchar</type>
166 <length>64</length>
167 <required>true</required>
168 <comment>derived from Processor setting in civicrm.settings.php.</comment>
169 <add>1.3</add>
170 <drop>4.3</drop>
171 </field>
172 <field>
173 <name>trxn_id</name>
174 <title>Transaction ID</title>
175 <type>varchar</type>
176 <length>255</length>
177 <comment>Transaction id supplied by external processor. This may not be unique.</comment>
178 <html>
179 <type>Text</type>
180 <size>10</size>
181 </html>
182 <add>1.3</add>
183 </field>
184 <index>
185 <name>UI_ftrxn_trxn_id</name>
186 <fieldName>trxn_id</fieldName>
187 <add>4.7</add>
188 </index>
189 <field>
190 <name>trxn_result_code</name>
191 <title>Transaction Result Code</title>
192 <type>varchar</type>
193 <length>255</length>
194 <comment>processor result code</comment>
195 <add>1.3</add>
196 </field>
197 <field>
198 <name>status_id</name>
199 <title>Financial Transaction Status Id</title>
200 <type>int unsigned</type>
201 <import>true</import>
202 <export>true</export>
203 <pseudoconstant>
204 <optionGroupName>contribution_status</optionGroupName>
205 </pseudoconstant>
206 <comment>pseudo FK to civicrm_option_value of contribution_status_id option_group</comment>
207 <headerPattern>/status/i</headerPattern>
208 <add>4.3</add>
209 </field>
210 <field>
211 <name>payment_processor_id</name>
212 <title>Payment Processor</title>
213 <type>int unsigned</type>
214 <comment>Payment Processor for this financial transaction</comment>
215 <add>4.3</add>
216 </field>
217 <foreignKey>
218 <name>payment_processor_id</name>
219 <table>civicrm_payment_processor</table>
220 <key>id</key>
221 <onDelete>SET NULL</onDelete>
222 <add>4.3</add>
223 </foreignKey>
224 <field>
225 <name>payment_instrument_id</name>
226 <uniqueName>financial_trxn_payment_instrument_id</uniqueName>
227 <title>Payment Method</title>
228 <type>int unsigned</type>
229 <comment>FK to payment_instrument option group values</comment>
230 <pseudoconstant>
231 <optionGroupName>payment_instrument</optionGroupName>
232 </pseudoconstant>
233 <html>
234 <type>Select</type>
235 </html>
236 <add>4.3</add>
237 </field>
238 <index>
239 <name>UI_ftrxn_payment_instrument_id</name>
240 <fieldName>payment_instrument_id</fieldName>
241 <add>4.3</add>
242 </index>
243 <field>
244 <name>card_type_id</name>
245 <uniqueName>financial_trxn_card_type_id</uniqueName>
246 <title>Card Type ID</title>
247 <type>int unsigned</type>
248 <comment>FK to accept_creditcard option group values</comment>
249 <pseudoconstant>
250 <optionGroupName>accept_creditcard</optionGroupName>
251 </pseudoconstant>
252 <html>
253 <type>Select</type>
254 </html>
255 <add>4.7</add>
256 </field>
257 <field>
258 <name>check_number</name>
259 <uniqueName>financial_trxn_check_number</uniqueName>
260 <title>Check Number</title>
261 <comment>Check number</comment>
262 <type>varchar</type>
263 <length>255</length>
264 <html>
265 <type>Text</type>
266 <size>6</size>
267 </html>
268 <add>4.3</add>
269 </field>
270 <index>
271 <name>UI_ftrxn_check_number</name>
272 <fieldName>check_number</fieldName>
273 <add>4.3</add>
274 </index>
275 <field>
276 <name>pan_truncation</name>
277 <uniqueName>financial_trxn_pan_truncation</uniqueName>
278 <title>Pan Truncation</title>
279 <type>varchar</type>
280 <length>4</length>
281 <html>
282 <type>Text</type>
283 <size>4</size>
284 </html>
285 <comment>Last 4 digits of credit card</comment>
286 <add>4.7</add>
287 </field>
288 </table>