Commit 8049fb1c68eebb7c3836d0c34e5e3b7826718cb4

Authored by 김태훈
1 parent 62ee39ee6b
Exists in fhd

PSSCO 모델 추가 및 PSSCO 모델의 세척 문구 변경

app/gui/oven_control/define.h
@@ -9,6 +9,7 @@ @@ -9,6 +9,7 @@
9 9
10 // 0 for normal 10 // 0 for normal
11 // 1 for premium 11 // 1 for premium
  12 +// 2 for PSSCO
12 #define MODEL_GRADE 1 13 #define MODEL_GRADE 1
13 14
14 #define ENABLE_WASH_RESUMING 0 15 #define ENABLE_WASH_RESUMING 0
app/gui/oven_control/washwindow.cpp
@@ -215,6 +215,7 @@ void WashWindow::updateView() @@ -215,6 +215,7 @@ void WashWindow::updateView()
215 ui->washStepGauge->setValue(control.clean_step); 215 ui->washStepGauge->setValue(control.clean_step);
216 ui->washStepCountLabel->setText(QString().sprintf("%d/%d", control.clean_step, control.clean_total)); 216 ui->washStepCountLabel->setText(QString().sprintf("%d/%d", control.clean_step, control.clean_total));
217 217
  218 +#if MODEL_GRADE != 2
218 switch (control.clean_step_type) 219 switch (control.clean_step_type)
219 { 220 {
220 case 1: 221 case 1:
@@ -251,6 +252,44 @@ void WashWindow::updateView() @@ -251,6 +252,44 @@ void WashWindow::updateView()
251 ui->washStepTypeLabel->setText(tr("하부 탱크 세척수 만들기 진행 중입니다.")); 252 ui->washStepTypeLabel->setText(tr("하부 탱크 세척수 만들기 진행 중입니다."));
252 break; 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 switch (state) 295 switch (state)