Commit 659f92ed3a2b7eb2edbedc3577cfb7d4dd53a1b4
1 parent
b9fbf85e19
Exists in
master
and in
2 other branches
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 | 457 | |
| 458 | 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 | 466 | void saveData() | ... | ... |