2e22d692f9fa072998f81b83fc075df4475ec723
[fa-stable.git] / inventory / includes / inventory_db.inc
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 include_once($path_to_root . "/includes/date_functions.inc");
13 include_once($path_to_root . "/includes/banking.inc");
14 include_once($path_to_root . "/includes/manufacturing.inc");
15
16 include_once($path_to_root . "/inventory/includes/db/items_category_db.inc");
17 include_once($path_to_root . "/inventory/includes/db/items_trans_db.inc");
18 include_once($path_to_root . "/inventory/includes/db/items_prices_db.inc");
19 include_once($path_to_root . "/inventory/includes/db/items_codes_db.inc");
20 include_once($path_to_root . "/inventory/includes/db/items_db.inc");
21 include_once($path_to_root . "/inventory/includes/db/items_locations_db.inc");
22 include_once($path_to_root . "/inventory/includes/db/movement_types_db.inc");
23 include_once($path_to_root . "/inventory/includes/db/items_adjust_db.inc");
24 include_once($path_to_root . "/inventory/includes/db/items_transfer_db.inc");
25 include_once($path_to_root . "/inventory/includes/db/items_units_db.inc");
26
27 ?>