Included Sales Pricing, Purchasing Prising, Cost update and Reorder Levels in tabs...
[fa-stable.git] / inventory / prices.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_SALESPRICE';
13 if (!@$_GET['popup'])
14         $path_to_root = "..";
15 else    
16         $path_to_root = "../..";
17
18 include_once($path_to_root . "/includes/session.inc");
19 include_once($path_to_root . "/sales/includes/sales_db.inc");
20 include_once($path_to_root . "/sales/includes/db/sales_types_db.inc");
21 include_once($path_to_root . "/includes/ui.inc");
22 include_once($path_to_root . "/includes/data_checks.inc");
23 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
24
25 if (!@$_GET['popup'])
26         page(_($help_context = "Inventory Item Sales prices"));
27
28 //---------------------------------------------------------------------------------------------------
29
30 check_db_has_stock_items(_("There are no items defined in the system."));
31
32 check_db_has_sales_types(_("There are no sales types in the system. Please set up sales types befor entering pricing."));
33
34 simple_page_mode(true);
35 //---------------------------------------------------------------------------------------------------
36 $input_error = 0;
37
38 if (isset($_GET['stock_id']))
39 {
40         $_POST['stock_id'] = $_GET['stock_id'];
41 }
42 if (isset($_GET['Item']))
43 {
44         $_POST['stock_id'] = $_GET['Item'];
45 }
46
47 if (!isset($_POST['curr_abrev']))
48 {
49         $_POST['curr_abrev'] = get_company_currency();
50 }
51
52 //---------------------------------------------------------------------------------------------------
53
54 $action = $_SERVER['PHP_SELF'];
55 if (@$_GET['popup'])
56         $action .= "?stock_id=".get_post('stock_id');
57 start_form(false, false, $action);
58
59 if (!isset($_POST['stock_id']))
60         $_POST['stock_id'] = get_global_stock_item();
61
62 if (!@$_GET['popup'])
63 {
64         echo "<center>" . _("Item:"). "&nbsp;";
65         echo sales_items_list('stock_id', $_POST['stock_id'], false, true, '', array('editable' => false));
66         echo "<hr></center>";
67 }
68 else
69         br(2);
70 set_global_stock_item($_POST['stock_id']);
71
72 //----------------------------------------------------------------------------------------------------
73
74 if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') 
75 {
76
77         if (!check_num('price', 0))
78         {
79                 $input_error = 1;
80                 display_error( _("The price entered must be numeric."));
81                 set_focus('price');
82         }
83         elseif ($Mode == 'ADD_ITEM' && get_stock_price_type_currency($_POST['stock_id'], $_POST['sales_type_id'], $_POST['curr_abrev']))
84         {
85         $input_error = 1;
86         display_error( _("The sales pricing for this item, sales type and currency has already been added."));
87                 set_focus('supplier_id');
88         }
89
90         if ($input_error != 1)
91         {
92
93         if ($selected_id != -1) 
94                 {
95                         //editing an existing price
96                         update_item_price($selected_id, $_POST['sales_type_id'],
97                         $_POST['curr_abrev'], input_num('price'));
98
99                         $msg = _("This price has been updated.");
100                 }
101                 else
102                 {
103
104                         add_item_price($_POST['stock_id'], $_POST['sales_type_id'],
105                             $_POST['curr_abrev'], input_num('price'));
106
107                         $msg = _("The new price has been added.");
108                 }
109                 display_notification($msg);
110                 $Mode = 'RESET';
111         }
112
113 }
114
115 //------------------------------------------------------------------------------------------------------
116
117 if ($Mode == 'Delete')
118 {
119         //the link to delete a selected record was clicked
120         delete_item_price($selected_id);
121         display_notification(_("The selected price has been deleted."));
122         $Mode = 'RESET';
123 }
124
125 if ($Mode == 'RESET')
126 {
127         $selected_id = -1;
128 }
129
130 if (list_updated('stock_id')) {
131         $Ajax->activate('price_table');
132         $Ajax->activate('price_details');
133 }
134 if (list_updated('stock_id') || isset($_POST['_curr_abrev_update']) || isset($_POST['_sales_type_id_update'])) {
135         // after change of stock, currency or salestype selector
136         // display default calculated price for new settings. 
137         // If we have this price already in db it is overwritten later.
138         unset($_POST['price']);
139         $Ajax->activate('price_details');
140 }
141
142 //---------------------------------------------------------------------------------------------------
143
144 $prices_list = get_prices($_POST['stock_id']);
145
146 div_start('price_table');
147 start_table(TABLESTYLE, "width=30%");
148
149 $th = array(_("Currency"), _("Sales Type"), _("Price"), "", "");
150 table_header($th);
151 $k = 0; //row colour counter
152 $calculated = false;
153 while ($myrow = db_fetch($prices_list))
154 {
155
156         alt_table_row_color($k);
157
158         label_cell($myrow["curr_abrev"]);
159     label_cell($myrow["sales_type"]);
160     amount_cell($myrow["price"]);
161         edit_button_cell("Edit".$myrow['id'], _("Edit"));
162         delete_button_cell("Delete".$myrow['id'], _("Delete"));
163     end_row();
164
165 }
166 end_table();
167 if (db_num_rows($prices_list) == 0)
168 {
169         if (get_company_pref('add_pct') != -1)
170                 $calculated = true;
171         display_note(_("There are no prices set up for this part."), 1);
172 }
173 div_end();
174 //------------------------------------------------------------------------------------------------
175
176 echo "<br>";
177
178 if ($Mode == 'Edit')
179 {
180         $myrow = get_stock_price($selected_id);
181         $_POST['curr_abrev'] = $myrow["curr_abrev"];
182         $_POST['sales_type_id'] = $myrow["sales_type_id"];
183         $_POST['price'] = price_format($myrow["price"]);
184 }
185
186 hidden('selected_id', $selected_id);
187 if (@$_GET['popup'])
188         hidden('_tabs_sel', get_post('_tabs_sel'));
189
190 div_start('price_details');
191 start_table(TABLESTYLE2);
192
193 currencies_list_row(_("Currency:"), 'curr_abrev', null, true);
194
195 sales_types_list_row(_("Sales Type:"), 'sales_type_id', null, true);
196
197 if (!isset($_POST['price'])) {
198         $_POST['price'] = price_format(get_kit_price(get_post('stock_id'), 
199                 get_post('curr_abrev'), get_post('sales_type_id')));
200 }
201
202 $kit = get_item_code_dflts($_POST['stock_id']);
203 small_amount_row(_("Price:"), 'price', null, '', _('per') .' '.$kit["units"]);
204
205 end_table(1);
206 if ($calculated)
207         display_note(_("The price is calculated."), 0, 1);
208
209 submit_add_or_update_center($selected_id == -1, '', 'both');
210 div_end();
211
212 end_form();
213 if (!@$_GET['popup'])
214         end_page(@$_GET['popup'], false, false);
215 ?>