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