Focus set to invalid field after submit check fail
[fa-stable.git] / manufacturing / manage / bom_edit.php
1 <?php
2
3 $page_security = 9;
4 $path_to_root="../..";
5 include_once($path_to_root . "/includes/session.inc");
6
7 page(_("Bill Of Materials"));
8
9 include_once($path_to_root . "/includes/date_functions.inc");
10 include_once($path_to_root . "/includes/ui.inc");
11 include_once($path_to_root . "/includes/data_checks.inc");
12
13 include_once($path_to_root . "/includes/manufacturing.inc");
14
15 check_db_has_bom_stock_items(_("There are no manufactured or kit items defined in the system."));
16
17 check_db_has_workcentres(_("There are no work centres defined in the system. BOMs require at least one work centre be defined."));
18
19 //--------------------------------------------------------------------------------------------------
20
21 if (isset($_GET["NewItem"]))
22 {
23         $_POST['stock_id'] = $_GET["NewItem"];
24 }
25 if (isset($_GET['stock_id']))
26 {
27         $_POST['stock_id'] = $_GET['stock_id'];
28         $selected_parent =  $_GET['stock_id'];
29 }
30
31 /* selected_parent could come from a post or a get */
32 if (isset($_GET["selected_parent"]))
33 {
34         $selected_parent = $_GET["selected_parent"];
35 }
36 else if (isset($_POST["selected_parent"]))
37 {
38         $selected_parent = $_POST["selected_parent"];
39 }
40 /* selected_component could also come from a post or a get */
41 if (isset($_GET["selected_component"]))
42 {
43         $selected_component = $_GET["selected_component"];
44 }
45 elseif (isset($_POST["selected_component"]))
46 {
47         $selected_component = $_POST["selected_component"];
48 }
49
50
51 //--------------------------------------------------------------------------------------------------
52
53 function check_for_recursive_bom($ultimate_parent, $component_to_check)
54 {
55
56         /* returns true ie 1 if the bom contains the parent part as a component
57         ie the bom is recursive otherwise false ie 0 */
58
59         $sql = "SELECT component FROM ".TB_PREF."bom WHERE parent='$component_to_check'";
60         $result = db_query($sql,"could not check recursive bom");
61
62         if ($result != 0)
63         {
64                 while ($myrow = db_fetch_row($result))
65                 {
66                         if ($myrow[0] == $ultimate_parent)
67                         {
68                                 return 1;
69                         }
70
71                         if (check_for_recursive_bom($ultimate_parent, $myrow[0]))
72                         {
73                                 return 1;
74                         }
75                 } //(while loop)
76         } //end if $result is true
77
78         return 0;
79
80 } //end of function check_for_recursive_bom
81
82 //--------------------------------------------------------------------------------------------------
83
84 function display_bom_items($selected_parent)
85 {
86         global $table_style;
87
88         $result = get_bom($selected_parent);
89
90         start_table("$table_style width=60%");
91         $th = array(_("Code"), _("Description"), _("Location"),
92                 _("Work Centre"), _("Quantity"), _("Units"),'','');
93         table_header($th);
94
95         $k = 0;
96         while ($myrow = db_fetch($result))
97         {
98
99                 alt_table_row_color($k);
100
101                 label_cell($myrow["component"]);
102                 label_cell($myrow["description"]);
103         label_cell($myrow["location_name"]);
104         label_cell($myrow["WorkCentreDescription"]);
105         label_cell(qty_format($myrow["quantity"]));
106         label_cell($myrow["units"]);
107         edit_link_cell(SID . "NewItem=$selected_parent&selected_component=" . $myrow["id"]);
108         delete_link_cell(SID . "delete=" . $myrow["id"]. "&stock_id=" . $_POST['stock_id']);
109         end_row();
110
111         } //END WHILE LIST LOOP
112         end_table();
113 }
114
115 //--------------------------------------------------------------------------------------------------
116
117 function on_submit($selected_parent, $selected_component=null)
118 {
119         if (!check_num('quantity', 0))
120         {
121                 display_error(_("The quantity entered must be numeric and greater than zero."));
122                 set_focus('quantity');
123                 return;
124         }
125
126         if (isset($selected_parent) && isset($selected_component))
127         {
128
129                 $sql = "UPDATE ".TB_PREF."bom SET workcentre_added='" . $_POST['workcentre_added'] . "',
130                         loc_code='" . $_POST['loc_code'] . "',
131                         quantity= " . input_num('quantity') . "
132                         WHERE parent='" . $selected_parent . "'
133                         AND id='" . $selected_component . "'";
134                 check_db_error("Could not update this bom component", $sql);
135
136                 db_query($sql,"could not update bom");
137
138         }
139         elseif (!isset($selected_component) && isset($selected_parent))
140         {
141
142                 /*Selected component is null cos no item selected on first time round 
143                 so must be adding a record must be Submitting new entries in the new 
144                 component form */
145
146                 //need to check not recursive bom component of itself!
147                 If (!check_for_recursive_bom($selected_parent, $_POST['component']))
148                 {
149
150                         /*Now check to see that the component is not already on the bom */
151                         $sql = "SELECT component FROM ".TB_PREF."bom
152                                 WHERE parent='$selected_parent'
153                                 AND component='" . $_POST['component'] . "'
154                                 AND workcentre_added='" . $_POST['workcentre_added'] . "'
155                                 AND loc_code='" . $_POST['loc_code'] . "'" ;
156                         $result = db_query($sql,"check failed");
157
158                         if (db_num_rows($result) == 0)
159                         {
160                                 $sql = "INSERT INTO ".TB_PREF."bom (parent, component, workcentre_added, loc_code, quantity)
161                                         VALUES ('$selected_parent', '" . $_POST['component'] . "', '" 
162                                         . $_POST['workcentre_added'] . "', '" . $_POST['loc_code'] . "', " 
163                                         . input_num('quantity') . ")";
164
165                                 db_query($sql,"check failed");
166
167                                 //$msg = _("A new component part has been added to the bill of material for this item.");
168
169                         }
170                         else
171                         {
172                                 /*The component must already be on the bom */
173                                 display_error(_("The selected component is already on this bom. You can modify it's quantity but it cannot appear more than once on the same bom."));
174                         }
175
176                 } //end of if its not a recursive bom
177                 else
178                 {
179                         display_error(_("The selected component is a parent of the current item. Recursive BOMs are not allowed."));
180                 }
181         }
182 }
183
184 //--------------------------------------------------------------------------------------------------
185
186 if (isset($_GET['delete']))
187 {
188
189         $sql = "DELETE FROM ".TB_PREF."bom WHERE id='" . $_GET['delete']. "'";
190         db_query($sql,"Could not delete this bom components");
191
192         display_note(_("The component item has been deleted from this bom."));
193
194 }
195
196 //--------------------------------------------------------------------------------------------------
197
198 start_form(false, true);
199 //echo $msg;
200
201 echo "<center>" . _("Select a manufacturable item:") . "&nbsp;";
202 stock_bom_items_list('stock_id', null, false, true);
203
204 end_form();
205
206 //--------------------------------------------------------------------------------------------------
207
208 if (isset($_POST['stock_id']))
209 { //Parent Item selected so display bom or edit component
210         $selected_parent = $_POST['stock_id'];
211         if (isset($selected_parent) && isset($_POST['Submit'])) {
212           if(isset($selected_component))
213                 on_submit($selected_parent, $selected_component);
214           else
215                 on_submit($selected_parent);
216         }
217         //--------------------------------------------------------------------------------------
218
219         display_bom_items($selected_parent);
220
221         if (isset($selected_parent) && isset($selected_component))
222         {
223                 hyperlink_params($_SERVER['PHP_SELF'], _("Add a new Component"), "NewItem=$selected_parent");
224         }
225
226         //--------------------------------------------------------------------------------------
227
228         start_form(false, true, $_SERVER['PHP_SELF'] . "?" . SID . "NewItem=" . $selected_parent);
229
230         start_table($table_style2);
231
232         if (isset($selected_component))
233         {
234                 //editing a selected component from the link to the line item
235                 $sql = "SELECT ".TB_PREF."bom.*,".TB_PREF."stock_master.description FROM ".TB_PREF."bom,".TB_PREF."stock_master
236                         WHERE id='$selected_component'
237                         AND ".TB_PREF."stock_master.stock_id=".TB_PREF."bom.component";
238
239                 $result = db_query($sql, "could not get bom");
240                 $myrow = db_fetch($result);
241
242                 $_POST['loc_code'] = $myrow["loc_code"];
243                 $_POST['workcentre_added']  = $myrow["workcentre_added"];
244                 $_POST['quantity'] = qty_format($myrow["quantity"]);
245
246                 hidden('selected_parent', $selected_parent);
247                 hidden('selected_component', $selected_component);
248                 label_row(_("Component:"), $myrow["component"] . " - " . $myrow["description"]);
249
250         }
251         else
252         { //end of if $selected_component
253
254                 hidden('selected_parent', $selected_parent);
255
256                 start_row();
257                 label_cell(_("Component:"));
258
259                 echo "<td>";
260                 stock_component_items_list('component', $selected_parent, $_POST['component'], false, true);
261                 echo "</td>";
262                 end_row();
263         }
264
265         locations_list_row(_("Location to Draw From:"), 'loc_code', null);
266         workcenter_list_row(_("Work Centre Added:"), 'workcentre_added', null);
267
268         if (!isset($_POST['quantity']))
269         {
270                 $_POST['quantity'] = qty_format(1);
271         }
272         qty_row(_("Quantity:"), 'quantity', $_POST['quantity']);
273
274         end_table(1);
275         submit_center('Submit', _("Add/Update"));
276
277         end_form();
278 }
279
280 // ----------------------------------------------------------------------------------
281
282 end_page();
283
284 ?>