Commit 659f92ed3a2b7eb2edbedc3577cfb7d4dd53a1b4

Authored by 김태훈
1 parent b9fbf85e19
Exists in master and in 2 other branches fhd, fhd-demo

HACCP 오류 출력 변경

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
app/gui/oven_control/haccp.cpp
@@ -457,7 +457,10 @@ void stampEnd() @@ -457,7 +457,10 @@ void stampEnd()
457 457
458 void stampError(QString error) 458 void stampError(QString error)
459 { 459 {
460 - stamp(QString("END (%1)").arg(error)); 460 + if (data.type == Engineering)
  461 + stamp(QString("ERROR (%1)").arg(error));
  462 + else
  463 + stamp(QString("END (%1)").arg(error));
461 } 464 }
462 465
463 void saveData() 466 void saveData()