Merging version 2.1 RC to main trunk.
[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 = 3;
13 $path_to_root="../..";
14 include($path_to_root . "/includes/session.inc");
15
16 page(_("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         $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_moves 
60                 WHERE type=" . systypes::inventory_adjustment(). " AND person_id=$selected_id";
61         $result = db_query($sql, "could not query stock moves");
62         $myrow = db_fetch_row($result);
63         if ($myrow[0] > 0) 
64         {
65                 display_error(_("Cannot delete this inventory movement type because item transactions have been created referring to it."));
66                 return false;
67         }
68         
69         return true;
70 }
71
72
73 //-----------------------------------------------------------------------------------
74
75 if ($Mode == 'Delete')
76 {
77         if (can_delete($selected_id))
78         {
79                 delete_movement_type($selected_id);
80                 display_notification(_('Selected movement type has been deleted'));
81         }
82         $Mode = 'RESET';
83 }
84
85 if ($Mode == 'RESET')
86 {
87         $selected_id = -1;
88         unset($_POST);
89 }
90 //-----------------------------------------------------------------------------------
91
92 $result = get_all_movement_type();
93
94 start_form();
95 start_table("$table_style width=30%");
96
97 $th = array(_("Description"), "", "");
98 table_header($th);
99 $k = 0;
100 while ($myrow = db_fetch($result)) 
101 {
102         
103         alt_table_row_color($k);        
104
105         label_cell($myrow["name"]);
106         edit_button_cell("Edit".$myrow['id'], _("Edit"));
107         delete_button_cell("Delete".$myrow['id'], _("Delete"));
108         end_row();
109 }
110
111 end_table();
112 end_form();
113 echo '<br>';
114
115 //-----------------------------------------------------------------------------------
116
117 start_form();
118
119 start_table($table_style2);
120
121 if ($selected_id != -1) 
122 {
123         if ($Mode == 'Edit') {
124                 //editing an existing status code
125
126                 $myrow = get_movement_type($selected_id);
127
128                 $_POST['name']  = $myrow["name"];
129         }
130         hidden('selected_id', $selected_id);
131
132
133 text_row(_("Description:"), 'name', null, 50, 50);
134
135 end_table(1);
136
137 submit_add_or_update_center($selected_id == -1, '', true);
138
139 end_form();
140
141 //------------------------------------------------------------------------------------
142
143 end_page();
144
145 ?>