No JS popup window
[fa-stable.git] / sales / view / view_invoice.php
1 <?php
2
3 $page_security = 1;
4 $path_to_root="../..";
5 include_once($path_to_root . "/includes/session.inc");
6
7 include_once($path_to_root . "/sales/includes/sales_ui.inc");
8
9 include_once($path_to_root . "/sales/includes/sales_db.inc");
10
11 $js = "";
12 if ($use_popup_windows)
13         $js .= get_js_open_window(900, 600);
14 page(_("View Sales Invoice"), true, false, "", $js);
15
16
17 if (isset($_GET["trans_no"]))
18 {
19         $trans_id = $_GET["trans_no"];
20
21 elseif (isset($_POST["trans_no"]))
22 {
23         $trans_id = $_POST["trans_no"];
24 }
25
26 // 3 different queries to get the information - what a JOKE !!!!
27
28 $myrow = get_customer_trans($trans_id, 10);
29
30 $branch = get_branch($myrow["branch_code"]);
31
32 $sales_order = get_sales_order($myrow["order_"]);
33
34 display_heading(_("SALES INVOICE") . " #$trans_id");
35
36 echo "<br>";
37 start_table("$table_style2 width=95%");
38 echo "<tr valign=top><td>"; // outer table
39
40 /*Now the customer charged to details in a sub table*/
41 start_table("$table_style width=100%");
42 $th = array(_("Charge To"));
43 table_header($th);
44
45 label_row(null, $myrow["DebtorName"] . "<br>" . nl2br($myrow["address"]), "nowrap");
46
47 end_table();
48
49 /*end of the small table showing charge to account details */
50
51 echo "</td><td>"; // outer table
52
53 /*end of the main table showing the company name and charge to details */
54
55 start_table("$table_style width=100%");
56 $th = array(_("Charge Branch"));
57 table_header($th);
58
59 label_row(null, $branch["br_name"] . "<br>" . nl2br($branch["br_address"]), "nowrap");
60 end_table();
61
62 echo "</td><td>"; // outer table
63
64 start_table("$table_style width=100%");
65 $th = array(_("Delivered To"));
66 table_header($th);
67
68 label_row(null, $sales_order["deliver_to"] . "<br>" . nl2br($sales_order["delivery_address"]),
69         "nowrap");
70 end_table();
71
72 echo "</td><td>"; // outer table
73
74 start_table("$table_style width=100%");
75 start_row();
76 label_cells(_("Reference"), $myrow["reference"], "class='tableheader2'");
77 label_cells(_("Currency"), $sales_order["curr_code"], "class='tableheader2'");
78 label_cells(_("Our Order No"), 
79         get_customer_trans_view_str(systypes::sales_order(),$sales_order["order_no"]), "class='tableheader2'");
80 end_row();
81 start_row();
82 label_cells(_("Customer Order Ref."), $sales_order["customer_ref"], "class='tableheader2'");
83 label_cells(_("Shipping Company"), $myrow["shipper_name"], "class='tableheader2'");
84 label_cells(_("Sales Type"), $myrow["sales_type"], "class='tableheader2'");
85 end_row();
86 start_row();
87 label_cells(_("Invoice Date"), sql2date($myrow["tran_date"]), "class='tableheader2'", "nowrap");
88 label_cells(_("Due Date"), sql2date($myrow["due_date"]), "class='tableheader2'", "nowrap");
89 end_row();
90 comments_display_row(10, $trans_id);
91 end_table();
92
93 echo "</td></tr>";
94 end_table(1); // outer table
95
96
97 $result = get_customer_trans_details(10, $trans_id);
98
99 start_table("$table_style width=95%");
100
101 if (db_num_rows($result) > 0)
102 {
103         $th = array(_("Item Code"), _("Item Description"), _("Quantity"),
104                 _("Unit"), _("Price"), _("Discount %"), _("Total"));
105         table_header($th);      
106
107         $k = 0; //row colour counter
108         $sub_total = 0;
109         while ($myrow2 = db_fetch($result))
110         {
111
112                 alt_table_row_color($k);
113
114                 $net = ((1 - $myrow2["discount_percent"]) * $myrow2["FullUnitPrice"] * -$myrow2["quantity"]);
115                 $sub_total += $net;
116
117             if ($myrow2["discount_percent"] == 0)
118             {
119                         $display_discount = "";
120             } 
121             else 
122             {
123                         $display_discount = number_format2($myrow2["discount_percent"]*100,user_percent_dec()) . "%";
124             }
125
126             label_cell($myrow2["stock_id"]);
127                 label_cell($myrow2["StockDescription"]);
128         qty_cell(-$myrow2["quantity"]);
129         label_cell($myrow2["units"], "align=right");
130         amount_cell($myrow2["FullUnitPrice"]);
131         label_cell($display_discount, "nowrap align=right");
132         amount_cell($net);
133                 end_row();
134         } //end while there are line items to print out
135
136
137 else
138         display_note(_("There are no line items on this invoice."), 1, 2);
139
140 $display_sub_tot = number_format2($sub_total,user_price_dec());
141 $display_freight = number_format2($myrow["ov_freight"],user_price_dec());
142
143 /*Print out the invoice text entered */
144 label_row(_("Sub-total"), $display_sub_tot, "colspan=6 align=right", 
145         "nowrap align=right width=15%");
146 label_row(_("Shipping"), $display_freight, "colspan=6 align=right", "nowrap align=right");
147
148 $tax_items = get_customer_trans_tax_details(10, $trans_id);
149 display_customer_trans_tax_details($tax_items, 6);
150
151 $display_total = number_format2($myrow["ov_freight"]+$myrow["ov_gst"]+$myrow["ov_amount"],user_price_dec());
152
153 label_row(_("TOTAL INVOICE"), $display_total, "colspan=6 align=right",
154         "nowrap align=right");
155 end_table(1);
156
157 is_voided_display(10, $trans_id, _("This invoice has been voided."));
158
159 end_page(true);
160
161 ?>