Added ajaxsubmit class
[fa-stable.git] / purchasing / supplier_credit_grns.php
1 <?php
2
3 $page_security = 5;
4
5 $path_to_root="..";
6 include_once($path_to_root . "/purchasing/includes/supp_trans_class.inc");
7 include_once($path_to_root . "/includes/session.inc");
8
9 include_once($path_to_root . "/purchasing/includes/purchasing_ui.inc");
10 include_once($path_to_root . "/purchasing/includes/purchasing_db.inc");
11 $js = "";
12 if ($use_date_picker)
13         $js .= get_js_date_picker();
14 page(_("Select Received Items to Add"), false, false, "", $js);
15
16 if (!isset($_SESSION['supp_trans']))
17 {
18         display_note(_("To enter supplier transactions the supplier must first be selected from the supplier selection screen, then the link to enter a supplier credit note must be clicked on."));
19         exit;
20         /*It all stops here if there aint no supplier selected and credit note initiated ie $_SESSION['supp_trans'] started off*/
21 }
22
23 //-----------------------------------------------------------------------------------------
24
25 display_heading($_SESSION['supp_trans']->supplier_name);
26 echo "<br>";
27
28 //-----------------------------------------------------------------------------------------
29
30 function check_data()
31 {
32         if (!check_num('This_QuantityCredited', 0)) 
33         {
34                 display_error(_("The quantity to credit must be numeric and greater than zero."));
35                 set_focus('This_QuantityCredited');
36                 return false;
37         }
38
39         if (!check_num('ChgPrice', 0))
40         {
41                 display_error(_("The price is either not numeric or negative."));
42                 set_focus('ChgPrice');
43                 return false;
44         }
45
46         return true;
47 }
48
49 //-----------------------------------------------------------------------------------------
50
51 if (isset($_POST['AddGRNToTrans']))
52 {
53
54         if (check_data())
55         {
56                 $complete = False;
57
58                 //$_SESSION['supp_trans']->add_grn_to_trans($_POST['GRNNumber'],
59         //      $_POST['po_detail_item'], $_POST['item_code'],
60         //      $_POST['item_description'], $_POST['qty_recd'],
61         //      $_POST['prev_quantity_inv'], $_POST['This_QuantityCredited'],
62         //      $_POST['order_price'], $_POST['ChgPrice'], $complete,
63         //      $_POST['std_cost_unit'], $_POST['gl_code']);
64                 $_SESSION['supp_trans']->add_grn_to_trans($_POST['GRNNumber'],
65                 $_POST['po_detail_item'], $_POST['item_code'],
66                 $_POST['item_description'], $_POST['qty_recd'],
67                 $_POST['prev_quantity_inv'], input_num('This_QuantityCredited'),
68                 $_POST['order_price'], input_num('ChgPrice'), $complete,
69                 $_POST['std_cost_unit'], "");
70         }
71 }
72
73 //-----------------------------------------------------------------------------------------
74
75 if (isset($_GET['Delete']))
76 {
77         $_SESSION['supp_trans']->remove_grn_from_trans($_GET['Delete']);
78 }
79
80 //-----------------------------------------------------------------------------------------
81
82 display_grn_items($_SESSION['supp_trans'], 1);
83
84 echo "<br>";
85
86 hyperlink_no_params("$path_to_root/purchasing/supplier_credit.php", _("Return to Credit Note Entry"));
87 echo "<hr>";
88
89 //-----------------------------------------------------------------------------------------
90
91 // get the supplier grns that have been invoiced
92 $result = get_grn_items(0, $_SESSION['supp_trans']->supplier_id, false, true);
93
94 if (db_num_rows($result) == 0)
95 {
96         display_note(_("There are no received items for the selected supplier that have been invoiced."));
97         display_note(_("Credits can only be applied to invoiced items."));
98
99         echo "<br>";
100         end_page();
101         exit;
102 }
103
104 /*Set up a table to show the GRN items outstanding for selection */
105 start_form(false, true);
106
107 start_table("$table_style width=95%");
108 $th = array(_("Delivery"), _("Sequence #"), _("Order"), _("Item Code"), _("Description"),
109         _("Delivered"), _("Total Qty Received"), _("Qty Already Invoiced"),
110         _("Qty Yet To Invoice"), _("Order Price"), _("Line Value"));
111 table_header($th);
112 $i = $k =0;
113 while ($myrow = db_fetch($result))
114 {
115
116         $grn_already_on_credit = False;
117
118         foreach ($_SESSION['supp_trans']->grn_items as $entered_grn)
119         {
120                 if ($entered_grn->id == $myrow["id"]) 
121                 {
122                         $grn_already_on_credit = True;
123                 }
124         }
125         if ($grn_already_on_credit == False)
126         {
127
128                 alt_table_row_color($k);
129
130                 label_cell(get_trans_view_str(25, $myrow["grn_batch_id"]));
131                 submit_cells('grn_item_id', $myrow["id"]);
132                 label_cell(get_trans_view_str(systypes::po(), $myrow["purch_order_no"]));
133         label_cell($myrow["item_code"]);
134         label_cell($myrow["description"]);
135         label_cell(sql2date($myrow["delivery_date"]));
136         qty_cell($myrow["qty_recd"]);
137         qty_cell($myrow["quantity_inv"]);
138         qty_cell($myrow["qty_recd"] - $myrow["quantity_inv"]);
139                 amount_cell($myrow["unit_price"]);
140                 amount_cell(round($myrow["unit_price"] * $myrow["quantity_inv"],  user_price_dec()));
141                 end_row();
142                 $i++;
143                 if ($i > 15)
144                 {
145                         $i = 0;
146                         table_header($th);
147                 }
148         }
149 }
150
151 end_table();
152
153 //-----------------------------------------------------------------------------------------
154
155 if (isset($_POST['grn_item_id']) && $_POST['grn_item_id'] != "")
156 {
157
158         $myrow = get_grn_item_detail($_POST['grn_item_id']);
159
160         echo "<br>";
161         display_heading2(_("Delivery Item Selected For Adding To A Supplier Credit Note"));
162         start_table("$table_style width=80%");
163         $th = array(_("Sequence #"), _("Item"), _("Qty Already Invoiced"),
164                 _("Quantity to Credit"), _("Order Price"), _("Credit Price"));
165         table_header($th);      
166
167         start_row();
168         label_cell($_POST['grn_item_id']);
169     label_cell($myrow['item_code'] . " " . $myrow['description']);
170     qty_cell($myrow["quantity_inv"]);
171     qty_cells(null, 'This_QuantityCredited', qty_format(max($myrow['quantity_inv'],0)));
172     amount_cell($myrow['unit_price']);
173     amount_cells(null, 'ChgPrice', price_format($myrow['unit_price']));
174     end_row();
175         end_table(1);
176
177         submit_center('AddGRNToTrans', _("Add to Credit Note"));
178
179         hidden('GRNNumber', $_POST['grn_item_id']);
180         hidden('item_code', $myrow['item_code']);;
181         hidden('item_description', $myrow['description']);
182         hidden('qty_recd', $myrow['qty_recd']);
183         hidden('prev_quantity_inv', $myrow['quantity_inv']);
184         hidden('order_price', $myrow['unit_price']);
185         hidden('std_cost_unit', $myrow['std_cost_unit']);
186
187         hidden('po_detail_item', $myrow['po_detail_item']);
188 }
189
190 end_form();
191 end_page();
192 ?>