Commit 8049fb1c68eebb7c3836d0c34e5e3b7826718cb4
1 parent
62ee39ee6b
Exists in
fhd
PSSCO 모델 추가 및 PSSCO 모델의 세척 문구 변경
Showing
2 changed files
with
40 additions
and
0 deletions
Show diff stats
app/gui/oven_control/define.h
app/gui/oven_control/washwindow.cpp
... | ... | @@ -215,6 +215,7 @@ void WashWindow::updateView() |
215 | 215 | ui->washStepGauge->setValue(control.clean_step); |
216 | 216 | ui->washStepCountLabel->setText(QString().sprintf("%d/%d", control.clean_step, control.clean_total)); |
217 | 217 | |
218 | +#if MODEL_GRADE != 2 | |
218 | 219 | switch (control.clean_step_type) |
219 | 220 | { |
220 | 221 | case 1: |
... | ... | @@ -251,6 +252,44 @@ void WashWindow::updateView() |
251 | 252 | ui->washStepTypeLabel->setText(tr("하부 탱크 세척수 만들기 진행 중입니다.")); |
252 | 253 | break; |
253 | 254 | } |
255 | +#else | |
256 | + switch (control.clean_step_type) | |
257 | + { | |
258 | + case 1: | |
259 | + ui->washStepTypeLabel->setText(tr("내부 헹굼 진행 중입니다.")); | |
260 | + break; | |
261 | + case 2: | |
262 | + ui->washStepTypeLabel->setText(tr("내부 팬 세척 진행 중입니다.")); | |
263 | + break; | |
264 | + case 3: | |
265 | + ui->washStepTypeLabel->setText(tr("내부 스팀 불림 진행 중입니다.")); | |
266 | + break; | |
267 | + case 4: | |
268 | + ui->washStepTypeLabel->setText(tr("내부 강 세척 진행 중입니다.")); | |
269 | + break; | |
270 | + case 5: | |
271 | + ui->washStepTypeLabel->setText(tr("내부 상부 세척 진행 중입니다.")); | |
272 | + break; | |
273 | + case 6: | |
274 | + ui->washStepTypeLabel->setText(tr("세제 세척 헹굼 중입니다.")); | |
275 | + break; | |
276 | + case 7: | |
277 | + ui->washStepTypeLabel->setText(tr("세척 헹굼수 만드는 중입니다.")); | |
278 | + break; | |
279 | + case 8: | |
280 | + ui->washStepTypeLabel->setText(tr("세척 건조 진행 중입니다.")); | |
281 | + break; | |
282 | + case 9: | |
283 | + ui->washStepTypeLabel->setText(tr("세제 투입 진행 중입니다.")); | |
284 | + break; | |
285 | + case 10: | |
286 | + ui->washStepTypeLabel->setText(tr("세척 진행 중입니다.")); | |
287 | + break; | |
288 | + case 11: | |
289 | + ui->washStepTypeLabel->setText(tr("세척 진행 중입니다.")); | |
290 | + break; | |
291 | + } | |
292 | +#endif | |
254 | 293 | } |
255 | 294 | |
256 | 295 | switch (state) | ... | ... |