e7086f947432915989c1a32f1f68631f13750c3a
[fa-stable.git] / inventory / manage / movement_types.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_INVENTORYMOVETYPE';
13 $path_to_root = "../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_($help_context = "Inventory Movement Types"));
17
18 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
19
20 include_once($path_to_root . "/includes/ui.inc");
21
22 simple_page_mode(true);
23 //-----------------------------------------------------------------------------------
24
25 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') 
26 {
27
28         //initialise no input errors assumed initially before we test
29         $input_error = 0;
30
31         if (strlen($_POST['name']) == 0) 
32         {
33                 $input_error = 1;
34                 display_error(_("The inventory movement type name cannot be empty."));
35                 set_focus('name');
36         }
37
38         if ($input_error != 1) 
39         {
40         if ($selected_id != -1) 
41         {
42                 update_movement_type($selected_id, $_POST['name']);
43                         display_notification(_('Selected movement type has been updated'));
44         } 
45         else 
46         {
47                 add_movement_type($_POST['name']);
48                         display_notification(_('New movement type has been added'));
49         }
50         
51                 $Mode = 'RESET';
52         }
53
54
55 //-----------------------------------------------------------------------------------
56
57 function can_delete($selected_id)
58 {
59         if (movement_types_in_stock_moves($selected_id))
60         {
61                 display_error(_("Cannot delete this inventory movement type because item transactions have been created referring to it."));
62                 return false;
63         }
64         
65         return true;
66 }
67
68
69 //-----------------------------------------------------------------------------------
70
71 if ($Mode == 'Delete')
72 {
73         if (can_delete($selected_id))
74         {
75                 delete_movement_type($selected_id);
76                 display_notification(_('Selected movement type has been deleted'));
77         }
78         $Mode = 'RESET';
79 }
80
81 if ($Mode == 'RESET')
82 {
83         $selected_id = -1;
84         $sav = get_post('show_inactive');
85         unset($_POST);
86         $_POST['show_inactive'] = $sav;
87 }
88 //-----------------------------------------------------------------------------------
89
90 $result = get_all_movement_type(check_value('show_inactive'));
91
92 start_form();
93 start_table(TABLESTYLE, "width=30%");
94
95 $th = array(_("Description"), "", "");
96 inactive_control_column($th);
97 table_header($th);
98 $k = 0;
99 while ($myrow = db_fetch($result)) 
100 {
101         
102         alt_table_row_color($k);        
103
104         label_cell($myrow["name"]);
105         inactive_control_cell($myrow["id"], $myrow["inactive"], 'movement_types', 'id');
106         edit_button_cell("Edit".$myrow['id'], _("Edit"));
107         delete_button_cell("Delete".$myrow['id'], _("Delete"));
108         end_row();
109 }
110 inactive_control_row($th);
111 end_table(1);
112
113 //-----------------------------------------------------------------------------------
114
115 start_table(TABLESTYLE2);
116
117 if ($selected_id != -1) 
118 {
119         if ($Mode == 'Edit') {
120                 //editing an existing status code
121
122                 $myrow = get_movement_type($selected_id);
123
124                 $_POST['name']  = $myrow["name"];
125         }
126         hidden('selected_id', $selected_id);
127
128
129 text_row(_("Description:"), 'name', null, 50, 50);
130
131 end_table(1);
132
133 submit_add_or_update_center($selected_id == -1, '', 'both');
134
135 end_form();
136
137 //------------------------------------------------------------------------------------
138
139 end_page();
140
141 ?>