*** empty log message ***
[fa-stable.git] / manufacturing / view / wo_production_view.php
1 <?php
2
3 $page_security = 10;
4 $path_to_root="../..";
5
6 include_once($path_to_root . "/includes/session.inc");
7
8 page(_("View Work Order Production"), true);
9
10 include_once($path_to_root . "/includes/date_functions.inc");
11 include_once($path_to_root . "/includes/manufacturing.inc");
12 include_once($path_to_root . "/includes/data_checks.inc");
13
14 include_once($path_to_root . "/manufacturing/includes/manufacturing_db.inc");
15 include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
16
17 //-------------------------------------------------------------------------------------------------
18
19 if ($_GET['trans_no'] != "")
20 {
21         $wo_production = $_GET['trans_no'];
22 }
23
24 //-------------------------------------------------------------------------------------------------
25
26 function display_wo_production($prod_id)
27 {
28         global $table_style;
29
30     $myrow = get_work_order_produce($prod_id);
31
32         br(1);
33     start_table($table_style);
34     $th = array(_("Production #"), _("Reference"), _("For Work Order #"),
35         _("Item"), _("Quantity Manufactured"), _("Date"));
36     table_header($th);
37
38         start_row();
39         label_cell($myrow["id"]);
40         label_cell($myrow["reference"]);
41         label_cell(get_trans_view_str(systypes::work_order(),$myrow["workorder_id"]));
42         label_cell($myrow["stock_id"] . " - " . $myrow["StockDescription"]);
43         qty_cell($myrow["quantity"], false, get_qty_dec($myrow["stock_id"]));
44         label_cell(sql2date($myrow["date_"]));
45         end_row();
46
47     comments_display_row(29, $prod_id);
48
49         end_table(1);
50
51         is_voided_display(29, $prod_id, _("This production has been voided."));
52 }
53
54 //-------------------------------------------------------------------------------------------------
55
56 display_heading(systypes::name(29) . " # " . $wo_production);
57
58 display_wo_production($wo_production);
59
60 //-------------------------------------------------------------------------------------------------
61
62 br(2);
63
64 end_page(true);
65
66 ?>
67