X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fdb%2Fcompany_db.inc;h=b39884548a193016e2efeae2e486969c1d83f99b;hb=380ae03e2df9602d07d156ae93b87cbe59b01b3a;hp=cf20d52b8b00a65b96120d315417b5846916f8fe;hpb=4f89441866b40d759f43327d753b4dff31f3f02a;p=fa-stable.git diff --git a/admin/db/company_db.inc b/admin/db/company_db.inc index cf20d52b..b3988454 100644 --- a/admin/db/company_db.inc +++ b/admin/db/company_db.inc @@ -149,15 +149,36 @@ function get_payment_terms_all($show_inactive) if (!$show_inactive) $sql .= " WHERE !inactive"; return db_query($sql,"could not get payment terms"); } - -function key_in_foreign_table($id, $table, $key, $escaped=false) +/* + Return number of records in tables, where some foreign key $id is used. + $id - searched key value + $tables - array of table names (without prefix); when table name is used as a key, then + value is name of foreign key field. For numeric keys $stdkey field name is used. + $stdkey - standard name of foreign key. +*/ +function key_in_foreign_table($id, $tables, $stdkey, $escaped=false) { if (!$escaped) $id = db_escape($id); - $sql= "SELECT COUNT(*) FROM ".TB_PREF."$table WHERE $key = $id"; - $result = db_query($sql,"check $table relations failed"); - $myrow = db_fetch_row($result); - return ($myrow[0] > 0); + + if (!is_array($tables)) + $tables = array($tables); + + $sqls = array(); + foreach ($tables as $tbl => $key) { + if (is_numeric($tbl)) { + $tbl = $key; + $key = $stdkey; + } + $sqls[] = "(SELECT COUNT(*) as cnt FROM ".TB_PREF."$tbl WHERE $key=$id)\n"; + } + + $sql = "SELECT sum(cnt) FROM (". implode(' UNION ', $sqls).") as counts"; + + $result = db_query($sql, "check relations for ".implode(',',$tables)." failed"); + $count = db_fetch($result); + + return $count[0]; } ?> \ No newline at end of file