02450db5370aaaa0bedb10911bce5b58f29e100c
[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     start_table($table_style);
33     $th = array(_("Production #"), _("Reference"), _("For Work Order #"),
34         _("Item"), _("Quantity Manufactured"), _("Date"));
35     table_header($th);
36
37         start_row();
38         label_cell($myrow["id"]);
39         label_cell($myrow["reference"]);
40         label_cell(get_trans_view_str(systypes::work_order(),$myrow["workorder_id"]));
41         label_cell($myrow["stock_id"] . " - " . $myrow["StockDescription"]);
42         qty_cell($myrow["quantity"], false, get_qty_dec($myrow["stock_id"]));
43         label_cell(sql2date($myrow["date_"]));
44         end_row();
45
46     comments_display_row(29, $prod_id);
47
48         end_table(1);
49
50         is_voided_display(29, $prod_id, _("This production has been voided."));
51 }
52
53 //-------------------------------------------------------------------------------------------------
54
55 display_heading(systypes::name(29) . " # " . $wo_production);
56
57 display_wo_production($wo_production);
58
59 //-------------------------------------------------------------------------------------------------
60
61 br(2);
62
63 end_page(true);
64
65 ?>
66