Fixed bad SO reference display.
[fa-stable.git] / sales / view / view_sales_order.php
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 $page_security = 'SA_SALESTRANSVIEW';
13 $path_to_root = "../..";
14 include_once($path_to_root . "/sales/includes/cart_class.inc");
15
16 include_once($path_to_root . "/includes/session.inc");
17 include_once($path_to_root . "/includes/date_functions.inc");
18
19 include_once($path_to_root . "/sales/includes/sales_ui.inc");
20 include_once($path_to_root . "/sales/includes/sales_db.inc");
21
22 $js = "";
23 if ($use_popup_windows)
24         $js .= get_js_open_window(900, 600);
25
26 if ($_GET['trans_type'] == ST_SALESQUOTE)
27 {
28         page(_($help_context = "View Sales Quotation"), true, false, "", $js);
29         display_heading(sprintf(_("Sales Quotation #%d"),$_GET['trans_no']));
30 }       
31 else
32 {
33         page(_($help_context = "View Sales Order"), true, false, "", $js);
34         display_heading(sprintf(_("Sales Order #%d"),$_GET['trans_no']));
35 }
36
37 if (isset($_SESSION['View']))
38 {
39         unset ($_SESSION['View']);
40 }
41
42 $_SESSION['View'] = new Cart($_GET['trans_type'], $_GET['trans_no']);
43
44 start_table(TABLESTYLE2, "width=95%", 5);
45 echo "<tr valign=top><td>";
46 display_heading2(_("Order Information"));
47 if ($_GET['trans_type'] != ST_SALESQUOTE)
48 {
49         echo "</td><td>";
50         display_heading2(_("Deliveries"));
51         echo "</td><td>";
52         display_heading2(_("Invoices/Credits"));
53 }       
54 echo "</td></tr>";
55
56 echo "<tr valign=top><td>";
57
58 start_table(TABLESTYLE, "width=95%");
59 label_row(_("Customer Name"), $_SESSION['View']->customer_name, "class='tableheader2'",
60         "colspan=3");
61 start_row();
62 label_cells(_("Customer Order Ref."), $_SESSION['View']->cust_ref, "class='tableheader2'");
63 label_cells(_("Deliver To Branch"), $_SESSION['View']->deliver_to, "class='tableheader2'");
64 end_row();
65 start_row();
66 label_cells(_("Ordered On"), $_SESSION['View']->document_date, "class='tableheader2'");
67 if ($_GET['trans_type'] == ST_SALESQUOTE)
68         label_cells(_("Valid until"), $_SESSION['View']->due_date, "class='tableheader2'");
69 else
70         label_cells(_("Requested Delivery"), $_SESSION['View']->due_date, "class='tableheader2'");
71 end_row();
72 start_row();
73 label_cells(_("Order Currency"), $_SESSION['View']->customer_currency, "class='tableheader2'");
74 label_cells(_("Deliver From Location"), $_SESSION['View']->location_name, "class='tableheader2'");
75 end_row();
76
77 label_row(_("Payment Terms"), $_SESSION['View']->payment_terms['terms'], "class='tableheader2'", "colspan=3");
78 label_row(_("Delivery Address"), nl2br($_SESSION['View']->delivery_address),
79         "class='tableheader2'", "colspan=3");
80 label_row(_("Reference"), $_SESSION['View']->reference, "class='tableheader2'", "colspan=3");
81 label_row(_("Telephone"), $_SESSION['View']->phone, "class='tableheader2'", "colspan=3");
82 label_row(_("E-mail"), "<a href='mailto:" . $_SESSION['View']->email . "'>" . $_SESSION['View']->email . "</a>",
83         "class='tableheader2'", "colspan=3");
84 label_row(_("Comments"), $_SESSION['View']->Comments, "class='tableheader2'", "colspan=3");
85 end_table();
86
87 if ($_GET['trans_type'] != ST_SALESQUOTE)
88 {
89         echo "</td><td valign='top'>";
90
91         start_table(TABLESTYLE);
92         display_heading2(_("Delivery Notes"));
93
94
95         $th = array(_("#"), _("Ref"), _("Date"), _("Total"));
96         table_header($th);
97
98         $dn_numbers = array();
99         $delivery_total = 0;
100
101         if ($result = get_sales_child_documents(ST_SALESORDER, $_GET['trans_no'])) {
102
103                 $k = 0;
104                 while ($del_row = db_fetch($result))
105                 {
106
107                         alt_table_row_color($k);
108                         $dn_numbers[] = $del_row["trans_no"];
109                         $this_total = $del_row["ov_freight"]+ $del_row["ov_amount"] + $del_row["ov_freight_tax"]  + $del_row["ov_gst"] ;
110                         $delivery_total += $this_total;
111
112                         label_cell(get_customer_trans_view_str($del_row["type"], $del_row["trans_no"]));
113                         label_cell($del_row["reference"]);
114                         label_cell(sql2date($del_row["tran_date"]));
115                         amount_cell($this_total);
116                         end_row();
117                 }
118         }
119
120         label_row(null, price_format($delivery_total), " ", "colspan=4 align=right");
121
122         end_table();
123         echo "</td><td valign='top'>";
124
125         start_table(TABLESTYLE);
126         display_heading2(_("Sales Invoices"));
127
128         $th = array(_("#"), _("Ref"), _("Date"), _("Total"));
129         table_header($th);
130         
131         $inv_numbers = array();
132         $invoices_total = 0;
133
134         if ($result = get_sales_child_documents(ST_CUSTDELIVERY, $dn_numbers)) {
135
136                 $k = 0;
137
138                 while ($inv_row = db_fetch($result))
139                 {
140                         alt_table_row_color($k);
141
142                         $this_total = $inv_row["ov_freight"] + $inv_row["ov_freight_tax"]  + $inv_row["ov_gst"] + $inv_row["ov_amount"];
143                         $invoices_total += $this_total;
144
145                         $inv_numbers[] = $inv_row["trans_no"];
146                         label_cell(get_customer_trans_view_str($inv_row["type"], $inv_row["trans_no"]));
147                         label_cell($inv_row["reference"]);
148                         label_cell(sql2date($inv_row["tran_date"]));
149                         amount_cell($this_total);
150                         end_row();
151                 }
152         }
153         label_row(null, price_format($invoices_total), " ", "colspan=4 align=right");
154
155         end_table();
156
157         display_heading2(_("Credit Notes"));
158
159         start_table(TABLESTYLE);
160         $th = array(_("#"), _("Ref"), _("Date"), _("Total"));
161         table_header($th);
162         
163         $credits_total = 0;
164         
165         if ($result = get_sales_child_documents(ST_SALESINVOICE, $inv_numbers)) {
166                 $k = 0;
167
168                 while ($credits_row = db_fetch($result))
169                 {
170
171                         alt_table_row_color($k);
172
173                         $this_total = $credits_row["ov_freight"] + $credits_row["ov_freight_tax"]  + $credits_row["ov_gst"] + $credits_row["ov_amount"];
174                         $credits_total += $this_total;
175
176                         label_cell(get_customer_trans_view_str($credits_row["type"], $credits_row["trans_no"]));
177                         label_cell($credits_row["reference"]);
178                         label_cell(sql2date($credits_row["tran_date"]));
179                         amount_cell(-$this_total);
180                         end_row();
181
182                 }
183
184         }
185         label_row(null, "<font color=red>" . price_format(-$credits_total) . "</font>",
186                 " ", "colspan=4 align=right");
187
188         end_table();
189
190         echo "</td></tr>";
191
192         end_table();
193 }
194 echo "<center>";
195 if ($_SESSION['View']->so_type == 1)
196         display_note(_("This Sales Order is used as a Template."), 0, 0, "class='currentfg'");
197 display_heading2(_("Line Details"));
198
199 start_table(TABLESTYLE, "colspan=9 width=95%");
200 $th = array(_("Item Code"), _("Item Description"), _("Quantity"), _("Unit"),
201         _("Price"), _("Discount"), _("Total"), _("Quantity Delivered"));
202 table_header($th);
203
204 $k = 0;  //row colour counter
205
206 foreach ($_SESSION['View']->line_items as $stock_item) {
207
208         $line_total = round2($stock_item->quantity * $stock_item->price * (1 - $stock_item->discount_percent),
209            user_price_dec());
210
211         alt_table_row_color($k);
212
213         label_cell($stock_item->stock_id);
214         label_cell($stock_item->item_description);
215         $dec = get_qty_dec($stock_item->stock_id);
216         qty_cell($stock_item->quantity, false, $dec);
217         label_cell($stock_item->units);
218         amount_cell($stock_item->price);
219         amount_cell($stock_item->discount_percent * 100);
220         amount_cell($line_total);
221
222         qty_cell($stock_item->qty_done, false, $dec);
223         end_row();
224 }
225
226 label_row(_("Shipping"), price_format($_SESSION['View']->freight_cost),
227         "align=right colspan=6", "nowrap align=right", 1);
228
229 $sub_tot = $_SESSION['View']->get_items_total() + $_SESSION['View']->freight_cost;
230
231 $display_sub_tot = price_format($sub_tot);
232
233 label_row(_("Sub Total"), $display_sub_tot, "align=right colspan=6",
234         "nowrap align=right", 1);
235
236 $taxes = $_SESSION['View']->get_taxes();
237
238 $tax_total = display_edit_tax_items($taxes, 6, $_SESSION['View']->tax_included,2);
239
240 $display_total = price_format($sub_tot + $tax_total);
241
242 start_row();
243 label_cells(_("Amount Total"), $display_total, "colspan=6 align='right'","align='right'");
244 label_cell('', "colspan=2");
245 end_row();
246 end_table(2);
247
248 end_page(true, false, false, $_GET['trans_type'], $_GET['trans_no']);
249
250 ?>