559b79a29166ee2c2d3390c1264ece9753ca225e
[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, $db) 
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], &$db))
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($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)
118 {
119         global $db;
120
121         if (!is_numeric($_POST['quantity'])) 
122         {
123                 display_error(_("The quantity entered must be numeric."));
124                 return;
125         }
126
127         if ($_POST['quantity'] <= 0) 
128         {
129                 display_error(_("The quantity entered must be greater than zero."));
130                 return;
131         }
132         
133         
134         if (isset($selected_parent) && isset($selected_component)) 
135         {
136
137                 $sql = "UPDATE ".TB_PREF."bom SET workcentre_added='" . $_POST['workcentre_added'] . "', 
138                         loc_code='" . $_POST['loc_code'] . "', 
139                         quantity= " . $_POST['quantity'] . " 
140                         WHERE parent='" . $selected_parent . "' 
141                         AND id='" . $selected_component . "'";
142                 check_db_error("Could not update this bom component", $sql);                            
143
144                 db_query($sql,"could not update bom");
145
146         } 
147         elseif (!isset($selected_component) && isset($selected_parent)) 
148         {
149
150                 /*Selected component is null cos no item selected on first time round so must be                                adding a record must be Submitting new entries in the new component form */
151
152                 //need to check not recursive bom component of itself!
153                 If (!check_for_recursive_bom($selected_parent, $_POST['component'], &$db)) 
154                 {
155
156                         /*Now check to see that the component is not already on the bom */
157                         $sql = "SELECT component FROM ".TB_PREF."bom 
158                                 WHERE parent='$selected_parent' 
159                                 AND component='" . $_POST['component'] . "' 
160                                 AND workcentre_added='" . $_POST['workcentre_added'] . "' 
161                                 AND loc_code='" . $_POST['loc_code'] . "'" ;
162                         $result = db_query($sql,"check failed");
163                         
164                         if (db_num_rows($result) == 0) 
165                         {
166                                 $sql = "INSERT INTO ".TB_PREF."bom (parent, component, workcentre_added, loc_code, quantity) 
167                                         VALUES ('$selected_parent', '" . $_POST['component'] . "', '" . $_POST['workcentre_added'] . "', '" . $_POST['loc_code'] . "', " . $_POST['quantity'] . ")";
168
169                                 db_query($sql,"check failed");                                          
170
171                                 //$msg = _("A new component part has been added to the bill of material for this item.");
172
173                         } 
174                         else 
175                         {
176                                 /*The component must already be on the bom */
177                                 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.")); 
178                         }
179
180                 } //end of if its not a recursive bom
181                 else 
182                 {
183                         display_error(_("The selected component is a parent of the current item. Recursive BOMs are not allowed."));
184                 }
185         } 
186 }
187
188 //--------------------------------------------------------------------------------------------------
189
190 if (isset($_GET['delete'])) 
191 {
192         
193         $sql = "DELETE FROM ".TB_PREF."bom WHERE id='" . $_GET['delete']. "'";
194         db_query($sql,"Could not delete this bom components");
195
196         display_note(_("The component item has been deleted from this bom."));
197         
198 }
199
200 //--------------------------------------------------------------------------------------------------
201
202 start_form(false, true);
203 //echo $msg;
204
205 echo "<center>" . _("Select a manufacturable item:") . "&nbsp;";
206 stock_bom_items_list('stock_id', null, false, true);
207
208 end_form();
209
210 //--------------------------------------------------------------------------------------------------
211
212 if (isset($_POST['stock_id'])) 
213 { //Parent Item selected so display bom or edit component
214         $selected_parent = $_POST['stock_id'];
215
216         if (isset($selected_parent) && isset($_POST['Submit']))
217                 on_submit($selected_parent, $selected_component); 
218
219         //--------------------------------------------------------------------------------------
220
221         display_bom_items($selected_parent);    
222
223         if (isset($selected_parent) && isset($selected_component)) 
224         {
225                 hyperlink_params($_SERVER['PHP_SELF'], _("Add a new Component"), "NewItem=$selected_parent");
226         }
227
228         //--------------------------------------------------------------------------------------
229
230         start_form(false, true, $_SERVER['PHP_SELF'] . "?" . SID . "NewItem=" . $selected_parent);
231
232         start_table($table_style2);
233
234         if (isset($selected_component)) 
235         {
236                 //editing a selected component from the link to the line item
237                 $sql = "SELECT ".TB_PREF."bom.*,".TB_PREF."stock_master.description FROM ".TB_PREF."bom,".TB_PREF."stock_master 
238                         WHERE id='$selected_component'
239                         AND ".TB_PREF."stock_master.stock_id=".TB_PREF."bom.component";
240
241                 $result = db_query($sql, "could not get bom");
242                 $myrow = db_fetch($result);
243
244                 $_POST['loc_code'] = $myrow["loc_code"];
245                 $_POST['workcentre_added']  = $myrow["workcentre_added"];
246                 $_POST['quantity'] = $myrow["quantity"];
247
248                 hidden('selected_parent', $selected_parent);
249                 hidden('selected_component', $selected_component);
250                 label_row(_("Component:"), $myrow["component"] . " - " . $myrow["description"]);
251
252         } 
253         else 
254         { //end of if $selected_component
255
256                 hidden('selected_parent', $selected_parent);
257
258                 start_row();
259                 label_cell(_("Component:"));
260                 
261                 echo "<td>";
262                 stock_component_items_list('component', $selected_parent, $_POST['component'], false, true);    
263                 echo "</td>";
264                 end_row();
265         }
266
267         locations_list_row(_("Location to Draw From:"), 'loc_code', null);
268         workcenter_list_row(_("Work Centre Added:"), 'workcentre_added', null);
269
270         if (!isset($_POST['quantity']))
271         {
272                 $_POST['quantity'] = 1;
273         }
274         text_row(_("Quantity:"), 'quantity', $_POST['quantity'], 10, 18);               
275
276         end_table(1);
277         submit_center('Submit', _("Add/Update"));
278
279         end_form();
280 }
281
282 // ---------------------------------------------------------------------------------- 
283
284 end_page();
285
286 ?>