mirror of
https://github.com/openvk/openvk
synced 2024-12-25 01:51:03 +03:00
Лавка ОВК Тестерс: Начало
Теперь модератор может начислять голоса при изменении статуса/приоритета отчета
This commit is contained in:
parent
1edaa06710
commit
08859fadd8
2 changed files with 22 additions and 0 deletions
|
@ -70,10 +70,15 @@ final class BugtrackerPresenter extends OpenVKPresenter
|
||||||
|
|
||||||
$status = $this->postParam("status");
|
$status = $this->postParam("status");
|
||||||
$comment = $this->postParam("text");
|
$comment = $this->postParam("text");
|
||||||
|
$points = $this->postParam("points-count");
|
||||||
$list = ["Открыт", "На рассмотрении", "В работе", "Исправлен", "Закрыт", "Требует корректировки", "Заблокирован", "Отклонён"];
|
$list = ["Открыт", "На рассмотрении", "В работе", "Исправлен", "Закрыт", "Требует корректировки", "Заблокирован", "Отклонён"];
|
||||||
|
|
||||||
$report = (new BugtrackerReports)->get($report_id);
|
$report = (new BugtrackerReports)->get($report_id);
|
||||||
$report->setStatus($status);
|
$report->setStatus($status);
|
||||||
|
|
||||||
|
if ($points)
|
||||||
|
DB::i()->getContext()->query("UPDATE `profiles` SET `coins` = `coins` + " . $points . " WHERE `id` = " . $report->getReporter()->getId());
|
||||||
|
|
||||||
$report->save();
|
$report->save();
|
||||||
|
|
||||||
$this->createComment($report, $comment, "Новый статус отчёта — $list[$status]", TRUE);
|
$this->createComment($report, $comment, "Новый статус отчёта — $list[$status]", TRUE);
|
||||||
|
@ -87,10 +92,15 @@ final class BugtrackerPresenter extends OpenVKPresenter
|
||||||
|
|
||||||
$priority = $this->postParam("priority");
|
$priority = $this->postParam("priority");
|
||||||
$comment = $this->postParam("text");
|
$comment = $this->postParam("text");
|
||||||
|
$points = $this->postParam("points-count");
|
||||||
$list = ["Пожелание", "Низкий", "Средний", "Высокий", "Критический", "Уязвимость"];
|
$list = ["Пожелание", "Низкий", "Средний", "Высокий", "Критический", "Уязвимость"];
|
||||||
|
|
||||||
$report = (new BugtrackerReports)->get($report_id);
|
$report = (new BugtrackerReports)->get($report_id);
|
||||||
$report->setPriority($priority);
|
$report->setPriority($priority);
|
||||||
|
|
||||||
|
if ($points)
|
||||||
|
DB::i()->getContext()->query("UPDATE `profiles` SET `coins` = `coins` + " . $points . " WHERE `id` = " . $report->getReporter()->getId());
|
||||||
|
|
||||||
$report->save();
|
$report->save();
|
||||||
|
|
||||||
$this->createComment($report, $comment, "Новый приоритет отчёта — $list[$priority]", TRUE);
|
$this->createComment($report, $comment, "Новый приоритет отчёта — $list[$priority]", TRUE);
|
||||||
|
|
|
@ -481,6 +481,12 @@ function showBtStatusChangeDialog(report, hash) {
|
||||||
<br>
|
<br>
|
||||||
<h4>Вы можете прокомментировать изменение статуса</h4>
|
<h4>Вы можете прокомментировать изменение статуса</h4>
|
||||||
<textarea name="text" style="width: 100%;resize: vertical;"></textarea>
|
<textarea name="text" style="width: 100%;resize: vertical;"></textarea>
|
||||||
|
<br><br>
|
||||||
|
<div style="display: flex;">
|
||||||
|
Начислить
|
||||||
|
<input style="width: 45px; height: 9px;" type="number" name="points-count" value="0">
|
||||||
|
голосов
|
||||||
|
</div>
|
||||||
<input type="hidden" name="hash" value="${hash}" />
|
<input type="hidden" name="hash" value="${hash}" />
|
||||||
</form>
|
</form>
|
||||||
`, ["Сохранить", tr("cancel")], [
|
`, ["Сохранить", tr("cancel")], [
|
||||||
|
@ -524,6 +530,12 @@ function showBtPriorityChangeDialog(report, hash) {
|
||||||
<br>
|
<br>
|
||||||
<h4>Вы можете прокомментировать изменение приоритета</h4>
|
<h4>Вы можете прокомментировать изменение приоритета</h4>
|
||||||
<textarea name="text" style="width: 100%;resize: vertical;"></textarea>
|
<textarea name="text" style="width: 100%;resize: vertical;"></textarea>
|
||||||
|
<br><br>
|
||||||
|
<div style="display: flex;">
|
||||||
|
Начислить
|
||||||
|
<input style="width: 45px; height: 9px;" type="number" name="points-count" value="0">
|
||||||
|
голосов
|
||||||
|
</div>
|
||||||
<input type="hidden" name="hash" value="${hash}" />
|
<input type="hidden" name="hash" value="${hash}" />
|
||||||
</form>
|
</form>
|
||||||
`, ["Сохранить", tr("cancel")], [
|
`, ["Сохранить", tr("cancel")], [
|
||||||
|
|
Loading…
Reference in a new issue