fix bug đồng bộ dữ liệu nhân viên

This commit is contained in:
2020-10-20 10:55:31 +07:00
parent ad30699a52
commit 018ca540d5
4 changed files with 25 additions and 9 deletions

View File

@@ -97,7 +97,7 @@ class AssignController extends Controller {
Yii::$app->response->format = "json";
return [
"schedule" => Schedule::findOne($post['schedule'])->name,
"doors" => implode(", ", $doors)
"doors" => implode("<br>", $doors)
];
}
}