adde currency type

This commit is contained in:
Bomrah Harry 2018-07-18 21:59:31 +08:00
parent 0f488141fa
commit c9da34e059
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ class RecruitmentsController < PseudoSessionController
end
end
if job.max_salary > job.min_salary
range = (job.min_salary * 1000).to_s + " ~ " + (job.max_salary * 1000).to_s + " / Month "
range = (job.min_salary * 1000).to_s + " ~ " + (job.max_salary * 1000).to_s + " #{job.currency_type} / Month "
elsif job.max_salary == job.min_salary
range = t("recruitment.not_available")
elsif job.max_salary < job.min_salary