Skip to content

Commit

Permalink
Käytetään jo olemassa olevaa muistutusinfraa
Browse files Browse the repository at this point in the history
  • Loading branch information
tiere committed Aug 6, 2015
1 parent 9318254 commit 651b3bd
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions hyvaksyttavia_laskuja_cron.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,38 +28,4 @@
$yhtiorow = hae_yhtion_parametrit($yhtio);
$kukarow = hae_kukarow('admin', $yhtiorow['yhtio']);

$query = "SELECT
eposti,
count(*) AS hyvaksyttavia
FROM lasku
JOIN kuka
ON (kuka.kuka = lasku.hyvaksyja_nyt
AND kuka.yhtio = lasku.yhtio)
WHERE lasku.yhtio = '{$kukarow["yhtio"]}'
AND tila = 'H'
AND alatila != 'H'
AND hyvaksyja_nyt != ''
GROUP BY lasku.hyvaksyja_nyt";

$result = pupe_query($query);

while ($row = mysql_fetch_assoc($result)) {
$sana = (int) $row["hyvaksyttavia"] > 1 ? "laskua" : "lasku";

$body = <<<TEXT
Hei,
Sinulla on {$row["hyvaksyttavia"]} {$sana} hyväksyttävänä.
TEXT;

$email = $row["eposti"];

$email_params = array(
"to" => $email,
"cc" => "",
"subject" => "Hyväksyttäviä laskuja",
"body" => $body
);

pupesoft_sahkoposti($email_params);
}
require "lahetamuistutus.php";

0 comments on commit 651b3bd

Please sign in to comment.