diff --git a/inc/asiakastarkista.inc b/inc/asiakastarkista.inc index a878c33072..aedd7be3c0 100644 --- a/inc/asiakastarkista.inc +++ b/inc/asiakastarkista.inc @@ -61,6 +61,24 @@ if (!function_exists("asiakastarkista")) { if ($ytunnus == "") { $virhe[$i] = t("Y-tunnus puuttuu")."!"; } + elseif ($yhtiorow["myyntitilaus_saatavat"] == "Y") { + + $qry = "SELECT luottoraja + FROM asiakas + WHERE yhtio = '{$kukarow['yhtio']}' + AND ytunnus = '{$ytunnus}'"; + $res = pupe_query($qry); + + if (mysql_num_rows($res) > 0) { + $t['luottoraja'] = mysql_result($res,0); + } + + var_dump($t['luottoraja']); + } + } + + if (mysql_field_name($result, $i) == "luottoraja" and $yhtiorow["myyntitilaus_saatavat"] == "Y" and isset($t['luottoraja'])) { + $t[$i] = $t['luottoraja']; } if (mysql_field_name($result, $i) == "ytunnus" and $yhtiorow['asiakkaan_tarkenne'] == 'B') { diff --git a/kopioiasiakas.php b/kopioiasiakas.php index 048df602a8..fa3c57c927 100644 --- a/kopioiasiakas.php +++ b/kopioiasiakas.php @@ -85,22 +85,6 @@ require "inc/asiakasrivi.inc"; - if (mysql_field_name($result, $i) == "luottoraja" and $yhtiorow["myyntitilaus_saatavat"] == "Y") { - - $qry = "SELECT luottoraja - FROM asiakas - WHERE yhtio = '{$kukarow['yhtio']}' - AND ytunnus = '{$trow['ytunnus']}' - GROUP BY luottoraja"; - $res = pupe_query($qry); - - if (mysql_num_rows($res) > 1) { - $luottorajahuomautus = t(" Eri luottorajoja saman Y-tunnuksen alaisilla asiakkailla!"); - } - - $jatko = 1; - } - if (mysql_field_name($result, $i) == "muutospvm") { $tyyppi = 0; $jatko = 0; @@ -160,11 +144,6 @@ echo "$trow[$i]"; } - if ($luottorajahuomautus) { - echo "$luottorajahuomautus"; - unset($luottorajahuomautus); - } - echo ""; }