281885a8f161456c56f07ff9962a6d4d1608e3b0
[fa-stable.git] / includes / manufacturing.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root . "/includes/db/manufacturing_db.inc");
13
14
15 function is_manufactured($mb_flag)
16 {
17         return ($mb_flag == 'M');
18 }
19
20 function is_purchased($mb_flag)
21 {
22         return ($mb_flag == 'B');
23 }
24
25 function is_service($mb_flag)
26 {
27         return ($mb_flag == 'D');
28 }
29
30 function has_stock_holding($mb_flag)
31 {
32         return is_purchased($mb_flag) || is_manufactured($mb_flag);
33 }
34
35 //--------------------------------------------------------------------------------------
36
37 ?>