Allow re-opening of Dimensions
[fa-stable.git] / dimensions / dimension_entry.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_DIMENSION';
13 $path_to_root = "..";
14 include_once($path_to_root . "/includes/session.inc");
15
16 include_once($path_to_root . "/includes/date_functions.inc");
17 include_once($path_to_root . "/includes/manufacturing.inc");
18 include_once($path_to_root . "/includes/data_checks.inc");
19
20 include_once($path_to_root . "/dimensions/includes/dimensions_db.inc");
21 include_once($path_to_root . "/dimensions/includes/dimensions_ui.inc");
22
23 $js = "";
24 if ($use_date_picker)
25         $js .= get_js_date_picker();
26 page(_("Dimension Entry"), false, false, "", $js);
27
28 //---------------------------------------------------------------------------------------
29
30 if (isset($_GET['trans_no']))
31 {
32         $selected_id = $_GET['trans_no'];
33
34 elseif(isset($_POST['selected_id']))
35 {
36         $selected_id = $_POST['selected_id'];
37 }
38 else
39         $selected_id = -1;
40 //---------------------------------------------------------------------------------------
41
42 if (isset($_GET['AddedID'])) 
43 {
44         $id = $_GET['AddedID'];
45
46         display_notification_centered(_("The dimension has been entered."));
47
48         safe_exit();
49 }
50
51 //---------------------------------------------------------------------------------------
52
53 if (isset($_GET['UpdatedID'])) 
54 {
55         $id = $_GET['UpdatedID'];
56
57         display_notification_centered(_("The dimension has been updated."));
58         safe_exit();
59 }
60
61 //---------------------------------------------------------------------------------------
62
63 if (isset($_GET['DeletedID'])) 
64 {
65         $id = $_GET['DeletedID'];
66
67         display_notification_centered(_("The dimension has been deleted."));
68         safe_exit();
69 }
70
71 //---------------------------------------------------------------------------------------
72
73 if (isset($_GET['ClosedID'])) 
74 {
75         $id = $_GET['ClosedID'];
76
77         display_notification_centered(_("The dimension has been closed. There can be no more changes to it.") . " #$id");
78         safe_exit();
79 }
80
81 //---------------------------------------------------------------------------------------
82
83 if (isset($_GET['ReopenedID'])) 
84 {
85         $id = $_GET['ReopenedID'];
86
87         display_notification_centered(_("The dimension has been re-opened. ") . " #$id");
88         safe_exit();
89 }
90
91 //-------------------------------------------------------------------------------------------------
92
93 function safe_exit()
94 {
95         global $path_to_root;
96
97         hyperlink_no_params("", _("Enter a &new dimension"));
98         echo "<br>";
99         hyperlink_no_params($path_to_root . "/dimensions/inquiry/search_dimensions.php", _("&Select an existing dimension"));
100
101         display_footer_exit();
102 }
103
104 //-------------------------------------------------------------------------------------
105
106 function can_process()
107 {
108         global $selected_id;
109
110         if ($selected_id == -1) 
111         {
112
113         if (!references::is_valid($_POST['ref'])) 
114         {
115                 display_error( _("The dimension reference must be entered."));
116                         set_focus('ref');
117                 return false;
118         }
119
120         if (!is_new_reference($_POST['ref'], systypes::dimension())) 
121         {
122                 display_error(_("The entered reference is already in use."));
123                         set_focus('ref');
124                 return false;
125         }
126         }
127
128         if (strlen($_POST['name']) == 0) 
129         {
130                 display_error( _("The dimension name must be entered."));
131                 set_focus('name');
132                 return false;
133         }
134
135         if (!is_date($_POST['date_']))
136         {
137                 display_error( _("The date entered is in an invalid format."));
138                 set_focus('date_');
139                 return false;
140         }
141
142         if (!is_date($_POST['due_date']))
143         {
144                 display_error( _("The required by date entered is in an invalid format."));
145                 set_focus('due_date');
146                 return false;
147         }
148
149         return true;
150 }
151
152 //-------------------------------------------------------------------------------------
153
154 if (isset($_POST['ADD_ITEM']) || isset($_POST['UPDATE_ITEM'])) 
155 {
156
157         if (can_process()) 
158         {
159
160                 if ($selected_id == -1) 
161                 {
162
163                         $id = add_dimension($_POST['ref'], $_POST['name'], $_POST['type_'], $_POST['date_'], $_POST['due_date'], $_POST['memo_']);
164
165                         meta_forward($_SERVER['PHP_SELF'], "AddedID=$id");
166                 } 
167                 else 
168                 {
169
170                         update_dimension($selected_id, $_POST['name'], $_POST['type_'], $_POST['date_'], $_POST['due_date'], $_POST['memo_']);
171
172                         meta_forward($_SERVER['PHP_SELF'], "UpdatedID=$selected_id");
173                 }
174         }
175 }
176
177 //--------------------------------------------------------------------------------------
178
179 if (isset($_POST['delete'])) 
180 {
181
182         $cancel_delete = false;
183
184         // can't delete it there are productions or issues
185         if (dimension_has_payments($selected_id) || dimension_has_deposits($selected_id))
186         {
187                 display_error(_("This dimension cannot be deleted because it has already been processed."));
188                 set_focus('ref');
189                 $cancel_delete = true;
190         }
191
192         if ($cancel_delete == false) 
193         { //ie not cancelled the delete as a result of above tests
194
195                 // delete
196                 delete_dimension($selected_id);
197                 meta_forward($_SERVER['PHP_SELF'], "DeletedID=$selected_id");
198         }
199 }
200
201 //-------------------------------------------------------------------------------------
202
203 if (isset($_POST['close'])) 
204 {
205
206         // update the closed flag
207         close_dimension($selected_id);
208         meta_forward($_SERVER['PHP_SELF'], "ClosedID=$selected_id");
209 }
210
211 if (isset($_POST['reopen'])) 
212 {
213
214         // update the closed flag
215         reopen_dimension($selected_id);
216         meta_forward($_SERVER['PHP_SELF'], "ReopenedID=$selected_id");
217 }
218 //-------------------------------------------------------------------------------------
219
220 start_form();
221
222 start_table($table_style2);
223
224 if ($selected_id != -1)
225 {
226         $myrow = get_dimension($selected_id);
227
228         if (strlen($myrow[0]) == 0) 
229         {
230                 display_error(_("The dimension sent is not valid."));
231                 display_footer_exit();
232         }
233
234         // if it's a closed dimension can't edit it
235         //if ($myrow["closed"] == 1) 
236         //{
237         //      display_error(_("This dimension is closed and cannot be edited."));
238         //      display_footer_exit();
239         //}
240
241         $_POST['ref'] = $myrow["reference"];
242         $_POST['closed'] = $myrow["closed"];
243         $_POST['name'] = $myrow["name"];
244         $_POST['type_'] = $myrow["type_"];
245         $_POST['date_'] = sql2date($myrow["date_"]);
246         $_POST['due_date'] = sql2date($myrow["due_date"]);
247         $_POST['memo_'] = get_comments_string(systypes::dimension(), $selected_id);
248
249         hidden('ref', $_POST['ref']);
250
251         label_row(_("Dimension Reference:"), $_POST['ref']);
252
253         hidden('selected_id', $selected_id);
254
255 else 
256 {
257         ref_row(_("Dimension Reference:"), 'ref', '', references::get_next(systypes::dimension()));
258 }
259
260 text_row_ex(_("Name") . ":", 'name', 50, 75);
261
262 $dim = get_company_pref('use_dimension');
263
264 number_list_row(_("Type"), 'type_', null, 1, $dim);
265
266 date_row(_("Start Date") . ":", 'date_');
267
268 date_row(_("Date Required By") . ":", 'due_date', '', null, sys_prefs::default_dimension_required_by());
269
270 textarea_row(_("Memo:"), 'memo_', null, 40, 5);
271
272 end_table(1);
273
274 if (isset($_POST['closed']) && $_POST['closed'] == 1)
275         display_note(_("This Dimension is closed."), 0, 0, "class='currentfg'");
276
277 if ($selected_id != -1) 
278 {
279         echo "<br>";
280         submit_center_first('UPDATE_ITEM', _("Update"), _('Save changes to dimension'), 'default');
281         if ($_POST['closed'] == 1)
282                 submit('reopen', _("Re-open This Dimension"), true, _('Mark this dimension as re-opened'), true);
283         else    
284                 submit('close', _("Close This Dimension"), true, _('Mark this dimension as closed'), true);
285         submit_center_last('delete', _("Delete This Dimension"), _('Delete unused dimension'), true);
286 }
287 else
288 {
289         submit_center('ADD_ITEM', _("Add"), true, '', 'default');
290 }
291 end_form();
292
293 //--------------------------------------------------------------------------------------------
294
295 end_page();
296
297 ?>