Merging version 2.1 RC to main trunk.
[fa-stable.git] / sales / includes / db / branches_db.inc
index 2c4eb5228a32840fa70597394c6ea10296ec3d09..72a965655746546c949e93bc489b75c9d73c5fbd 100644 (file)
@@ -1,6 +1,14 @@
 <?php
-
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 function get_branch($branch_id)
 {
        $sql = "SELECT ".TB_PREF."cust_branch.*,".TB_PREF."salesman.salesman_name 
@@ -34,4 +42,11 @@ function get_branch_name($branch_id)
        return $myrow[0];
 }
 
+function get_cust_branches_from_group($group_no)
+{
+       $sql = "SELECT branch_code, debtor_no FROM ".TB_PREF."cust_branch 
+               WHERE group_no = '$group_no'";
+
+       return db_query($sql,"could not retreive branches for group " . $group_no);
+}
 ?>
\ No newline at end of file