X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fincludes%2Fdb%2Fgl_db_accounts.inc;h=25bc84fce7e6b058e500eb450c2d97c1d0c2cd57;hb=9451db1760036985de791ba24c442801e37f37de;hp=ce11a325607e6bfb2807ec86cc991f371e714de0;hpb=1571869d54be48452fdbe08f25130972ff0a7b5a;p=fa-stable.git diff --git a/gl/includes/db/gl_db_accounts.inc b/gl/includes/db/gl_db_accounts.inc index ce11a325..25bc84fc 100644 --- a/gl/includes/db/gl_db_accounts.inc +++ b/gl/includes/db/gl_db_accounts.inc @@ -206,6 +206,18 @@ function is_subledger_account($account) return $myrow[0]; } +function get_subaccount_data($code_id, $person_id) +{ + $sql = "SELECT debtor_ref as name, branch_code as id + FROM ".TB_PREF."cust_branch branch LEFT JOIN ".TB_PREF."debtors_master d ON branch.debtor_no = d.debtor_no + WHERE branch.receivables_account=".db_escape($code_id)." AND d.debtor_no=".db_escape($person_id) + ." UNION SELECT supp_ref as name, '' as id FROM ".TB_PREF."suppliers supp + WHERE supplier_id=".db_escape($person_id)." AND payable_account=".db_escape($code_id); + $result = db_query($sql, 'cannot retrieve counterparty name'); + + return db_fetch($result); +} + function get_subaccount_name($code_id, $person_id) { $sql = "SELECT debtor_ref as ref FROM ".TB_PREF."cust_branch branch LEFT JOIN ".TB_PREF."debtors_master d ON branch.debtor_no = d.debtor_no @@ -227,4 +239,22 @@ function gl_account_in_bank_accounts($acc) $myrow = db_fetch_row($result); return ($myrow[0] > 0); } -?> \ No newline at end of file + +//---------------------------------------------------------------------------------- +// Check if given account is used by any bank_account. +// Returns id of first bank_account using account_code, null otherwise. +// +// Keep in mind that direct posting to bank account is depreciated +// because we have no way to select right bank account if +// there is more than one using given gl account. +// +function is_bank_account($account_code) +{ + $sql= "SELECT id FROM ".TB_PREF."bank_accounts WHERE account_code=".db_escape($account_code); + $result = db_query($sql, "checking account is bank account"); + if (db_num_rows($result) > 0) { + $acct = db_fetch($result); + return $acct['id']; + } else + return false; +}