Merged changes up to version 2.3.4 into unstable.
[fa-stable.git] / gl / includes / ui / gl_bank_ui.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 function display_bank_header(&$order)
13 {
14         global $Ajax, $Refs;
15         $payment = $order->trans_type == ST_BANKPAYMENT;
16
17         div_start('pmt_header');
18
19         start_outer_table(TABLESTYLE2, "width=90%"); // outer table
20
21         table_section(1);
22         
23     bank_accounts_list_row( $payment ? _("From:") : _("To:"), 'bank_account', null, true);
24
25     if ($payment)
26                 bank_balance_row($_POST['bank_account']);
27
28     date_row(_("Date:"), 'date_', '', true, 0, 0, 0, null, true);
29
30         table_section(2, "33%");
31
32         if (!isset($_POST['PayType']))
33         {
34                 if (isset($_GET['PayType']))
35                         $_POST['PayType'] = $_GET['PayType'];
36                 else
37                         $_POST['PayType'] = "";
38         }
39         if (!isset($_POST['person_id']))
40         {
41                 if (isset($_GET['PayPerson']))
42                         $_POST['person_id'] = $_GET['PayPerson'];
43                 else
44                         $_POST['person_id'] = "";
45         }
46         if (isset($_POST['_PayType_update'])) {
47                 $_POST['person_id'] = '';
48                 $Ajax->activate('pmt_header');
49                 $Ajax->activate('code_id');
50                 $Ajax->activate('pagehelp');
51                 $Ajax->activate('editors');
52         }
53     payment_person_types_list_row( $payment ? _("Pay To:"):_("From:"),
54                  'PayType', $_POST['PayType'], true);
55     switch ($_POST['PayType'])
56     {
57                 case PT_MISC :
58                 text_row_ex($payment ?_("To the Order of:"):_("Name:"),
59                                  'person_id', 40, 50);
60                 break;
61                 //case PT_WORKORDER :
62         //      workorders_list_row(_("Work Order:"), 'person_id', null);
63         //      break;
64                 case PT_SUPPLIER :
65                 supplier_list_row(_("Supplier:"), 'person_id', null, false, true, false, true);
66                 break;
67                 case PT_CUSTOMER :
68                 customer_list_row(_("Customer:"), 'person_id', null, false, true, false, true);
69
70                 if (db_customer_has_branches($_POST['person_id']))
71                 {
72                         customer_branches_list_row(_("Branch:"), $_POST['person_id'], 
73                                         'PersonDetailID', null, false, true, true, true);
74                 }
75                 else
76                 {
77                                 $_POST['PersonDetailID'] = ANY_NUMERIC;
78                         hidden('PersonDetailID');
79                 }
80                 break;
81
82                 case PT_QUICKENTRY :
83                         quick_entries_list_row(_("Type").":", 'person_id', null, ($payment ? QE_PAYMENT : QE_DEPOSIT), true);
84                         $qid = get_quick_entry(get_post('person_id'));
85                         if (list_updated('person_id')) {
86                                 unset($_POST['totamount']); // enable default
87                                 $Ajax->activate('totamount');
88                         }
89                         amount_row($qid['base_desc'].":", 'totamount', price_format($qid['base_amount']),
90                                  null, "&nbsp;&nbsp;".submit('go', _("Go"), false, false, true));
91                         break;  
92                 //case payment_person_types::Project() :
93         //      dimensions_list_row(_("Dimension:"), 'person_id', $_POST['person_id'], false, null, true);
94         //      break;
95     }
96
97         $person_currency = payment_person_currency($_POST['PayType'], $_POST['person_id']);
98         $bank_currency = get_bank_account_currency($_POST['bank_account']);
99
100         exchange_rate_display($bank_currency, $person_currency, $_POST['date_']);
101
102         table_section(3, "33%");
103
104         ref_row(_("Reference:"), 'ref', '');
105
106         end_outer_table(1); // outer table
107
108         div_end();
109 }
110 //---------------------------------------------------------------------------------
111
112 function display_gl_items($title, &$order)
113 {
114         global $path_to_root;
115
116         $dim = get_company_pref('use_dimension');
117         $colspan = ($dim == 2 ? 4 : ($dim == 1 ? 3 : 2));
118         display_heading($title);
119
120     div_start('items_table');
121         start_table(TABLESTYLE, "colspan=7 width=95%");
122
123         if ($dim == 2)
124                 $th = array(_("Account Code"), _("Account Description"), _("Dimension")." 1",
125                         _("Dimension")." 2", _("Amount"), _("Memo"), "");
126         else if ($dim == 1)
127                 $th = array(_("Account Code"), _("Account Description"), _("Dimension"),
128                         _("Amount"), _("Memo"), "");
129         else
130                 $th = array(_("Account Code"), _("Account Description"),
131                         _("Amount"), _("Memo"), "");
132
133         if (count($order->gl_items)) $th[] = '';
134
135         table_header($th);
136         $k = 0;  //row colour counter
137
138         $id = find_submit('Edit');
139         foreach ($order->gl_items as $line => $item)
140         {
141                 if ($id != $line)
142                 {
143                 alt_table_row_color($k);
144
145                         label_cell($item->code_id);
146                         label_cell($item->description);
147                 if ($dim >= 1)
148                                 label_cell(get_dimension_string($item->dimension_id, true));
149                 if ($dim > 1)
150                                 label_cell(get_dimension_string($item->dimension2_id, true));
151                         //amount_cell(abs($item->amount));
152                         if ($order->trans_type == ST_BANKDEPOSIT)
153                                 amount_cell(-$item->amount);
154                         else            
155                                 amount_cell($item->amount);
156                         label_cell($item->reference);
157
158                         edit_button_cell("Edit$line", _("Edit"),
159                                 _('Edit document line'));
160                         delete_button_cell("Delete$line", _("Delete"),
161                                 _('Remove line from document'));
162                 end_row();
163                 }
164                 else
165                 {
166                         gl_edit_item_controls($order, $dim, $line);
167                 }
168         }
169
170         if ($id == -1)
171                 gl_edit_item_controls($order, $dim);
172
173         if ($order->count_gl_items())
174                 label_row(_("Total"), number_format2(abs($order->gl_items_total()), user_price_dec()),"colspan=" . $colspan . " align=right", "align=right",3);
175
176     end_table();
177         div_end();
178 }
179
180 //---------------------------------------------------------------------------------
181
182 function gl_edit_item_controls(&$order, $dim, $Index=null)
183 {
184         global $Ajax;
185         $payment = $order->trans_type == ST_BANKPAYMENT;
186
187         start_row();
188         $id = find_submit('Edit');
189         if ($Index != -1 && $Index == $id)
190         {
191                 $item = $order->gl_items[$Index];
192                 $_POST['code_id'] = $item->code_id;
193                 $_POST['dimension_id'] = $item->dimension_id;
194                 $_POST['dimension2_id'] = $item->dimension2_id;
195                 $_POST['amount'] = price_format(abs($item->amount));
196                 $_POST['description'] = $item->description;
197                 $_POST['LineMemo'] = $item->reference;
198
199                 hidden('Index', $id);
200                 echo gl_all_accounts_list('code_id', null, true, true);
201                 if ($dim >= 1)
202                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
203                 if ($dim > 1)
204                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
205             $Ajax->activate('items_table');
206         }
207         else
208         {
209                 $_POST['amount'] = price_format(0);
210                 $_POST['dimension_id'] = 0;
211                 $_POST['dimension2_id'] = 0;
212                 //$_POST['LineMemo'] = ""; // let memo go to next line Joe Hunt 2010-05-30
213                 if(isset($_POST['_code_id_update'])) {
214                             $Ajax->activate('code_id');
215                 }
216
217                 if ($_POST['PayType'] == PT_CUSTOMER)
218                 {
219                         $acc = get_branch_accounts($_POST['PersonDetailID']);
220                         $_POST['code_id'] = $acc['receivables_account'];
221                 }
222                 elseif ($_POST['PayType'] == PT_SUPPLIER)
223                 {
224                         $acc = get_supplier_accounts($_POST['person_id']);
225                         $_POST['code_id'] = $acc['payable_account'];
226                 }
227                 //elseif ($_POST['PayType'] == PT_WORKORDER)
228                 //      $_POST['code_id'] = get_company_pref('default_assembly_act');
229                 else {
230                         $_POST['code_id'] =
231                                 get_company_pref($payment ? 'default_cogs_act':'default_inv_sales_act');
232                 }
233                 echo gl_all_accounts_list('code_id', null, true, true);
234                 if ($dim >= 1)
235                         dimensions_list_cells(null, 'dimension_id', null, true, " ", false, 1);
236                 if ($dim > 1)
237                         dimensions_list_cells(null, 'dimension2_id', null, true, " ", false, 2);
238         }
239         if ($dim < 1)
240                 hidden('dimension_id', 0);
241         if ($dim < 2)
242                 hidden('dimension2_id', 0);
243
244         amount_cells(null, 'amount');
245         text_cells_ex(null, 'LineMemo', 35, 255);
246
247         if ($id != -1)
248         {
249                 button_cell('UpdateItem', _("Update"),
250                                 _('Confirm changes'), ICON_UPDATE);
251                 button_cell('CancelItemChanges', _("Cancel"),
252                                 _('Cancel changes'), ICON_CANCEL);
253                 set_focus('amount');
254         }
255         else
256         {
257                 submit_cells('AddItem', _("Add Item"), "colspan=2",
258                     _('Add new item to document'), true);
259         }
260
261         end_row();
262 }
263
264
265 //---------------------------------------------------------------------------------
266
267 function gl_options_controls()
268 {
269         echo "<br><table align='center'>";
270
271         textarea_row(_("Memo"), 'memo_', null, 50, 3);
272
273         echo "</table>";
274 }
275
276
277 //---------------------------------------------------------------------------------
278
279 ?>