Skip to content

Commit

Permalink
Merge pull request #3558 from devlab-oy/hanna/valmistustarkistus
Browse files Browse the repository at this point in the history
Valmista tuotteita: reseptien tarkistus
  • Loading branch information
juppe authored Feb 14, 2017
2 parents 524b430 + b6ba186 commit 1edf37b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tilauskasittely/tarkistarivi.inc
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ if (!in_array($row["var"], array('', 'P', 'J', 'H', 'S', 'T', 'U', 'V', 'A', 'B'
$tilausok++;
}

if ($row["tyyppi"] == 'V' and $row["perheid"] == 0 and $toim == "VALMISTAVARASTOON") {
if (in_array($row["tyyppi"], array('V', 'W')) and $row["perheid"] == 0 and $toim == "VALMISTAVARASTOON") {
$varaosavirhe .= t("VIRHE: Tuote ei kuulu mihinkään reseptiin!")."<br>";
$riviok++;
$tilausok++;
Expand Down
6 changes: 5 additions & 1 deletion tilauskasittely/tilaus_myynti.php
Original file line number Diff line number Diff line change
Expand Up @@ -10889,7 +10889,11 @@ function ostotilaus_verify(){
</form> ";
}

if (($muokkauslukko == "" or $myyntikielto != '') and ($toim != "PROJEKTI" or ($toim == "PROJEKTI" and $projektilask == 0)) and $kukarow["mitatoi_tilauksia"] == "" and ($row["laskutettuaika"] == "0000-00-00" or !isset($row["laskutettuaika"]))) {
$ei_laskutettu = ($row["laskutettuaika"] == "0000-00-00" or !isset($row["laskutettuaika"]));
$ei_valmistettu = TRUE;
if ($laskurow["tila"] == "V" and $row["toimitettuaika"] != "0000-00-00" and isset($row["toimitettuaika"])) $ei_valmistettu = FALSE;

if (($muokkauslukko == "" or $myyntikielto != '') and ($toim != "PROJEKTI" or ($toim == "PROJEKTI" and $projektilask == 0)) and $kukarow["mitatoi_tilauksia"] == "" and $ei_laskutettu and $ei_valmistettu) {
echo "<SCRIPT LANGUAGE=JAVASCRIPT>
function verify(){
msg = '".t("Haluatko todella poistaa tämän tietueen?")."';
Expand Down

0 comments on commit 1edf37b

Please sign in to comment.