Reduced delay when ECB rates page is not avaialable.
[fa-stable.git] / sales / includes / db / branches_db.inc
index 2c4eb5228a32840fa70597394c6ea10296ec3d09..ae63737302d9ec91722c8fed962c8bd82abb23ca 100644 (file)
@@ -1,6 +1,14 @@
 <?php
-
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU Affero General Public License,
+       AGPL, 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/agpl-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