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***********************************************************************/
12include_once($path_to_root . "/includes/ui.inc");
13
14// ------------------------------------------------------------------------------
15
16function display_credit_header(&$order)
17{
18	global $Ajax, $Refs;
19
20	start_outer_table(TABLESTYLE, "width='80%'");
21	table_section(1);
22
23	$customer_error = "";
24	$change_prices = 0;
25
26    if (!isset($_POST['customer_id']) && (get_global_customer() != ALL_TEXT))
27    	$_POST['customer_id'] = get_global_customer();
28
29	customer_list_row(_("Customer:"), 'customer_id', null, false, true, false, true);
30
31	if ($order->customer_id != $_POST['customer_id'] /*|| $order->sales_type != $_POST['sales_type_id']*/)
32	{
33		// customer has changed
34		$Ajax->activate('branch_id');
35	}
36
37	customer_branches_list_row(_("Branch:"), $_POST['customer_id'],
38	  'branch_id', null, false, true, true, true);
39
40	//if (($_SESSION['credit_items']->order_no == 0) ||
41	//	($order->customer_id != $_POST['customer_id']) ||
42	//	($order->Branch != $_POST['branch_id']))
43	//	$customer_error = get_customer_details_to_order($order, $_POST['customer_id'], $_POST['branch_id']);
44	if (($order->customer_id != $_POST['customer_id']) ||
45		($order->Branch != $_POST['branch_id']))
46	  {
47
48				$old_order = (PHP_VERSION<5) ? $order : clone( $order );
49				$customer_error = get_customer_details_to_order($order, $_POST['customer_id'], $_POST['branch_id']);
50
51				$_POST['Location'] = $order->Location;
52				$_POST['deliver_to'] = $order->deliver_to;
53				$_POST['delivery_address'] = $order->delivery_address;
54				$_POST['phone'] = $order->phone;
55				$Ajax->activate('Location');
56				$Ajax->activate('deliver_to');
57				$Ajax->activate('phone');
58				$Ajax->activate('delivery_address');
59				// change prices if necessary
60				// what about discount in template case?
61				if ($old_order->customer_currency != $order->customer_currency) {
62				    $change_prices = 1;
63				}
64				if ($old_order->sales_type != $order->sales_type) {
65				//  || $old_order->default_discount!=$order->default_discount
66					$_POST['sales_type_id'] = $order->sales_type;
67				    $Ajax->activate('sales_type_id');
68				    $change_prices = 1;
69				}
70				if ($old_order->dimension_id != $order->dimension_id) {
71					$_POST['dimension_id'] = $order->dimension_id;
72				    $Ajax->activate('dimension_id');
73				}
74				if ($old_order->dimension2_id != $order->dimension2_id) {
75					$_POST['dimension2_id'] = $order->dimension2_id;
76				    $Ajax->activate('dimension2_id');
77				}
78				unset($old_order);
79	  }
80	set_global_customer($_POST['customer_id']);
81
82	if (!isset($_POST['ref']))
83		$_POST['ref'] = $Refs->get_next(ST_CUSTCREDIT);
84	if ($order->trans_no==0)
85	    ref_row(_("Reference").':', 'ref');
86	else
87	    label_row(_("Reference").':', $order->reference);
88
89
90	if (!is_company_currency($order->customer_currency))
91	{
92		table_section(2);
93
94		label_row(_("Customer Currency:"), $order->customer_currency);
95		exchange_rate_display(get_company_currency(), $order->customer_currency,
96			$_POST['OrderDate']);
97	}
98	table_section(3);
99
100    if (!isset($_POST['sales_type_id']))
101    	$_POST['sales_type_id'] = $order->sales_type;
102    sales_types_list_row(_("Sales Type"), 'sales_type_id', $_POST['sales_type_id'], true);
103
104	if ($order->sales_type != $_POST['sales_type_id']) {
105		$myrow = get_sales_type($_POST['sales_type_id']);
106		$order->set_sales_type($myrow['id'], $myrow['sales_type'],
107		$myrow['tax_included'], $myrow['factor']);
108		$Ajax->activate('sales_type_id');
109		$change_prices = 1;
110	}
111
112    shippers_list_row(_("Shipping Company:"), 'ShipperID', $order->ship_via);
113
114	label_row(_("Customer Discount:"), ($order->default_discount * 100) . "%");
115
116	table_section(4);
117
118	if (!isset($_POST['OrderDate']) || $_POST['OrderDate'] == "")
119		$_POST['OrderDate'] = $order->document_date;
120
121	date_row(_("Date:"), 'OrderDate', '', $order->trans_no==0, 0, 0, 0, null, true);
122	if (isset($_POST['_OrderDate_changed'])) {
123		if (!is_company_currency($order->customer_currency)
124			&& (get_base_sales_type()>0)) {
125				$change_prices = 1;
126		}
127		$Ajax->activate('_ex_rate');
128	}
129	// 2008-11-12 Joe Hunt added dimensions
130	$dim = get_company_pref('use_dimension');
131	if ($dim > 0)
132		dimensions_list_row(_("Dimension").":", 'dimension_id',
133			null, true, ' ', false, 1, false);
134	else
135		hidden('dimension_id', 0);
136	if ($dim > 1)
137		dimensions_list_row(_("Dimension")." 2:", 'dimension2_id',
138			null, true, ' ', false, 2, false);
139	else
140		hidden('dimension2_id', 0);
141
142	end_outer_table(1); // outer table
143
144	if ($change_prices != 0) {
145		foreach ($order->line_items as $line_no=>$item) {
146			$line = &$order->line_items[$line_no];
147			$line->price = get_price($line->stock_id, $order->customer_currency,
148				$order->sales_type, $order->price_factor, get_post('OrderDate'));
149		//		$line->discount_percent = $order->default_discount;
150		}
151	    $Ajax->activate('items_table');
152	}
153
154
155	return $customer_error;
156}
157
158//---------------------------------------------------------------------------------
159
160function display_credit_items($title, &$order)
161{
162    global $path_to_root;
163
164    display_heading($title);
165    div_start('items_table');
166    start_table(TABLESTYLE, "width='90%'");
167    $th = array(_("Item Code"), _("Item Description"), _("Quantity"), _("Unit"),
168	_("Price"), _("Discount %"), _("Total"),'');
169
170    if (count($order->line_items)) $th[]= '';
171
172    table_header($th);
173
174    $subtotal = 0;
175    $k = 0;  //row colour counter
176
177    $id = find_submit('Edit');
178
179    foreach ($order->get_items() as $line_no=>$line)
180    {
181	$line_total =	round($line->qty_dispatched * $line->price * (1 - $line->discount_percent),
182	   user_price_dec());
183
184	if ( $id != $line_no)
185	{
186	    alt_table_row_color($k);
187
188    	    label_cell("<a target='_blank' href='$path_to_root/inventory/inquiry/stock_status.php?stock_id=" . $line->stock_id . "'>$line->stock_id</a>");
189    	    label_cell($line->item_description, "nowrap");
190    	    qty_cell($line->qty_dispatched, false, get_qty_dec($line->stock_id));
191    	    label_cell($line->units);
192    	    amount_cell($line->price);
193
194	    	percent_cell($line->discount_percent * 100);
195    	    amount_cell($line_total);
196
197    	    edit_button_cell("Edit$line_no", _('Edit'),
198				_('Edit document line'));
199    	    delete_button_cell("Delete$line_no", _('Delete'),
200				_('Remove line from document'));
201
202    	    end_row();
203        }
204        else
205        {
206	    credit_edit_item_controls($order, $k, $line_no);
207	}
208
209	$subtotal += $line_total;
210    }
211
212    if ($id==-1)
213        credit_edit_item_controls($order, $k);
214
215	$colspan = 6;
216    $display_sub_total = price_format($subtotal);
217    label_row(_("Sub-total"), $display_sub_total, "colspan=$colspan align=right", "align=right", 2);
218
219    if (!isset($_POST['ChargeFreightCost']) OR ($_POST['ChargeFreightCost'] == ""))
220		$_POST['ChargeFreightCost'] = 0;
221	start_row();
222	label_cell(_("Shipping"), "colspan=$colspan align=right");
223	small_amount_cells(null, 'ChargeFreightCost', price_format(get_post('ChargeFreightCost',0)));
224    label_cell('', 'colspan=2');
225	end_row();
226
227    $taxes = $order->get_taxes($_POST['ChargeFreightCost']);
228
229    $tax_total = display_edit_tax_items($taxes, $colspan, $order->tax_included, 2);
230
231    $display_total = price_format(($subtotal + $_POST['ChargeFreightCost'] + $tax_total));
232
233    label_row(_("Credit Note Total"), $display_total, "colspan=$colspan align=right","class='amount'", 2);
234
235    end_table();
236    div_end();
237}
238
239//---------------------------------------------------------------------------------
240
241function credit_edit_item_controls(&$order, $rowcounter, $line_no=-1)
242{
243	global $Ajax;
244	alt_table_row_color($rowcounter);
245	$id = find_submit('Edit');
246
247	if ($line_no!=-1 && $line_no == $id)
248	{
249		$_POST['stock_id'] = $order->line_items[$id]->stock_id;
250		$dec = get_qty_dec($_POST['stock_id']);
251		$_POST['qty'] = qty_format($order->line_items[$id]->qty_dispatched, $_POST['stock_id'], $dec);
252		$_POST['price'] = price_format($order->line_items[$id]->price);
253		$_POST['Disc'] = percent_format(($order->line_items[$id]->discount_percent)*100);
254		$units = $order->line_items[$id]->units;
255		hidden('stock_id', $_POST['stock_id']);
256		label_cell($_POST['stock_id']);
257		label_cell($order->line_items[$id]->item_description, "nowrap");
258	    $Ajax->activate('items_table');
259	}
260	else
261	{
262		stock_items_list_cells(null,'stock_id', null, false, true);
263		if (list_updated('stock_id')) {
264			    $Ajax->activate('price');
265			    $Ajax->activate('qty');
266			    $Ajax->activate('units');
267			    $Ajax->activate('line_total');
268		}
269  		$item_info = get_item_edit_info($_POST['stock_id']);
270
271		$dec = $item_info['decimals'];
272   		$_POST['qty'] = number_format2(0, $dec);
273		$units = $item_info["units"];
274		$price = get_price($_POST['stock_id'],
275			$order->customer_currency, $order->sales_type,
276			$order->price_factor, get_post('OrderDate'));
277		$_POST['price'] = price_format($price);
278
279		// default to the customer's discount %
280		$_POST['Disc'] = percent_format($order->default_discount * 100);
281	}
282
283	qty_cells(null, 'qty', $_POST['qty'], null, null, $dec);
284
285	label_cell($units, '', 'units');
286	amount_cells(null, 'price');
287	small_amount_cells(null, 'Disc', percent_format($_POST['Disc']), null, null, user_percent_dec());
288
289	amount_cell(input_num('qty') * input_num('price') * (1 - input_num('Disc')/100), false, '', 'line_total');
290
291	if ($id!=-1)
292	{
293		button_cell('UpdateItem', _("Update"),
294				_('Confirm changes'), ICON_UPDATE);
295		button_cell('CancelItemChanges', _("Cancel"),
296				_('Cancel changes'), ICON_CANCEL);
297		hidden('line_no', $line_no);
298		set_focus('qty');
299	}
300	else
301	{
302		submit_cells('AddItem', _("Add Item"), "colspan=2",
303		    _('Add new item to document'), true);
304	}
305
306	end_row();
307}
308
309
310//---------------------------------------------------------------------------------
311
312function credit_options_controls($credit)
313{
314	global $Ajax;
315	br();
316
317	if (isset($_POST['_CreditType_update']))
318		$Ajax->activate('options');
319
320	div_start('options');
321	start_table(TABLESTYLE2);
322
323	credit_type_list_row(_("Credit Note Type"), 'CreditType', null, true);
324
325	if ($_POST['CreditType'] == "Return")
326	{
327
328		/*if the credit note is a return of goods then need to know which location to receive them into */
329		if (!isset($_POST['Location']))
330			$_POST['Location'] = $credit->Location;
331	   	locations_list_row(_("Items Returned to Location"), 'Location', $_POST['Location']);
332	}
333	else
334	{
335		/* the goods are to be written off to somewhere */
336		gl_all_accounts_list_row(_("Write off the cost of the items to"), 'WriteOffGLCode', null);
337	}
338
339	textarea_row(_("Memo"), "CreditText", null, 51, 3);
340	echo "</table>";
341 div_end();
342}
343
344
345//---------------------------------------------------------------------------------
346
347?>