Commit 0f8248de61743496f34cf02c42514133c64e1f9f
1 parent
21aff1b818
Exists in
master
and in
2 other branches
HACCP 에러 발생 기능 보완
- HACCP 에러 발생시 에러 타이틀 저장
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
app/gui/oven_control/ovenstatics.cpp
... | ... | @@ -8,6 +8,7 @@ |
8 | 8 | #include "errorpopupdlg.h" |
9 | 9 | #include "historylistwindow.h" |
10 | 10 | #include "servicepassinputdlg.h" |
11 | +#include "haccp.h" | |
11 | 12 | |
12 | 13 | OvenStatistics* OvenStatistics::p_singletonInstance=NULL; |
13 | 14 | |
... | ... | @@ -629,6 +630,7 @@ void OvenStatistics::processErrorItems(error_item *item, error_exe_type errtype, |
629 | 630 | } |
630 | 631 | |
631 | 632 | emit onErrorFired(erridx); |
633 | + HACCP::error(MsgTitle); | |
632 | 634 | |
633 | 635 | if(errtype>=error_type_chkclrstopcmd){ |
634 | 636 | qDebug() << "exec killchild"; | ... | ... |