Skip to content

Commit

Permalink
luottorajakopiointi myös uusille
Browse files Browse the repository at this point in the history
  • Loading branch information
oskaripaakkanen committed Feb 24, 2015
1 parent e4aa07e commit 7447f3b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
18 changes: 18 additions & 0 deletions inc/asiakastarkista.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down
21 changes: 0 additions & 21 deletions kopioiasiakas.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -160,11 +144,6 @@
echo "$trow[$i]";
}

if ($luottorajahuomautus) {
echo "<font class='message'>$luottorajahuomautus</font>";
unset($luottorajahuomautus);
}

echo "</td>";
}

Expand Down

0 comments on commit 7447f3b

Please sign in to comment.